117 lines
2.7 KiB
PHP
117 lines
2.7 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the FOSUserBundle package.
|
|
*
|
|
* (c) FriendsOfSymfony <http://friendsofsymfony.github.com/>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace FOS\UserBundle\Doctrine;
|
|
|
|
use Doctrine\Common\Persistence\ObjectManager;
|
|
use Doctrine\Common\Persistence\ObjectRepository;
|
|
use FOS\UserBundle\Model\UserInterface;
|
|
use FOS\UserBundle\Model\UserManager as BaseUserManager;
|
|
use FOS\UserBundle\Util\CanonicalFieldsUpdater;
|
|
use FOS\UserBundle\Util\PasswordUpdaterInterface;
|
|
|
|
class UserManager extends BaseUserManager
|
|
{
|
|
/**
|
|
* @var ObjectManager
|
|
*/
|
|
protected $objectManager;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $class;
|
|
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @param PasswordUpdaterInterface $passwordUpdater
|
|
* @param CanonicalFieldsUpdater $canonicalFieldsUpdater
|
|
* @param ObjectManager $om
|
|
* @param string $class
|
|
*/
|
|
public function __construct(PasswordUpdaterInterface $passwordUpdater, CanonicalFieldsUpdater $canonicalFieldsUpdater, ObjectManager $om, $class)
|
|
{
|
|
parent::__construct($passwordUpdater, $canonicalFieldsUpdater);
|
|
|
|
$this->objectManager = $om;
|
|
$this->class = $class;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function deleteUser(UserInterface $user)
|
|
{
|
|
$this->objectManager->remove($user);
|
|
$this->objectManager->flush();
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function getClass()
|
|
{
|
|
if (false !== strpos($this->class, ':')) {
|
|
$metadata = $this->objectManager->getClassMetadata($this->class);
|
|
$this->class = $metadata->getName();
|
|
}
|
|
|
|
return $this->class;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function findUserBy(array $criteria)
|
|
{
|
|
return $this->getRepository()->findOneBy($criteria);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function findUsers()
|
|
{
|
|
return $this->getRepository()->findAll();
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function reloadUser(UserInterface $user)
|
|
{
|
|
$this->objectManager->refresh($user);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function updateUser(UserInterface $user, $andFlush = true)
|
|
{
|
|
$this->updateCanonicalFields($user);
|
|
$this->updatePassword($user);
|
|
|
|
$this->objectManager->persist($user);
|
|
if ($andFlush) {
|
|
$this->objectManager->flush();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @return ObjectRepository
|
|
*/
|
|
protected function getRepository()
|
|
{
|
|
return $this->objectManager->getRepository($this->getClass());
|
|
}
|
|
}
|