Passed
Push — master ( 6a0d02...05870c )
by Jan
04:26
created

UserRepository::upgradePassword()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 2
eloc 3
c 1
b 0
f 0
nc 2
nop 2
dl 0
loc 5
rs 10
1
<?php
2
/**
3
 * This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
4
 *
5
 * Copyright (C) 2019 Jan Böhmer (https://github.com/jbtronics)
6
 *
7
 * This program is free software; you can redistribute it and/or
8
 * modify it under the terms of the GNU General Public License
9
 * as published by the Free Software Foundation; either version 2
10
 * of the License, or (at your option) any later version.
11
 *
12
 * This program is distributed in the hope that it will be useful,
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
 * GNU General Public License for more details.
16
 *
17
 * You should have received a copy of the GNU General Public License
18
 * along with this program; if not, write to the Free Software
19
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
20
 */
21
22
namespace App\Repository;
23
24
use App\Entity\UserSystem\User;
25
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
26
use Doctrine\ORM\EntityManagerInterface;
27
use Doctrine\ORM\EntityRepository;
28
use Doctrine\ORM\Mapping;
29
use Doctrine\ORM\NonUniqueResultException;
30
use Symfony\Bridge\Doctrine\RegistryInterface;
31
use Symfony\Component\Security\Core\User\PasswordUpgraderInterface;
32
use Symfony\Component\Security\Core\User\UserInterface;
33
34
/**
35
 * @method User|null find($id, $lockMode = null, $lockVersion = null)
36
 * @method User|null findOneBy(array $criteria, array $orderBy = null)
37
 * @method User[]    findAll()
38
 * @method User[]    findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
39
 */
40
class UserRepository extends EntityRepository implements PasswordUpgraderInterface
41
{
42
    protected $anonymous_user;
43
44
    /**
45
     * Returns the anonymous user.
46
     * The result is cached, so the database is only called once, after the anonymous user was found.
47
     *
48
     * @return User|null
49
     */
50
    public function getAnonymousUser() : ?User
51
    {
52
        if ($this->anonymous_user === null) {
53
            $this->anonymous_user = $this->findOneBy([
54
                'id' => User::ID_ANONYMOUS,
55
            ]);
56
        }
57
58
        return $this->anonymous_user;
59
    }
60
61
    /**
62
     * Find a user by its name or its email. Useful for login or password reset purposes.
63
     * @param string $name_or_password The username or the email of the user that should be found
64
     * @return User|null The user if it is existing, null if no one matched the criteria
65
     */
66
    public function findByEmailOrName(string $name_or_password) : ?User
67
    {
68
        if (empty($name_or_password)) {
69
            return null;
70
        }
71
72
        $qb = $this->createQueryBuilder('u');
73
        $qb->select('u')
74
            ->where('u.name = (:name)')
75
            ->orWhere('u.email = (:email)');
76
77
        $qb->setParameters(['email' => $name_or_password, 'name' => $name_or_password]);
78
79
        try {
80
            return $qb->getQuery()->getOneOrNullResult();
81
        } catch (NonUniqueResultException $exception) {
82
            return null;
83
        }
84
    }
85
86
    /**
87
     * @inheritDoc
88
     */
89
    public function upgradePassword(UserInterface $user, string $newEncodedPassword): void
90
    {
91
        if ($user instanceof User) {
92
            $user->setPassword($newEncodedPassword);
93
            $this->getEntityManager()->flush($user);
94
        }
95
    }
96
}
97