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

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