From: Raphaƫl Gertz Date: Tue, 12 Dec 2023 17:02:03 +0000 (+0100) Subject: Add password upgrade feature X-Git-Tag: 0.3.4 X-Git-Url: https://git.rapsys.eu/userbundle/commitdiff_plain/f9a05d2199dbec989e7d53f5c983e601016846c4 Add password upgrade feature --- diff --git a/Repository/UserRepository.php b/Repository/UserRepository.php index d75e229..da5952f 100644 --- a/Repository/UserRepository.php +++ b/Repository/UserRepository.php @@ -13,11 +13,13 @@ namespace Rapsys\UserBundle\Repository; use Doctrine\ORM\Query\ResultSetMapping; 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 EntityRepository implements PasswordUpgraderInterface { /** * Find user count as int * @@ -142,4 +144,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(); + } }