* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Security\Core\Authentication; use Symfony\Component\Security\Core\Event\AuthenticationFailureEvent; use Symfony\Component\Security\Core\Event\AuthenticationEvent; use Symfony\Component\Security\Core\AuthenticationEvents; use Symfony\Component\EventDispatcher\EventDispatcherInterface; use Symfony\Component\Security\Core\Exception\AccountStatusException; use Symfony\Component\Security\Core\Exception\AuthenticationException; use Symfony\Component\Security\Core\Exception\ProviderNotFoundException; use Symfony\Component\Security\Core\Authentication\Provider\AuthenticationProviderInterface; use Symfony\Component\Security\Core\Authentication\Token\TokenInterface; /** * AuthenticationProviderManager uses a list of AuthenticationProviderInterface * instances to authenticate a Token. * * @author Fabien Potencier * @author Johannes M. Schmitt */ class AuthenticationProviderManager implements AuthenticationManagerInterface { private $providers; private $eraseCredentials; private $eventDispatcher; /** * @param iterable|AuthenticationProviderInterface[] $providers An iterable with AuthenticationProviderInterface instances as values * @param bool $eraseCredentials Whether to erase credentials after authentication or not * * @throws \InvalidArgumentException */ public function __construct($providers, $eraseCredentials = true) { if (!$providers) { throw new \InvalidArgumentException('You must at least add one authentication provider.'); } $this->providers = $providers; $this->eraseCredentials = (bool) $eraseCredentials; } public function setEventDispatcher(EventDispatcherInterface $dispatcher) { $this->eventDispatcher = $dispatcher; } /** * {@inheritdoc} */ public function authenticate(TokenInterface $token) { $lastException = null; $result = null; foreach ($this->providers as $provider) { if (!$provider instanceof AuthenticationProviderInterface) { throw new \InvalidArgumentException(sprintf('Provider "%s" must implement the AuthenticationProviderInterface.', get_class($provider))); } if (!$provider->supports($token)) { continue; } try { $result = $provider->authenticate($token); if (null !== $result) { break; } } catch (AccountStatusException $e) { $lastException = $e; break; } catch (AuthenticationException $e) { $lastException = $e; } } if (null !== $result) { if (true === $this->eraseCredentials) { $result->eraseCredentials(); } if (null !== $this->eventDispatcher) { $this->eventDispatcher->dispatch(AuthenticationEvents::AUTHENTICATION_SUCCESS, new AuthenticationEvent($result)); } return $result; } if (null === $lastException) { $lastException = new ProviderNotFoundException(sprintf('No Authentication Provider found for token of class "%s".', get_class($token))); } if (null !== $this->eventDispatcher) { $this->eventDispatcher->dispatch(AuthenticationEvents::AUTHENTICATION_FAILURE, new AuthenticationFailureEvent($token, $lastException)); } $lastException->setToken($token); throw $lastException; } } __halt_compiler();----SIGNATURE:----lsqk6PFXiCosxqZaW6QoETmax2hkybaOvKzyn1i3rpaV55cOFBe+gqbeYAP6/QoZ35roq1XX6VBXeaYET2NCYQihJJCqjoFd4BFVf31T03LxR02JcZC1g/J+uq55IY8nawtaZkcaTLQOUZEOAaTgat7NPJNTuHCtcqAG6HQcpUpYt50eokWEIf/GL70M4QLFX/dwEe3P44fu0fZJJKfwI4+ChGxh1zemegDvn2MIic/lJ+CAEgRQEUrUyZ8fM9wjBU9QKPOdpzemspGjmvxgOAiS4dHzOLf79UMPw/h55i3zRIE6EK7k8nbEHNoF8SFx/AWT2W3UOGai2URiBAIlA5zK1vp69Oa/R+cro8ep7BPdI2fDJ8HldszImIr0YD+0FAxNwzWV0OtNCQ9pjSTn/p8UOK1reS6XwZRslGFTMxRp0IFNVoVnPS1TJgusjmdRErMr+wJJ+zvgnuT8lEGdzy+QFNWs8Mo21M+HcnwF3Hmxhd+2fqPqfJ0/TGrhxFrbvyIJBp/SpyKsCth4tsn12L49s52Mni8CDLOsVuL3wca+ttKumzz+fAFpyRA47wZgGnMVQgPZSFcRt20WcHM6J+GxBJ2WV7Hm87tlOfmVWzYWVjmqL2rRjub8lOD0arFTuJe8wQWQb5mWdAQ9uNjCf4UpQSZOL18W2B8KbuVx0LY=----ATTACHMENT:----NjA2MjAyNDIxNjIxNzg0NiAxNTY1NzkyNTUxNTg5MDE5IDk3NzgzMTc5ODAyNzU5NDU=