for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the Silverback API Components Bundle Project
*
* (c) Daniel West <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Silverback\ApiComponentsBundle\Action\User;
use Silverback\ApiComponentsBundle\Exception\InvalidArgumentException;
use Silverback\ApiComponentsBundle\Exception\UnexpectedValueException;
use Silverback\ApiComponentsBundle\Helper\User\EmailAddressManager;
use Symfony\Component\HttpFoundation\Response;
/**
* @author Daniel West <[email protected]>
class EmailAddressConfirmAction
{
private EmailAddressManager $emailAddressManager;
public function __construct(EmailAddressManager $emailAddressManager)
$this->emailAddressManager = $emailAddressManager;
}
public function __invoke(string $username, string $emailAddress, string $token): Response
try {
$this->emailAddressManager->confirmNewEmailAddress($username, $emailAddress, $token);
} catch (InvalidArgumentException $exception) {
return new Response(null, Response::HTTP_NOT_FOUND);
} catch (UnexpectedValueException $exception) {
return new Response(null, Response::HTTP_UNAUTHORIZED);
$response = new Response(null, Response::HTTP_OK);
$response->setCache([
'private' => true,
's_maxage' => 0,
'max_age' => 0,
]);
return $response;