69 lines
2.3 KiB
PHP
69 lines
2.3 KiB
PHP
<?php declare(strict_types=1);
|
|
/*
|
|
* This file is part of the SplendidBear Websites' projects.
|
|
*
|
|
* Copyright (c) 2026 @ www.splendidbear.org
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace App\Repository;
|
|
|
|
use App\Entity\User;
|
|
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
|
|
use Doctrine\ORM\NonUniqueResultException;
|
|
use Doctrine\Persistence\ManagerRegistry;
|
|
use Psr\Log\LoggerInterface;
|
|
use RuntimeException;
|
|
use Symfony\Component\Security\Core\Exception\UnsupportedUserException;
|
|
use Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface;
|
|
use Symfony\Component\Security\Core\User\PasswordUpgraderInterface;
|
|
|
|
/**
|
|
* Class UserRepository
|
|
*
|
|
* @package App\Repository
|
|
* @author Lang <https://www.splendidbear.org>
|
|
* @category Class
|
|
* @license https://www.gnu.org/licenses/lgpl-3.0.en.html GNU Lesser General Public License
|
|
* @link www.splendidbear.org
|
|
* @since 2026. 04. 09.
|
|
*
|
|
* @extends ServiceEntityRepository<User>
|
|
*/
|
|
class UserRepository extends ServiceEntityRepository implements PasswordUpgraderInterface
|
|
{
|
|
public function __construct(ManagerRegistry $registry, private readonly LoggerInterface $logger)
|
|
{
|
|
parent::__construct($registry, User::class);
|
|
}
|
|
|
|
public function findOneByUsername(string $username): ?User
|
|
{
|
|
$qb = $this->createQueryBuilder('u');
|
|
|
|
try {
|
|
return $qb
|
|
->where($qb->expr()->eq('u.username', ':username'))
|
|
->setParameter('username', $username)
|
|
->getQuery()
|
|
->getOneOrNullResult();
|
|
} catch (NonUniqueResultException $e) {
|
|
$this->logger->error($e->getMessage());
|
|
throw new RuntimeException("Multiple users found with the same username: $username", 0, $e);
|
|
}
|
|
}
|
|
|
|
public function upgradePassword(PasswordAuthenticatedUserInterface $user, string $newHashedPassword): void
|
|
{
|
|
if (!$user instanceof User) {
|
|
throw new UnsupportedUserException(sprintf('Instances of "%s" are not supported.', $user::class));
|
|
}
|
|
|
|
$user->setPassword($newHashedPassword);
|
|
$this->getEntityManager()->persist($user);
|
|
$this->getEntityManager()->flush();
|
|
}
|
|
}
|