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

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