76 lines
No EOL
2.8 KiB
PHP
76 lines
No EOL
2.8 KiB
PHP
<?php
|
|
|
|
namespace Socialbox\Classes\StandardMethods\Settings;
|
|
|
|
use Socialbox\Abstracts\Method;
|
|
use Socialbox\Enums\StandardError;
|
|
use Socialbox\Exceptions\CryptographyException;
|
|
use Socialbox\Exceptions\DatabaseOperationException;
|
|
use Socialbox\Exceptions\Standard\MissingRpcArgumentException;
|
|
use Socialbox\Exceptions\Standard\StandardRpcException;
|
|
use Socialbox\Interfaces\SerializableInterface;
|
|
use Socialbox\Managers\PasswordManager;
|
|
use Socialbox\Objects\ClientRequest;
|
|
use Socialbox\Objects\RpcRequest;
|
|
|
|
class SettingsUpdatePassword extends Method
|
|
{
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public static function execute(ClientRequest $request, RpcRequest $rpcRequest): ?SerializableInterface
|
|
{
|
|
if(!$rpcRequest->containsParameter('password'))
|
|
{
|
|
throw new MissingRpcArgumentException('password');
|
|
}
|
|
if(!$rpcRequest->containsParameter('existing_password'))
|
|
{
|
|
throw new MissingRpcArgumentException('existing_password');
|
|
}
|
|
|
|
try
|
|
{
|
|
if (!PasswordManager::usesPassword($request->getPeer()->getUuid()))
|
|
{
|
|
return $rpcRequest->produceResponse(false);
|
|
}
|
|
}
|
|
catch (DatabaseOperationException $e)
|
|
{
|
|
throw new StandardRpcException('Failed to check password due to an internal exception', StandardError::INTERNAL_SERVER_ERROR, $e);
|
|
}
|
|
|
|
try
|
|
{
|
|
if (!PasswordManager::verifyPassword($request->getPeer()->getUuid(), $rpcRequest->getParameter('existing_password')))
|
|
{
|
|
return $rpcRequest->produceResponse(false);
|
|
}
|
|
}
|
|
catch(CryptographyException $e)
|
|
{
|
|
throw new StandardRpcException($e->getMessage(), StandardError::CRYPTOGRAPHIC_ERROR, $e);
|
|
}
|
|
catch (DatabaseOperationException $e)
|
|
{
|
|
throw new StandardRpcException('Failed to verify existing password due to an internal exception', StandardError::INTERNAL_SERVER_ERROR, $e);
|
|
}
|
|
|
|
try
|
|
{
|
|
// Set the password
|
|
PasswordManager::updatePassword($request->getPeer(), (string)$rpcRequest->getParameter('password'));
|
|
}
|
|
catch(CryptographyException $e)
|
|
{
|
|
throw new StandardRpcException($e->getMessage(), StandardError::CRYPTOGRAPHIC_ERROR, $e);
|
|
}
|
|
catch(DatabaseOperationException $e)
|
|
{
|
|
throw new StandardRpcException('Failed to set password due to an internal exception', StandardError::INTERNAL_SERVER_ERROR, $e);
|
|
}
|
|
|
|
return $rpcRequest->produceResponse(true);
|
|
}
|
|
} |