* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Security\Http\Firewall; use Symfony\Component\Security\Core\Authentication\AuthenticationManagerInterface; use Psr\Log\LoggerInterface; use Symfony\Component\HttpKernel\Event\GetResponseEvent; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\Security\Http\Authentication\SimplePreAuthenticatorInterface; use Symfony\Component\Security\Core\Authentication\Token\AnonymousToken; use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface; use Symfony\Component\Security\Core\Exception\AuthenticationException; use Symfony\Component\Security\Http\Authentication\AuthenticationFailureHandlerInterface; use Symfony\Component\Security\Http\Authentication\AuthenticationSuccessHandlerInterface; use Symfony\Component\Security\Http\Event\InteractiveLoginEvent; use Symfony\Component\Security\Http\SecurityEvents; use Symfony\Component\EventDispatcher\EventDispatcherInterface; /** * SimplePreAuthenticationListener implements simple proxying to an authenticator. * * @author Jordi Boggiano */ class SimplePreAuthenticationListener implements ListenerInterface { private $tokenStorage; private $authenticationManager; private $providerKey; private $simpleAuthenticator; private $logger; private $dispatcher; /** * @param TokenStorageInterface $tokenStorage A TokenStorageInterface instance * @param AuthenticationManagerInterface $authenticationManager An AuthenticationManagerInterface instance * @param string $providerKey * @param SimplePreAuthenticatorInterface $simpleAuthenticator A SimplePreAuthenticatorInterface instance * @param LoggerInterface|null $logger A LoggerInterface instance * @param EventDispatcherInterface|null $dispatcher An EventDispatcherInterface instance */ public function __construct(TokenStorageInterface $tokenStorage, AuthenticationManagerInterface $authenticationManager, $providerKey, SimplePreAuthenticatorInterface $simpleAuthenticator, LoggerInterface $logger = null, EventDispatcherInterface $dispatcher = null) { if (empty($providerKey)) { throw new \InvalidArgumentException('$providerKey must not be empty.'); } $this->tokenStorage = $tokenStorage; $this->authenticationManager = $authenticationManager; $this->providerKey = $providerKey; $this->simpleAuthenticator = $simpleAuthenticator; $this->logger = $logger; $this->dispatcher = $dispatcher; } /** * Handles basic authentication. */ public function handle(GetResponseEvent $event) { $request = $event->getRequest(); if (null !== $this->logger) { $this->logger->info('Attempting SimplePreAuthentication.', array('key' => $this->providerKey, 'authenticator' => get_class($this->simpleAuthenticator))); } if (null !== $this->tokenStorage->getToken() && !$this->tokenStorage->getToken() instanceof AnonymousToken) { return; } try { $token = $this->simpleAuthenticator->createToken($request, $this->providerKey); // allow null to be returned to skip authentication if (null === $token) { return; } $token = $this->authenticationManager->authenticate($token); $this->tokenStorage->setToken($token); if (null !== $this->dispatcher) { $loginEvent = new InteractiveLoginEvent($request, $token); $this->dispatcher->dispatch(SecurityEvents::INTERACTIVE_LOGIN, $loginEvent); } } catch (AuthenticationException $e) { $this->tokenStorage->setToken(null); if (null !== $this->logger) { $this->logger->info('SimplePreAuthentication request failed.', array('exception' => $e, 'authenticator' => get_class($this->simpleAuthenticator))); } if ($this->simpleAuthenticator instanceof AuthenticationFailureHandlerInterface) { $response = $this->simpleAuthenticator->onAuthenticationFailure($request, $e); if ($response instanceof Response) { $event->setResponse($response); } elseif (null !== $response) { throw new \UnexpectedValueException(sprintf('The %s::onAuthenticationFailure method must return null or a Response object', get_class($this->simpleAuthenticator))); } } return; } if ($this->simpleAuthenticator instanceof AuthenticationSuccessHandlerInterface) { $response = $this->simpleAuthenticator->onAuthenticationSuccess($request, $token); if ($response instanceof Response) { $event->setResponse($response); } elseif (null !== $response) { throw new \UnexpectedValueException(sprintf('The %s::onAuthenticationSuccess method must return null or a Response object', get_class($this->simpleAuthenticator))); } } } } __halt_compiler();----SIGNATURE:----ZUE2Eaf99/a9OFiqx6P7iCDqhAf3cdDkBCe9FSU83jHWBhryBL2njOZ8omrteu8bhOja3PCPc4fkn00O1qU9SKO7xieki8FmMNRiOOPMmOascrTscTGwy0Dn+9CYZnT9sOiKCoF0n41F1WKQQRKhqUIpOyt8C+qu8ypSh+EMWGsjJhR+miS1/hXoMohMXW9lF4/aQUgu6AgDPPjN5VCn6SN8K1z2B1be+AIhqVh4Cuc5SRrdk2xsjg+NCoHjdVOzVAm81ADnOuZEXu+R09aPL9t3JOfu3GIKLC03Nt5l+PmOEzL8/mAT+FFsI/xZLXUsk0IemcWydKLm1mohk+S2UkvV2i26XueQ6D5nBAj3X5/N+bfhdfnFr5sPmDQoB4BgIQJFGVTnCSileXCt2LZjdUMzozlRbhk0AI244o5LIxKphsQvZCeHy7gskFgCuzwjnRkxZozKEwPogYVDGUDA6FqgvIGkomPQzCghxS0vztYUejwTGFUFcBnToxe9DxjYVoCk3QOUuY7yCKmAqxo2F75v3YAQ4ZL6I6cWNFCHQm7MfwL4xd35bqLPvDsGQ6ih/DeU8gmNENee7Z0pjVAMNx66d3m60B2QQalVTI5GBEnXdD4u6cOV0PBWp5+/tilZkoy5/LwtRcSXrgDrr3fJKqjJC2jCmvt0UUH1mb10OT0=----ATTACHMENT:----NzE4MTI1Mjc3MDYxOTY3NCA1NzYzNTIxMTc1ODI4MzcyIDY0ODIxNjQwNzg1NTgwODQ=