|
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 Symfony\Bridge\Doctrine\RegistryInterface; |
|
30
|
|
|
|
|
31
|
|
|
/** |
|
32
|
|
|
* @method User|null find($id, $lockMode = null, $lockVersion = null) |
|
33
|
|
|
* @method User|null findOneBy(array $criteria, array $orderBy = null) |
|
34
|
|
|
* @method User[] findAll() |
|
35
|
|
|
* @method User[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null) |
|
36
|
|
|
*/ |
|
37
|
|
|
class UserRepository extends EntityRepository |
|
38
|
|
|
{ |
|
39
|
|
|
protected $anonymous_user; |
|
40
|
|
|
|
|
41
|
|
|
/** |
|
42
|
|
|
* Returns the anonymous user. |
|
43
|
|
|
* The result is cached, so the database is only called once, after the anonymous user was found. |
|
44
|
|
|
* |
|
45
|
|
|
* @return User|null |
|
46
|
|
|
*/ |
|
47
|
|
|
public function getAnonymousUser() |
|
48
|
|
|
{ |
|
49
|
|
|
if ($this->anonymous_user === null) { |
|
50
|
|
|
$this->anonymous_user = $this->findOneBy([ |
|
51
|
|
|
'id' => User::ID_ANONYMOUS, |
|
52
|
|
|
]); |
|
53
|
|
|
} |
|
54
|
|
|
|
|
55
|
|
|
return $this->anonymous_user; |
|
56
|
|
|
} |
|
57
|
|
|
} |
|
58
|
|
|
|