X-Git-Url: https://git.rapsys.eu/userbundle/blobdiff_plain/eb6674f160d9c9bf4a2dd4daf6b9e48b125de2e7..0811e272814cf05d6fc8bc76646a0be99bf79bb9:/Repository/UserRepository.php diff --git a/Repository/UserRepository.php b/Repository/UserRepository.php index d75e229..077b500 100644 --- a/Repository/UserRepository.php +++ b/Repository/UserRepository.php @@ -12,12 +12,17 @@ namespace Rapsys\UserBundle\Repository; use Doctrine\ORM\Query\ResultSetMapping; + +use Rapsys\UserBundle\Repository; + use Symfony\Component\Routing\Generator\UrlGeneratorInterface; +use Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface; +use Symfony\Component\Security\Core\User\PasswordUpgraderInterface; /** * UserRepository */ -class UserRepository extends EntityRepository { +class UserRepository extends Repository implements PasswordUpgraderInterface { /** * Find user count as int * @@ -119,7 +124,7 @@ SQL; 'pseudonym' => $data['pseudonym'], 'groups' => [], 'slug' => $this->slugger->slug($data['pseudonym']), - 'link' => $this->router->generate('rapsys_user_edit', ['mail' => $short = $this->slugger->short($data['mail']), 'hash' => $this->slugger->hash($short)]) + 'link' => $this->router->generate('rapsysuser_edit', ['mail' => $short = $this->slugger->short($data['mail']), 'hash' => $this->slugger->hash($short)]) ]; //With groups @@ -133,7 +138,7 @@ SQL; $ret[$data['id']]['groups'][$id] = [ 'title' => $group = $this->translator->trans($titles[$k]), #'slug' => $this->slugger->slug($group) - #'link' => $this->router->generate('rapsys_user_group_view', ['id' => $id, 'slug' => $this->slugger->short($group)]) + #'link' => $this->router->generate('rapsysuser_group_view', ['id' => $id, 'slug' => $this->slugger->short($group)]) ]; } } @@ -142,4 +147,15 @@ SQL; //Send result return $ret; } + + /** + * {@inheritdoc} + */ + public function upgradePassword(PasswordAuthenticatedUserInterface $user, string $hash): void { + //Set new hashed password + $user->setPassword($hash); + + //Flush data to database + $this->getEntityManager()->flush(); + } }