12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?php
- namespace Symfony\Bundle\DoctrineMongoDBBundle\Security;
- use Symfony\Component\Security\User\AccountInterface;
- use Symfony\Component\Security\User\UserProviderInterface;
- use Symfony\Component\Security\Exception\UnsupportedAccountException;
- use Symfony\Component\Security\Exception\UsernameNotFoundException;
- class DocumentUserProvider implements UserProviderInterface
- {
- protected $class;
- protected $repository;
- protected $property;
- public function __construct($em, $class, $property = null)
- {
- $this->class = $class;
- if (false !== strpos($this->class, ':')) {
- $this->class = $em->getClassMetadata($class)->getName();
- }
- $this->repository = $em->getRepository($class);
- $this->property = $property;
- }
- /**
- * {@inheritdoc}
- */
- public function loadUserByUsername($username)
- {
- if (null !== $this->property) {
- $user = $this->repository->findOneBy(array($this->property => $username));
- } else {
- if (!$this->repository instanceof UserProviderInterface) {
- throw new \InvalidArgumentException(sprintf('The Doctrine repository "%s" must implement UserProviderInterface.', get_class($this->repository)));
- }
- $user = $this->repository->loadUserByUsername($username);
- }
- if (null === $user) {
- throw new UsernameNotFoundException(sprintf('User "%s" not found.', $username));
- }
- return $user;
- }
- /**
- * {@inheritDoc}
- */
- public function loadUserByAccount(AccountInterface $account)
- {
- if (!$account instanceof $this->class) {
- throw new UnsupportedAccountException(sprintf('Instances of "%s" are not supported.', get_class($account)));
- }
- return $this->loadUserByUsername((string) $account);
- }
- }
|