vendor/symfony/security-http/Authenticator/Passport/Badge/UserBadge.php line 28

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\Authenticator\Passport\Badge;
  11. use Symfony\Component\Security\Core\Exception\AuthenticationException;
  12. use Symfony\Component\Security\Core\Exception\AuthenticationServiceException;
  13. use Symfony\Component\Security\Core\Exception\UserNotFoundException;
  14. use Symfony\Component\Security\Core\User\UserInterface;
  15. use Symfony\Component\Security\Http\EventListener\UserProviderListener;
  16. /**
  17.  * Represents the user in the authentication process.
  18.  *
  19.  * It uses an identifier (e.g. email, or username) and
  20.  * "user loader" to load the related User object.
  21.  *
  22.  * @author Wouter de Jong <wouter@wouterj.nl>
  23.  */
  24. class UserBadge implements BadgeInterface
  25. {
  26.     private string $userIdentifier;
  27.     /** @var callable|null */
  28.     private $userLoader;
  29.     private UserInterface $user;
  30.     /**
  31.      * Initializes the user badge.
  32.      *
  33.      * You must provide a $userIdentifier. This is a unique string representing the
  34.      * user for this authentication (e.g. the email if authentication is done using
  35.      * email + password; or a string combining email+company if authentication is done
  36.      * based on email *and* company name). This string can be used for e.g. login throttling.
  37.      *
  38.      * Optionally, you may pass a user loader. This callable receives the $userIdentifier
  39.      * as argument and must return a UserInterface object (otherwise an AuthenticationServiceException
  40.      * is thrown). If this is not set, the default user provider will be used with
  41.      * $userIdentifier as username.
  42.      */
  43.     public function __construct(string $userIdentifier, callable $userLoader null)
  44.     {
  45.         $this->userIdentifier $userIdentifier;
  46.         $this->userLoader $userLoader;
  47.     }
  48.     public function getUserIdentifier(): string
  49.     {
  50.         return $this->userIdentifier;
  51.     }
  52.     /**
  53.      * @throws AuthenticationException when the user cannot be found
  54.      */
  55.     public function getUser(): UserInterface
  56.     {
  57.         if (isset($this->user)) {
  58.             return $this->user;
  59.         }
  60.         if (null === $this->userLoader) {
  61.             throw new \LogicException(sprintf('No user loader is configured, did you forget to register the "%s" listener?'UserProviderListener::class));
  62.         }
  63.         $user = ($this->userLoader)($this->userIdentifier);
  64.         // No user has been found via the $this->userLoader callback
  65.         if (null === $user) {
  66.             $exception = new UserNotFoundException();
  67.             $exception->setUserIdentifier($this->userIdentifier);
  68.             throw $exception;
  69.         }
  70.         if (!$user instanceof UserInterface) {
  71.             throw new AuthenticationServiceException(sprintf('The user provider must return a UserInterface object, "%s" given.'get_debug_type($user)));
  72.         }
  73.         return $this->user $user;
  74.     }
  75.     public function getUserLoader(): ?callable
  76.     {
  77.         return $this->userLoader;
  78.     }
  79.     public function setUserLoader(callable $userLoader): void
  80.     {
  81.         $this->userLoader $userLoader;
  82.     }
  83.     public function isResolved(): bool
  84.     {
  85.         return true;
  86.     }
  87. }