vendor/symfony/security-http/Firewall/AnonymousAuthenticationListener.php line 30

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Symfony\Component\Security\Http\Firewall;
  11. use Psr\Log\LoggerInterface;
  12. use Symfony\Component\HttpFoundation\Request;
  13. use Symfony\Component\HttpKernel\Event\RequestEvent;
  14. use Symfony\Component\Security\Core\Authentication\AuthenticationManagerInterface;
  15. use Symfony\Component\Security\Core\Authentication\Token\AnonymousToken;
  16. use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface;
  17. use Symfony\Component\Security\Core\Exception\AuthenticationException;
  18. /**
  19.  * AnonymousAuthenticationListener automatically adds a Token if none is
  20.  * already present.
  21.  *
  22.  * @author Fabien Potencier <fabien@symfony.com>
  23.  *
  24.  * @final
  25.  */
  26. class AnonymousAuthenticationListener extends AbstractListener
  27. {
  28.     private $tokenStorage;
  29.     private $secret;
  30.     private $authenticationManager;
  31.     private $logger;
  32.     public function __construct(TokenStorageInterface $tokenStoragestring $secretLoggerInterface $logger nullAuthenticationManagerInterface $authenticationManager null)
  33.     {
  34.         $this->tokenStorage $tokenStorage;
  35.         $this->secret $secret;
  36.         $this->authenticationManager $authenticationManager;
  37.         $this->logger $logger;
  38.     }
  39.     /**
  40.      * {@inheritdoc}
  41.      */
  42.     public function supports(Request $request): ?bool
  43.     {
  44.         return null// always run authenticate() lazily with lazy firewalls
  45.     }
  46.     /**
  47.      * Handles anonymous authentication.
  48.      */
  49.     public function authenticate(RequestEvent $event)
  50.     {
  51.         if (null !== $this->tokenStorage->getToken()) {
  52.             return;
  53.         }
  54.         try {
  55.             $token = new AnonymousToken($this->secret'anon.', []);
  56.             if (null !== $this->authenticationManager) {
  57.                 $token $this->authenticationManager->authenticate($token);
  58.             }
  59.             $this->tokenStorage->setToken($token);
  60.             if (null !== $this->logger) {
  61.                 $this->logger->info('Populated the TokenStorage with an anonymous Token.');
  62.             }
  63.         } catch (AuthenticationException $failed) {
  64.             if (null !== $this->logger) {
  65.                 $this->logger->info('Anonymous authentication failed.', ['exception' => $failed]);
  66.             }
  67.         }
  68.     }
  69. }