vendor/symfony/security-core/Authentication/AuthenticationProviderManager.php line 63

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\Core\Authentication;
  11. use Symfony\Component\EventDispatcher\EventDispatcherInterface;
  12. use Symfony\Component\Security\Core\Authentication\Provider\AuthenticationProviderInterface;
  13. use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
  14. use Symfony\Component\Security\Core\AuthenticationEvents;
  15. use Symfony\Component\Security\Core\Event\AuthenticationEvent;
  16. use Symfony\Component\Security\Core\Event\AuthenticationFailureEvent;
  17. use Symfony\Component\Security\Core\Exception\AccountStatusException;
  18. use Symfony\Component\Security\Core\Exception\AuthenticationException;
  19. use Symfony\Component\Security\Core\Exception\ProviderNotFoundException;
  20. /**
  21.  * AuthenticationProviderManager uses a list of AuthenticationProviderInterface
  22.  * instances to authenticate a Token.
  23.  *
  24.  * @author Fabien Potencier <fabien@symfony.com>
  25.  * @author Johannes M. Schmitt <schmittjoh@gmail.com>
  26.  */
  27. class AuthenticationProviderManager implements AuthenticationManagerInterface {
  28.     private $providers;
  29.     private $eraseCredentials;
  30.     private $eventDispatcher;
  31.     /**
  32.      * @param iterable|AuthenticationProviderInterface[] $providers        An iterable with AuthenticationProviderInterface instances as values
  33.      * @param bool                                       $eraseCredentials Whether to erase credentials after authentication or not
  34.      *
  35.      * @throws \InvalidArgumentException
  36.      */
  37.     public function __construct(iterable $providersbool $eraseCredentials true) {
  38.         if (!$providers) {
  39.             throw new \InvalidArgumentException('You must at least add one authentication provider.');
  40.         }
  41.         $this->providers $providers;
  42.         $this->eraseCredentials $eraseCredentials;
  43.     }
  44.     public function setEventDispatcher(EventDispatcherInterface $dispatcher) {
  45.         $this->eventDispatcher $dispatcher;
  46.     }
  47.     /**
  48.      * {@inheritdoc}
  49.      */
  50.     public function authenticate(TokenInterface $token) {
  51.         $lastException null;
  52.         $result null;
  53.         foreach ($this->providers as $provider) {
  54.             if (!$provider instanceof AuthenticationProviderInterface) {
  55.                 throw new \InvalidArgumentException(sprintf('Provider "%s" must implement the AuthenticationProviderInterface.', \get_class($provider)));
  56.             }
  57.             if (!$provider->supports($token)) {
  58.                 continue;
  59.             }
  60.             try {
  61.                 $result $provider->authenticate($token);
  62.                 if (null !== $result) {
  63.                     break;
  64.                 }
  65.             } catch (AccountStatusException $e) {
  66.                 $lastException $e;
  67.                 break;
  68.             } catch (AuthenticationException $e) {
  69.                 $lastException $e;
  70.             }
  71.         }
  72.         if (null !== $result) {
  73.             if (true === $this->eraseCredentials) {
  74.                 $result->eraseCredentials();
  75.             }
  76.             if (null !== $this->eventDispatcher) {
  77.                 $this->eventDispatcher->dispatch(AuthenticationEvents::AUTHENTICATION_SUCCESS, new AuthenticationEvent($result));
  78.             }
  79.             return $result;
  80.         }
  81.         if (null === $lastException) {
  82.             $lastException = new ProviderNotFoundException(sprintf('No Authentication Provider found for token of class "%s".', \get_class($token)));
  83.         }
  84.         if (null !== $this->eventDispatcher) {
  85.             $this->eventDispatcher->dispatch(AuthenticationEvents::AUTHENTICATION_FAILURE, new AuthenticationFailureEvent($token$lastException));
  86.         }
  87.         $lastException->setToken($token);
  88.         throw $lastException;
  89.     }
  90. }