This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Bundle/DoctrineMongoDBBundle/Security/DocumentUserProvider.php

62 lines
1.8 KiB
PHP
Raw Normal View History

<?php
namespace Symfony\Bundle\DoctrineMongoDBBundle\Security;
2010-12-16 21:27:16 +00:00
use Symfony\Component\Security\User\AccountInterface;
use Symfony\Component\Security\User\UserProviderInterface;
2010-12-16 21:27:16 +00:00
use Symfony\Component\Security\Exception\UnsupportedAccountException;
use Symfony\Component\Security\Exception\UsernameNotFoundException;
class DocumentUserProvider implements UserProviderInterface
{
2010-12-16 21:27:16 +00:00
protected $class;
protected $repository;
protected $property;
2010-12-16 21:27:16 +00:00
public function __construct($em, $class, $property = null)
{
2010-12-16 21:27:16 +00:00
$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));
}
2010-12-16 21:27:16 +00:00
return $user;
}
/**
* {@inheritDoc}
*/
public function loadUserByAccount(AccountInterface $account)
{
2010-12-16 21:27:16 +00:00
if (!$account instanceof $this->class) {
throw new UnsupportedAccountException(sprintf('Instances of "%s" are not supported.', get_class($account)));
}
return $this->loadUserByUsername((string) $account);
}
}