51 lines
No EOL
1.9 KiB
PHP
51 lines
No EOL
1.9 KiB
PHP
<?php
|
|
|
|
namespace Socialbox\Classes\StandardMethods\Core;
|
|
|
|
use Socialbox\Abstracts\Method;
|
|
use Socialbox\Enums\ReservedUsernames;
|
|
use Socialbox\Enums\StandardError;
|
|
use Socialbox\Exceptions\DatabaseOperationException;
|
|
use Socialbox\Exceptions\Standard\MissingRpcArgumentException;
|
|
use Socialbox\Exceptions\Standard\StandardRpcException;
|
|
use Socialbox\Interfaces\SerializableInterface;
|
|
use Socialbox\Objects\ClientRequest;
|
|
use Socialbox\Objects\PeerAddress;
|
|
use Socialbox\Objects\RpcRequest;
|
|
use Socialbox\Socialbox;
|
|
|
|
class ResolvePeer extends Method
|
|
{
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public static function execute(ClientRequest $request, RpcRequest $rpcRequest): ?SerializableInterface
|
|
{
|
|
// Check if the required 'peer' parameter is set.
|
|
if(!$rpcRequest->containsParameter('peer'))
|
|
{
|
|
throw new MissingRpcArgumentException('peer');
|
|
}
|
|
|
|
// Parse the peer address
|
|
$peerAddress = PeerAddress::fromAddress((string)$rpcRequest->getParameter('peer'));
|
|
|
|
// Check if host is making the request & the identifier is not empty
|
|
try
|
|
{
|
|
$identifyAs = null;
|
|
if ($request->getPeer()->getUsername() === ReservedUsernames::HOST->value && $request->getIdentifyAs() !== null)
|
|
{
|
|
$identifyAs = $request->getIdentifyAs();
|
|
}
|
|
}
|
|
catch (DatabaseOperationException $e)
|
|
{
|
|
throw new StandardRpcException('Failed to retrieve peer information', StandardError::INTERNAL_SERVER_ERROR, $e);
|
|
}
|
|
|
|
// Resolve the peer using the server's peer resolver, this will resolve both internal peers and external peers
|
|
return $rpcRequest->produceResponse(Socialbox::resolvePeer($peerAddress, $identifyAs));
|
|
}
|
|
} |