44 lines
No EOL
1.5 KiB
PHP
44 lines
No EOL
1.5 KiB
PHP
<?php
|
|
|
|
namespace Socialbox\Classes\StandardMethods;
|
|
|
|
use Exception;
|
|
use Socialbox\Abstracts\Method;
|
|
use Socialbox\Enums\Flags\SessionFlags;
|
|
use Socialbox\Enums\StandardError;
|
|
use Socialbox\Exceptions\StandardException;
|
|
use Socialbox\Interfaces\SerializableInterface;
|
|
use Socialbox\Managers\SessionManager;
|
|
use Socialbox\Objects\ClientRequest;
|
|
use Socialbox\Objects\RpcRequest;
|
|
|
|
class Authenticate extends Method
|
|
{
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public static function execute(ClientRequest $request, RpcRequest $rpcRequest): ?SerializableInterface
|
|
{
|
|
try
|
|
{
|
|
if(!$request->getPeer()->isExternal())
|
|
{
|
|
return $rpcRequest->produceError(StandardError::FORBIDDEN, 'Only external peers can authenticate using this method');
|
|
}
|
|
|
|
if($request->getSession()->isAuthenticated())
|
|
{
|
|
return $rpcRequest->produceError(StandardError::FORBIDDEN, 'External host is already authenticated');
|
|
}
|
|
|
|
SessionManager::updateFlow($request->getSession(), [SessionFlags::AUTHENTICATION_REQUIRED]);
|
|
}
|
|
catch(Exception $e)
|
|
{
|
|
throw new StandardException('An error occurred while authenticating the peer', StandardError::INTERNAL_SERVER_ERROR, $e);
|
|
}
|
|
|
|
|
|
return $rpcRequest->produceResponse(true);
|
|
}
|
|
} |