vendor/friendsofsymfony/user-bundle/EventListener/AuthenticationListener.php line 66

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the FOSUserBundle package.
  4.  *
  5.  * (c) FriendsOfSymfony <http://friendsofsymfony.github.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 FOS\UserBundle\EventListener;
  11. use FOS\UserBundle\CompatibilityUtil;
  12. use FOS\UserBundle\Event\FilterUserResponseEvent;
  13. use FOS\UserBundle\Event\UserEvent;
  14. use FOS\UserBundle\FOSUserEvents;
  15. use FOS\UserBundle\Security\LoginManagerInterface;
  16. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  17. use Symfony\Component\Security\Core\Exception\AccountStatusException;
  18. use Symfony\Contracts\EventDispatcher\EventDispatcherInterface;
  19. /**
  20.  * @internal
  21.  *
  22.  * @final
  23.  */
  24. class AuthenticationListener implements EventSubscriberInterface
  25. {
  26.     /**
  27.      * @var LoginManagerInterface
  28.      */
  29.     private $loginManager;
  30.     /**
  31.      * @var string
  32.      */
  33.     private $firewallName;
  34.     /**
  35.      * AuthenticationListener constructor.
  36.      *
  37.      * @param string $firewallName
  38.      */
  39.     public function __construct(LoginManagerInterface $loginManager$firewallName)
  40.     {
  41.         $this->loginManager $loginManager;
  42.         $this->firewallName $firewallName;
  43.     }
  44.     /**
  45.      * {@inheritdoc}
  46.      */
  47.     public static function getSubscribedEvents(): array
  48.     {
  49.         return [
  50.             FOSUserEvents::REGISTRATION_COMPLETED => 'authenticate',
  51.             FOSUserEvents::REGISTRATION_CONFIRMED => 'authenticate',
  52.             FOSUserEvents::RESETTING_RESET_COMPLETED => 'authenticate',
  53.         ];
  54.     }
  55.     /**
  56.      * @param string $eventName
  57.      */
  58.     public function authenticate(FilterUserResponseEvent $event$eventNameEventDispatcherInterface $eventDispatcher)
  59.     {
  60.         $eventDispatcher CompatibilityUtil::upgradeEventDispatcher($eventDispatcher);
  61.         try {
  62.             $this->loginManager->logInUser($this->firewallName$event->getUser(), $event->getResponse());
  63.             $eventDispatcher->dispatch(new UserEvent($event->getUser(), $event->getRequest()), FOSUserEvents::SECURITY_IMPLICIT_LOGIN);
  64.         } catch (AccountStatusException $ex) {
  65.             // We simply do not authenticate users which do not pass the user
  66.             // checker (not enabled, expired, etc.).
  67.         }
  68.     }
  69. }