123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- <?php
-
-
-
- namespace FOS\UserBundle\Propel;
-
- use FOS\UserBundle\Model\UserInterface;
- use FOS\UserBundle\Model\UserManager as BaseUserManager;
- use FOS\UserBundle\Util\CanonicalizerInterface;
- use Symfony\Component\Security\Core\Encoder\EncoderFactoryInterface;
-
- class UserManager extends BaseUserManager
- {
- protected $class;
-
-
-
- public function __construct(EncoderFactoryInterface $encoderFactory, CanonicalizerInterface $usernameCanonicalizer, CanonicalizerInterface $emailCanonicalizer, $class)
- {
- parent::__construct($encoderFactory, $usernameCanonicalizer, $emailCanonicalizer);
-
- $this->class = $class;
- }
-
-
-
- public function deleteUser(UserInterface $user)
- {
- if (!$user instanceof \Persistent) {
- throw new \InvalidArgumentException('This user instance is not supported by the Propel UserManager implementation');
- }
-
- $user->delete();
- }
-
-
-
- public function getClass()
- {
- return $this->class;
- }
-
-
-
- public function findUserBy(array $criteria)
- {
- $query = $this->createQuery();
-
- foreach ($criteria as $field => $value) {
- $method = 'filterBy'.ucfirst($field);
- $query->$method($value);
- }
-
- return $query->findOne();
- }
-
-
-
- public function findUsers()
- {
- return $this->createQuery()->find();
- }
-
-
-
- public function reloadUser(UserInterface $user)
- {
- if (!$user instanceof \Persistent) {
- throw new \InvalidArgumentException('This user instance is not supported by the Propel UserManager implementation');
- }
-
- $user->reload();
- }
-
-
-
- public function updateUser(UserInterface $user)
- {
- if (!$user instanceof \Persistent) {
- throw new \InvalidArgumentException('This user instance is not supported by the Propel UserManager implementation');
- }
-
- $this->updateCanonicalFields($user);
- $this->updatePassword($user);
- $user->save();
- }
-
-
-
- protected function createQuery()
- {
- return \PropelQuery::from($this->class);
- }
- }
|