src/Eccube/Security/Core/User/MemberProvider.php line 24

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of EC-CUBE
  4.  *
  5.  * Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
  6.  *
  7.  * http://www.ec-cube.co.jp/
  8.  *
  9.  * For the full copyright and license information, please view the LICENSE
  10.  * file that was distributed with this source code.
  11.  */
  12. namespace Eccube\Security\Core\User;
  13. use Eccube\Entity\Master\Work;
  14. use Eccube\Entity\Member;
  15. use Eccube\Repository\MemberRepository;
  16. use Symfony\Component\Security\Core\Exception\UnsupportedUserException;
  17. use Symfony\Component\Security\Core\Exception\UserNotFoundException;
  18. use Symfony\Component\Security\Core\User\UserInterface;
  19. use Symfony\Component\Security\Core\User\UserProviderInterface;
  20. class MemberProvider implements UserProviderInterface
  21. {
  22.     /**
  23.      * @var MemberRepository
  24.      */
  25.     protected $memberRepository;
  26.     public function __construct(MemberRepository $memberRepository)
  27.     {
  28.         $this->memberRepository $memberRepository;
  29.     }
  30.     /**
  31.      * @return UserInterface
  32.      *
  33.      * @throws UserNotFoundException
  34.      *
  35.      * @deprecated since Symfony 5.3, use loadUserByIdentifier() instead
  36.      */
  37.     public function loadUserByUsername($username): Member
  38.     {
  39.         $Member $this->memberRepository->findOneBy(['login_id' => $username'Work' => Work::ACTIVE]);
  40.         if (null === $Member) {
  41.             throw new UserNotFoundException(sprintf('Username "%s" does not exist.'$username));
  42.         }
  43.         return $Member;
  44.     }
  45.     /**
  46.      * Refreshes the user.
  47.      *
  48.      * It is up to the implementation to decide if the user data should be
  49.      * totally reloaded (e.g. from the database), or if the UserInterface
  50.      * object can just be merged into some internal array of users / identity
  51.      * map.
  52.      *
  53.      * @return UserInterface
  54.      *
  55.      * @throws UnsupportedUserException if the user is not supported
  56.      */
  57.     public function refreshUser(UserInterface $user)
  58.     {
  59.         if (!$user instanceof Member) {
  60.             throw new UnsupportedUserException(sprintf('Instances of "%s" are not supported.'get_class($user)));
  61.         }
  62.         return $this->loadUserByUsername($user->getUsername());
  63.     }
  64.     /**
  65.      * Whether this provider supports the given user class.
  66.      *
  67.      * @param string $class
  68.      *
  69.      * @return bool
  70.      */
  71.     public function supportsClass($class)
  72.     {
  73.         return Member::class === $class || is_subclass_of($classMember::class);
  74.     }
  75. }