vendor/symfony/security-http/Authentication/AuthenticatorManager.php line 161

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\Http\Authentication;
  11. use Psr\Log\LoggerInterface;
  12. use Symfony\Component\HttpFoundation\Request;
  13. use Symfony\Component\HttpFoundation\Response;
  14. use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface;
  15. use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
  16. use Symfony\Component\Security\Core\AuthenticationEvents;
  17. use Symfony\Component\Security\Core\Event\AuthenticationSuccessEvent;
  18. use Symfony\Component\Security\Core\Exception\AccountStatusException;
  19. use Symfony\Component\Security\Core\Exception\AuthenticationException;
  20. use Symfony\Component\Security\Core\Exception\BadCredentialsException;
  21. use Symfony\Component\Security\Core\Exception\CustomUserMessageAccountStatusException;
  22. use Symfony\Component\Security\Core\Exception\UsernameNotFoundException;
  23. use Symfony\Component\Security\Core\User\UserInterface;
  24. use Symfony\Component\Security\Http\Authenticator\AuthenticatorInterface;
  25. use Symfony\Component\Security\Http\Authenticator\Debug\TraceableAuthenticator;
  26. use Symfony\Component\Security\Http\Authenticator\InteractiveAuthenticatorInterface;
  27. use Symfony\Component\Security\Http\Authenticator\Passport\Badge\BadgeInterface;
  28. use Symfony\Component\Security\Http\Authenticator\Passport\Badge\UserBadge;
  29. use Symfony\Component\Security\Http\Authenticator\Passport\PassportInterface;
  30. use Symfony\Component\Security\Http\Authenticator\Passport\SelfValidatingPassport;
  31. use Symfony\Component\Security\Http\Event\AuthenticationTokenCreatedEvent;
  32. use Symfony\Component\Security\Http\Event\CheckPassportEvent;
  33. use Symfony\Component\Security\Http\Event\InteractiveLoginEvent;
  34. use Symfony\Component\Security\Http\Event\LoginFailureEvent;
  35. use Symfony\Component\Security\Http\Event\LoginSuccessEvent;
  36. use Symfony\Component\Security\Http\SecurityEvents;
  37. use Symfony\Contracts\EventDispatcher\EventDispatcherInterface;
  38. /**
  39.  * @author Wouter de Jong <wouter@wouterj.nl>
  40.  * @author Ryan Weaver <ryan@symfonycasts.com>
  41.  * @author Amaury Leroux de Lens <amaury@lerouxdelens.com>
  42.  */
  43. class AuthenticatorManager implements AuthenticatorManagerInterfaceUserAuthenticatorInterface
  44. {
  45.     private $authenticators;
  46.     private $tokenStorage;
  47.     private $eventDispatcher;
  48.     private $eraseCredentials;
  49.     private $logger;
  50.     private $firewallName;
  51.     private $hideUserNotFoundExceptions;
  52.     private $requiredBadges;
  53.     /**
  54.      * @param iterable<mixed, AuthenticatorInterface> $authenticators
  55.      */
  56.     public function __construct(iterable $authenticatorsTokenStorageInterface $tokenStorageEventDispatcherInterface $eventDispatcherstring $firewallNameLoggerInterface $logger nullbool $eraseCredentials truebool $hideUserNotFoundExceptions true, array $requiredBadges = [])
  57.     {
  58.         $this->authenticators $authenticators;
  59.         $this->tokenStorage $tokenStorage;
  60.         $this->eventDispatcher $eventDispatcher;
  61.         $this->firewallName $firewallName;
  62.         $this->logger $logger;
  63.         $this->eraseCredentials $eraseCredentials;
  64.         $this->hideUserNotFoundExceptions $hideUserNotFoundExceptions;
  65.         $this->requiredBadges $requiredBadges;
  66.     }
  67.     /**
  68.      * @param BadgeInterface[] $badges Optionally, pass some Passport badges to use for the manual login
  69.      */
  70.     public function authenticateUser(UserInterface $userAuthenticatorInterface $authenticatorRequest $request, array $badges = []): ?Response
  71.     {
  72.         // create an authentication token for the User
  73.         // @deprecated since Symfony 5.3, change to $user->getUserIdentifier() in 6.0
  74.         $passport = new SelfValidatingPassport(new UserBadge(method_exists($user'getUserIdentifier') ? $user->getUserIdentifier() : $user->getUsername(), function () use ($user) { return $user; }), $badges);
  75.         $token method_exists($authenticator'createToken') ? $authenticator->createToken($passport$this->firewallName) : $authenticator->createAuthenticatedToken($passport$this->firewallName);
  76.         // announce the authentication token
  77.         $token $this->eventDispatcher->dispatch(new AuthenticationTokenCreatedEvent($token$passport))->getAuthenticatedToken();
  78.         // authenticate this in the system
  79.         return $this->handleAuthenticationSuccess($token$passport$request$authenticator);
  80.     }
  81.     public function supports(Request $request): ?bool
  82.     {
  83.         if (null !== $this->logger) {
  84.             $context = ['firewall_name' => $this->firewallName];
  85.             if ($this->authenticators instanceof \Countable || \is_array($this->authenticators)) {
  86.                 $context['authenticators'] = \count($this->authenticators);
  87.             }
  88.             $this->logger->debug('Checking for authenticator support.'$context);
  89.         }
  90.         $authenticators = [];
  91.         $skippedAuthenticators = [];
  92.         $lazy true;
  93.         foreach ($this->authenticators as $authenticator) {
  94.             if (null !== $this->logger) {
  95.                 $this->logger->debug('Checking support on authenticator.', ['firewall_name' => $this->firewallName'authenticator' => \get_class($authenticator)]);
  96.             }
  97.             if (false !== $supports $authenticator->supports($request)) {
  98.                 $authenticators[] = $authenticator;
  99.                 $lazy $lazy && null === $supports;
  100.             } else {
  101.                 if (null !== $this->logger) {
  102.                     $this->logger->debug('Authenticator does not support the request.', ['firewall_name' => $this->firewallName'authenticator' => \get_class($authenticator)]);
  103.                 }
  104.                 $skippedAuthenticators[] = $authenticator;
  105.             }
  106.         }
  107.         if (!$authenticators) {
  108.             return false;
  109.         }
  110.         $request->attributes->set('_security_authenticators'$authenticators);
  111.         $request->attributes->set('_security_skipped_authenticators'$skippedAuthenticators);
  112.         return $lazy null true;
  113.     }
  114.     public function authenticateRequest(Request $request): ?Response
  115.     {
  116.         $authenticators $request->attributes->get('_security_authenticators');
  117.         $request->attributes->remove('_security_authenticators');
  118.         $request->attributes->remove('_security_skipped_authenticators');
  119.         if (!$authenticators) {
  120.             return null;
  121.         }
  122.         return $this->executeAuthenticators($authenticators$request);
  123.     }
  124.     /**
  125.      * @param AuthenticatorInterface[] $authenticators
  126.      */
  127.     private function executeAuthenticators(array $authenticatorsRequest $request): ?Response
  128.     {
  129.         foreach ($authenticators as $authenticator) {
  130.             // recheck if the authenticator still supports the listener. supports() is called
  131.             // eagerly (before token storage is initialized), whereas authenticate() is called
  132.             // lazily (after initialization).
  133.             if (false === $authenticator->supports($request)) {
  134.                 if (null !== $this->logger) {
  135.                     $this->logger->debug('Skipping the "{authenticator}" authenticator as it did not support the request.', ['authenticator' => \get_class($authenticator instanceof TraceableAuthenticator $authenticator->getAuthenticator() : $authenticator)]);
  136.                 }
  137.                 continue;
  138.             }
  139.             $response $this->executeAuthenticator($authenticator$request);
  140.             if (null !== $response) {
  141.                 if (null !== $this->logger) {
  142.                     $this->logger->debug('The "{authenticator}" authenticator set the response. Any later authenticator will not be called', ['authenticator' => \get_class($authenticator instanceof TraceableAuthenticator $authenticator->getAuthenticator() : $authenticator)]);
  143.                 }
  144.                 return $response;
  145.             }
  146.         }
  147.         return null;
  148.     }
  149.     private function executeAuthenticator(AuthenticatorInterface $authenticatorRequest $request): ?Response
  150.     {
  151.         $passport null;
  152.         try {
  153.             // get the passport from the Authenticator
  154.             $passport $authenticator->authenticate($request);
  155.             // check the passport (e.g. password checking)
  156.             $event = new CheckPassportEvent($authenticator$passport);
  157.             $this->eventDispatcher->dispatch($event);
  158.             // check if all badges are resolved
  159.             $resolvedBadges = [];
  160.             foreach ($passport->getBadges() as $badge) {
  161.                 if (!$badge->isResolved()) {
  162.                     throw new BadCredentialsException(sprintf('Authentication failed: Security badge "%s" is not resolved, did you forget to register the correct listeners?'get_debug_type($badge)));
  163.                 }
  164.                 $resolvedBadges[] = \get_class($badge);
  165.             }
  166.             $missingRequiredBadges array_diff($this->requiredBadges$resolvedBadges);
  167.             if ($missingRequiredBadges) {
  168.                 throw new BadCredentialsException(sprintf('Authentication failed; Some badges marked as required by the firewall config are not available on the passport: "%s".'implode('", "'$missingRequiredBadges)));
  169.             }
  170.             // create the authentication token
  171.             $authenticatedToken method_exists($authenticator'createToken') ? $authenticator->createToken($passport$this->firewallName) : $authenticator->createAuthenticatedToken($passport$this->firewallName);
  172.             // announce the authentication token
  173.             $authenticatedToken $this->eventDispatcher->dispatch(new AuthenticationTokenCreatedEvent($authenticatedToken$passport))->getAuthenticatedToken();
  174.             if (true === $this->eraseCredentials) {
  175.                 $authenticatedToken->eraseCredentials();
  176.             }
  177.             $this->eventDispatcher->dispatch(new AuthenticationSuccessEvent($authenticatedToken), AuthenticationEvents::AUTHENTICATION_SUCCESS);
  178.             if (null !== $this->logger) {
  179.                 $this->logger->info('Authenticator successful!', ['token' => $authenticatedToken'authenticator' => \get_class($authenticator instanceof TraceableAuthenticator $authenticator->getAuthenticator() : $authenticator)]);
  180.             }
  181.         } catch (AuthenticationException $e) {
  182.             // oh no! Authentication failed!
  183.             $response $this->handleAuthenticationFailure($e$request$authenticator$passport);
  184.             if ($response instanceof Response) {
  185.                 return $response;
  186.             }
  187.             return null;
  188.         }
  189.         // success! (sets the token on the token storage, etc)
  190.         $response $this->handleAuthenticationSuccess($authenticatedToken$passport$request$authenticator);
  191.         if ($response instanceof Response) {
  192.             return $response;
  193.         }
  194.         if (null !== $this->logger) {
  195.             $this->logger->debug('Authenticator set no success response: request continues.', ['authenticator' => \get_class($authenticator instanceof TraceableAuthenticator $authenticator->getAuthenticator() : $authenticator)]);
  196.         }
  197.         return null;
  198.     }
  199.     private function handleAuthenticationSuccess(TokenInterface $authenticatedTokenPassportInterface $passportRequest $requestAuthenticatorInterface $authenticator): ?Response
  200.     {
  201.         // @deprecated since Symfony 5.3
  202.         $user $authenticatedToken->getUser();
  203.         if ($user instanceof UserInterface && !method_exists($user'getUserIdentifier')) {
  204.             trigger_deprecation('symfony/security-core''5.3''Not implementing method "getUserIdentifier(): string" in user class "%s" is deprecated. This method will replace "getUsername()" in Symfony 6.0.'get_debug_type($authenticatedToken->getUser()));
  205.         }
  206.         $this->tokenStorage->setToken($authenticatedToken);
  207.         $response $authenticator->onAuthenticationSuccess($request$authenticatedToken$this->firewallName);
  208.         if ($authenticator instanceof InteractiveAuthenticatorInterface && $authenticator->isInteractive()) {
  209.             $loginEvent = new InteractiveLoginEvent($request$authenticatedToken);
  210.             $this->eventDispatcher->dispatch($loginEventSecurityEvents::INTERACTIVE_LOGIN);
  211.         }
  212.         $this->eventDispatcher->dispatch($loginSuccessEvent = new LoginSuccessEvent($authenticator$passport$authenticatedToken$request$response$this->firewallName));
  213.         return $loginSuccessEvent->getResponse();
  214.     }
  215.     /**
  216.      * Handles an authentication failure and returns the Response for the authenticator.
  217.      */
  218.     private function handleAuthenticationFailure(AuthenticationException $authenticationExceptionRequest $requestAuthenticatorInterface $authenticator, ?PassportInterface $passport): ?Response
  219.     {
  220.         if (null !== $this->logger) {
  221.             $this->logger->info('Authenticator failed.', ['exception' => $authenticationException'authenticator' => \get_class($authenticator instanceof TraceableAuthenticator $authenticator->getAuthenticator() : $authenticator)]);
  222.         }
  223.         // Avoid leaking error details in case of invalid user (e.g. user not found or invalid account status)
  224.         // to prevent user enumeration via response content comparison
  225.         if ($this->hideUserNotFoundExceptions && ($authenticationException instanceof UsernameNotFoundException || ($authenticationException instanceof AccountStatusException && !$authenticationException instanceof CustomUserMessageAccountStatusException))) {
  226.             $authenticationException = new BadCredentialsException('Bad credentials.'0$authenticationException);
  227.         }
  228.         $response $authenticator->onAuthenticationFailure($request$authenticationException);
  229.         if (null !== $response && null !== $this->logger) {
  230.             $this->logger->debug('The "{authenticator}" authenticator set the failure response.', ['authenticator' => \get_class($authenticator instanceof TraceableAuthenticator $authenticator->getAuthenticator() : $authenticator)]);
  231.         }
  232.         $this->eventDispatcher->dispatch($loginFailureEvent = new LoginFailureEvent($authenticationException$authenticator$request$response$this->firewallName$passport));
  233.         // returning null is ok, it means they want the request to continue
  234.         return $loginFailureEvent->getResponse();
  235.     }
  236. }