-
-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathUser.php
More file actions
359 lines (282 loc) · 8.97 KB
/
Copy pathUser.php
File metadata and controls
359 lines (282 loc) · 8.97 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
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
<?php declare(strict_types=1);
/**
* This file is part of the Nette Framework (https://nette.org)
* Copyright (c) 2004 David Grudl (https://davidgrudl.com)
*/
namespace Nette\Security;
use Nette;
use Nette\Utils\Arrays;
use function func_get_args;
/**
* User authentication and authorization.
*
* @property-read bool $loggedIn
* @property-read ?IIdentity $identity
* @property-deprecated string|int|null $id
* @property-deprecated list<string> $roles
* @property-deprecated ?int $logoutReason
* @property-deprecated Authenticator $authenticator
* @property-deprecated Authorizator $authorizator
*/
class User
{
use Nette\SmartObject;
/** Log-out reason */
public const
LogoutManual = 1,
LogoutInactivity = 2;
/** @deprecated use User::LogoutManual */
public const LOGOUT_MANUAL = self::LogoutManual;
/** @deprecated use User::LogoutManual */
public const MANUAL = self::LogoutManual;
/** @deprecated use User::LogoutInactivity */
public const LOGOUT_INACTIVITY = self::LogoutInactivity;
/** @deprecated use User::LogoutInactivity */
public const INACTIVITY = self::LogoutInactivity;
/** role for an unauthenticated user, unless a guest identity provides its own roles */
public string $guestRole = 'guest';
/** default role for authenticated user without own identity */
public string $authenticatedRole = 'authenticated';
/** keep identity available (via getIdentity() and getId()) after logout or expiration; depends on the storage implementation */
public bool $persistIdentity = true;
/** @var array<callable(static): void> Occurs when the user is successfully logged in */
public array $onLoggedIn = [];
/** @var array<callable(static): void> Occurs when the user is logged out */
public array $onLoggedOut = [];
private ?IIdentity $identity = null;
private ?bool $authenticated = null;
private ?int $logoutReason = null;
private ?IIdentity $guestIdentity = null;
private bool $guestIdentityResolved = false;
public function __construct(
private readonly UserStorage $storage,
private ?Authenticator $authenticator = null,
private ?Authorizator $authorizator = null,
) {
}
final public function getStorage(): UserStorage
{
return $this->storage;
}
/********************* Authentication ****************d*g**/
/**
* Authenticates the user. Accepts username and password, or an IIdentity directly.
* @param string|IIdentity $username username or identity
* @throws AuthenticationException if authentication was not successful
*/
public function login(
string|IIdentity $username,
#[\SensitiveParameter]
?string $password = null,
): void
{
$this->logout(clearIdentity: true);
if ($username instanceof IIdentity) {
$this->identity = $username;
} else {
$authenticator = $this->getAuthenticator();
$this->identity = $authenticator->authenticate(...func_get_args());
}
$id = $this->authenticator instanceof IdentityHandler
? $this->authenticator->sleepIdentity($this->identity)
: $this->identity;
$this->storage->saveAuthentication($id);
$this->authenticated = true;
$this->logoutReason = null;
Arrays::invoke($this->onLoggedIn, $this);
}
/**
* Logs out the user from the current session. The identity is kept available afterwards,
* unless $clearIdentity is set or the $persistIdentity property is disabled.
*/
final public function logout(bool $clearIdentity = false): void
{
$clearIdentity = $clearIdentity || !$this->persistIdentity;
$logged = $this->isLoggedIn();
$this->storage->clearAuthentication($clearIdentity);
$this->authenticated = false;
$this->logoutReason = self::LogoutManual;
if ($logged) {
Arrays::invoke($this->onLoggedOut, $this);
}
$this->identity = $clearIdentity ? null : $this->identity;
}
/**
* Checks whether the user is authenticated.
*/
final public function isLoggedIn(): bool
{
$this->loadStoredData();
return (bool) $this->authenticated;
}
/**
* Returns the user identity. When not logged in, this is the retained identity (unless $persistIdentity
* is disabled) or a guest identity if the authenticator provides one; null otherwise.
*/
final public function getIdentity(): ?IIdentity
{
$this->loadStoredData();
return $this->identity ?? $this->resolveGuestIdentity();
}
private function loadStoredData(): void
{
if ($this->authenticated !== null) {
return;
}
(function (bool $state, ?IIdentity $id, ?int $reason) use (&$identity) {
$identity = $id;
$this->authenticated = $state;
$this->logoutReason = $reason;
})(...$this->storage->getState());
$identity = $identity && $this->authenticator instanceof IdentityHandler
? $this->authenticator->wakeupIdentity($identity)
: $identity;
$this->authenticated = $this->authenticated && $identity !== null;
$this->identity = !$this->authenticated && !$this->persistIdentity ? null : $identity;
}
/** Returns the guest identity provided by the IdentityHandler authenticator, or null. */
private function resolveGuestIdentity(): ?IIdentity
{
if (!$this->guestIdentityResolved) {
$this->guestIdentityResolved = true;
$this->guestIdentity = $this->authenticator instanceof IdentityHandler
? $this->authenticator->getGuestIdentity()
: null;
}
return $this->guestIdentity;
}
/**
* Returns the ID of the identity returned by getIdentity(), so it may be the retained or guest
* identity's ID even when not logged in; null if there is no identity.
*/
public function getId(): string|int|null
{
$identity = $this->getIdentity();
return $identity?->getId();
}
/**
* Discards the cached authentication state and identity, forcing a reload on next access.
*/
final public function refreshStorage(): void
{
$this->identity = $this->authenticated = $this->logoutReason = null;
$this->guestIdentity = null;
$this->guestIdentityResolved = false;
}
/**
* Sets authentication handler.
*/
public function setAuthenticator(Authenticator $handler): static
{
$this->authenticator = $handler;
$this->guestIdentityResolved = false;
return $this;
}
/**
* Returns authentication handler.
*/
final public function getAuthenticator(): Authenticator
{
if (!$this->authenticator) {
throw new Nette\InvalidStateException('Authenticator has not been set.');
}
return $this->authenticator;
}
/**
* Returns authentication handler, or null if none is set.
*/
final public function getAuthenticatorIfExists(): ?Authenticator
{
return $this->authenticator;
}
/** @deprecated */
final public function hasAuthenticator(): bool
{
return (bool) $this->authenticator;
}
/**
* Enables log out after inactivity (like '20 minutes'). The identity is kept available afterwards,
* unless $clearIdentity is set or the $persistIdentity property is disabled.
*/
public function setExpiration(?string $expire, bool $clearIdentity = false): static
{
$this->storage->setExpiration($expire, $clearIdentity || !$this->persistIdentity);
return $this;
}
/**
* Returns the logout reason: LogoutManual or LogoutInactivity, or null if not applicable.
*/
final public function getLogoutReason(): ?int
{
return $this->logoutReason;
}
/********************* Authorization ****************d*g**/
/**
* Returns effective roles derived from the login state, not from the (possibly retained) identity.
* Logged in: the identity's roles, or authenticatedRole. Otherwise: the guest identity's roles, or guestRole.
* @return list<string>
*/
public function getRoles(): array
{
if (!$this->isLoggedIn()) {
return $this->resolveGuestIdentity()?->getRoles() ?? [$this->guestRole];
}
$identity = $this->getIdentity();
return $identity?->getRoles() ?? [$this->authenticatedRole];
}
/**
* Checks whether the user has the specified effective role.
*/
final public function isInRole(string $role): bool
{
foreach ($this->getRoles() as $r) {
if ($role === ($r instanceof Role ? $r->getRoleId() : $r)) {
return true;
}
}
return false;
}
/**
* Checks whether the user has access to the given resource and privilege.
* Null means all resources or all privileges.
*/
public function isAllowed(mixed $resource = Authorizator::All, mixed $privilege = Authorizator::All): bool
{
foreach ($this->getRoles() as $role) {
if ($this->getAuthorizator()->isAllowed($role, $resource, $privilege)) {
return true;
}
}
return false;
}
/**
* Sets authorization handler.
*/
public function setAuthorizator(Authorizator $handler): static
{
$this->authorizator = $handler;
return $this;
}
/**
* Returns current authorization handler.
*/
final public function getAuthorizator(): Authorizator
{
if (!$this->authorizator) {
throw new Nette\InvalidStateException('Authorizator has not been set.');
}
return $this->authorizator;
}
/**
* Returns authorization handler, or null if none is set.
*/
final public function getAuthorizatorIfExists(): ?Authorizator
{
return $this->authorizator;
}
/** @deprecated */
final public function hasAuthorizator(): bool
{
return (bool) $this->authorizator;
}
}