src/Security/UserProvider.php line 18

Open in your IDE?
  1. <?php
  2. namespace App\Security;
  3. use App\Entity\User;
  4. use Doctrine\ORM\EntityManagerInterface;
  5. use Symfony\Component\Security\Core\User\UserInterface;
  6. use Symfony\Component\Security\Core\User\UserProviderInterface;
  7. use Symfony\Component\Security\Core\Exception\UserNotFoundException;
  8. use Symfony\Component\Security\Core\Exception\UnsupportedUserException;
  9. use Symfony\Component\Security\Core\Exception\UsernameNotFoundException;
  10. class UserProvider implements UserProviderInterface
  11. {
  12.     private $em;
  13.     private $repoUser;
  14.     
  15.     public function __construct(EntityManagerInterface $em)
  16.     {
  17.         $this->em $em;
  18.         $this->repoUser $em->getRepository(User::class);
  19.     }
  20.     private function defaultAdmin()
  21.     {
  22.         return new User(
  23.             'admin',
  24.             'tallertecno112132',
  25.             ['ROLE_ADMIN']
  26.         );
  27.     }
  28.     private function fetchByUsername($username)
  29.     {
  30.         $user $this->repoUser->findOneBy(['username' => $username]);
  31.         //exit(json_encode($this->adminUser['roles']));
  32.         if ($user === null && $username === 'admin') {
  33.             $user $this->defaultAdmin();
  34.             $this->em->persist($user);
  35.         }
  36.         if ($user && $user->getUsername() === 'admin') {
  37.             $usingDefaultPass $user->comparePassword($this->defaultAdmin()->getPassword());
  38.             $user->needsPassSetup $usingDefaultPass;
  39.             $user->needsEmailSetup $user->getEmail() === null;
  40.         }
  41.         return $user;
  42.     }
  43.     
  44.     /**
  45.      *
  46.      * @return UserInterface
  47.      *
  48.      * @throws UsernameNotFoundException if the user is not found
  49.      */
  50.     public function loadUserByUsername($username)
  51.     {
  52.         $user $this->fetchByUsername($username);
  53.         if ($user === null) {
  54.             throw new UsernameNotFoundException();
  55.         }
  56.         return $user;
  57.     }
  58.     public function loadUserByIdentifier(string $identifier): UserInterface
  59.     {
  60.         $user $this->fetchByUsername($identifier);
  61.         if ($user === null) {
  62.             $e = new UserNotFoundException(sprintf('User "%s" not found.'$identifier));
  63.             $e->setUserIdentifier($identifier);
  64.             throw $e;
  65.         }
  66.         
  67.         return $user;
  68.     }
  69.     public function getIdentifier(): string
  70.     {
  71.         return 'username';
  72.     }
  73.     /**
  74.      *
  75.      * @return UserInterface
  76.      */
  77.     public function refreshUser(UserInterface $user)
  78.     {
  79.         if (!$user instanceof User) {
  80.             throw new UnsupportedUserException(sprintf('Invalid user class "%s".'get_class($user)));
  81.         }
  82.         return $this->fetchByUsername($user->getUsername());
  83.     }
  84.     /**
  85.      * Tells Symfony to use this provider for this User class.
  86.      */
  87.     public function supportsClass($class)
  88.     {
  89.         return User::class === $class;
  90.     }
  91. }