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

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\HttpKernel\Event\RequestEvent;
  13. use Symfony\Component\Security\Core\Authentication\AuthenticationManagerInterface;
  14. use Symfony\Component\Security\Core\Authentication\Token\AnonymousToken;
  15. use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface;
  16. use Symfony\Component\Security\Core\Exception\AuthenticationException;
  17. /**
  18.  * AnonymousAuthenticationListener automatically adds a Token if none is
  19.  * already present.
  20.  *
  21.  * @author Fabien Potencier <fabien@symfony.com>
  22.  *
  23.  * @final since Symfony 4.3
  24.  */
  25. class AnonymousAuthenticationListener implements ListenerInterface
  26. {
  27.     use LegacyListenerTrait;
  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.      * Handles anonymous authentication.
  41.      */
  42.     public function __invoke(RequestEvent $event)
  43.     {
  44.         if (null !== $this->tokenStorage->getToken()) {
  45.             return;
  46.         }
  47.         try {
  48.             $token = new AnonymousToken($this->secret'anon.', []);
  49.             if (null !== $this->authenticationManager) {
  50.                 $token $this->authenticationManager->authenticate($token);
  51.             }
  52.             $this->tokenStorage->setToken($token);
  53.             if (null !== $this->logger) {
  54.                 $this->logger->info('Populated the TokenStorage with an anonymous Token.');
  55.             }
  56.         } catch (AuthenticationException $failed) {
  57.             if (null !== $this->logger) {
  58.                 $this->logger->info('Anonymous authentication failed.', ['exception' => $failed]);
  59.             }
  60.         }
  61.     }
  62. }