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

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