forked from nette/security
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUser.php
More file actions
254 lines (202 loc) · 5.78 KB
/
Copy pathUser.php
File metadata and controls
254 lines (202 loc) · 5.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
<?php
/**
* This file is part of the Nette Framework (https://nette.org)
* Copyright (c) 2004 David Grudl (https://davidgrudl.com)
*/
declare(strict_types=1);
namespace Nette\Security;
use Nette;
/**
* User authentication and authorization.
*
* @property-read bool $loggedIn
* @property-read IIdentity $identity
* @property-read mixed $id
* @property-read array $roles
* @property-read int $logoutReason
* @property IAuthenticator $authenticator
* @property IAuthorizator $authorizator
*/
class User
{
use Nette\SmartObject;
/** @deprecated */
public const
MANUAL = IUserStorage::MANUAL,
INACTIVITY = IUserStorage::INACTIVITY;
/** @var string default role for unauthenticated user */
public $guestRole = 'guest';
/** @var string default role for authenticated user without own identity */
public $authenticatedRole = 'authenticated';
/** @var callable[] function (User $sender); Occurs when the user is successfully logged in */
public $onLoggedIn;
/** @var callable[] function (User $sender); Occurs when the user is logged out */
public $onLoggedOut;
/** @var IUserStorage Session storage for current user */
private $storage;
/** @var IAuthenticator|null */
private $authenticator;
/** @var IAuthorizator|null */
private $authorizator;
public function __construct(IUserStorage $storage, IAuthenticator $authenticator = null, IAuthorizator $authorizator = null)
{
$this->storage = $storage;
$this->authenticator = $authenticator;
$this->authorizator = $authorizator;
}
final public function getStorage(): IUserStorage
{
return $this->storage;
}
/********************* Authentication ****************d*g**/
/**
* Conducts the authentication process. Parameters are optional.
* @param string|IIdentity $user name or Identity
* @throws AuthenticationException if authentication was not successful
*/
public function login($user, string $password = null): void
{
$this->logout(true);
if (!$user instanceof IIdentity) {
$user = $this->getAuthenticator()->authenticate(func_get_args());
}
$this->storage->setIdentity($user);
$this->storage->setAuthenticated(true);
$this->onLoggedIn($this);
}
/**
* Logs out the user from the current session.
*/
final public function logout(bool $clearIdentity = false): void
{
if ($this->isLoggedIn()) {
$this->onLoggedOut($this);
$this->storage->setAuthenticated(false);
}
if ($clearIdentity) {
$this->storage->setIdentity(null);
}
}
/**
* Is this user authenticated?
*/
final public function isLoggedIn(): bool
{
return $this->storage->isAuthenticated();
}
/**
* Returns current user identity, if any.
*/
final public function getIdentity(): ?IIdentity
{
return $this->storage->getIdentity();
}
/**
* Returns current user ID, if any.
* @return mixed
*/
public function getId()
{
$identity = $this->getIdentity();
return $identity ? $identity->getId() : null;
}
/**
* Sets authentication handler.
* @return static
*/
public function setAuthenticator(IAuthenticator $handler)
{
$this->authenticator = $handler;
return $this;
}
/**
* Returns authentication handler.
*/
final public function getAuthenticator(bool $throw = true): ?IAuthenticator
{
if ($throw && !$this->authenticator) {
throw new Nette\InvalidStateException('Authenticator has not been set.');
}
return $this->authenticator;
}
/**
* Enables log out after inactivity (like '20 minutes'). Accepts flag IUserStorage::CLEAR_IDENTITY.
* @param string|null $expire
* @param int $flags
* @return static
*/
public function setExpiration($expire, /*int*/$flags = 0)
{
$clearIdentity = $flags === IUserStorage::CLEAR_IDENTITY;
if ($expire !== null && !is_string($expire)) {
trigger_error("Expiration should be a string like '20 minutes' etc.", E_USER_DEPRECATED);
}
if (is_bool($flags)) {
trigger_error(__METHOD__ . '() second parameter $whenBrowserIsClosed was removed.', E_USER_DEPRECATED);
}
if (func_num_args() > 2) {
$clearIdentity = $clearIdentity || func_get_arg(2);
trigger_error(__METHOD__ . '() third parameter is deprecated, use flag setExpiration($time, IUserStorage::CLEAR_IDENTITY)', E_USER_DEPRECATED);
}
$this->storage->setExpiration($expire, $clearIdentity ? IUserStorage::CLEAR_IDENTITY : 0);
return $this;
}
/**
* Why was user logged out?
*/
final public function getLogoutReason(): ?int
{
return $this->storage->getLogoutReason();
}
/********************* Authorization ****************d*g**/
/**
* Returns a list of effective roles that a user has been granted.
*/
public function getRoles(): array
{
if (!$this->isLoggedIn()) {
return [$this->guestRole];
}
$identity = $this->getIdentity();
return $identity && $identity->getRoles() ? $identity->getRoles() : [$this->authenticatedRole];
}
/**
* Is a user in the specified effective role?
*/
final public function isInRole(string $role): bool
{
return in_array($role, $this->getRoles(), true);
}
/**
* Has a user effective access to the Resource?
* If $resource is null, then the query applies to all resources.
*/
public function isAllowed($resource = IAuthorizator::ALL, $privilege = IAuthorizator::ALL): bool
{
foreach ($this->getRoles() as $role) {
if ($this->getAuthorizator()->isAllowed($role, $resource, $privilege)) {
return true;
}
}
return false;
}
/**
* Sets authorization handler.
* @return static
*/
public function setAuthorizator(IAuthorizator $handler)
{
$this->authorizator = $handler;
return $this;
}
/**
* Returns current authorization handler.
*/
final public function getAuthorizator(bool $throw = true): ?IAuthorizator
{
if ($throw && !$this->authorizator) {
throw new Nette\InvalidStateException('Authorizator has not been set.');
}
return $this->authorizator;
}
}