-
-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathUserStorage.php
More file actions
179 lines (137 loc) · 3.7 KB
/
UserStorage.php
File metadata and controls
179 lines (137 loc) · 3.7 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
<?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\Http;
use Nette;
use Nette\Security\IIdentity;
/**
* @deprecated by Nette\Bridges\SecurityHttp\SessionStorage
*/
class UserStorage implements Nette\Security\IUserStorage
{
use Nette\SmartObject;
private string $namespace = '';
private ?SessionSection $sessionSection = null;
public function __construct(
private readonly Session $sessionHandler,
) {
}
/**
* Sets the authenticated status of this user.
*/
public function setAuthenticated(bool $state): self
{
$section = $this->getSessionSection(true);
$section->authenticated = $state;
// Session Fixation defence
$this->sessionHandler->regenerateId();
if ($state) {
$section->reason = null;
$section->authTime = time(); // informative value
} else {
$section->reason = self::MANUAL;
$section->authTime = null;
}
return $this;
}
/**
* Is this user authenticated?
*/
public function isAuthenticated(): bool
{
$session = $this->getSessionSection(false);
return $session && $session->authenticated;
}
/**
* Sets the user identity.
*/
public function setIdentity(?IIdentity $identity): self
{
$this->getSessionSection(true)->identity = $identity;
return $this;
}
/**
* Returns current user identity, if any.
*/
public function getIdentity(): ?Nette\Security\IIdentity
{
$session = $this->getSessionSection(false);
return $session ? $session->identity : null;
}
/**
* Changes namespace; allows more users to share a session.
*/
public function setNamespace(string $namespace): self
{
if ($this->namespace !== $namespace) {
$this->namespace = $namespace;
$this->sessionSection = null;
}
return $this;
}
/**
* Returns current namespace.
*/
public function getNamespace(): string
{
return $this->namespace;
}
/**
* Enables log out after inactivity. Accepts flag IUserStorage::CLEAR_IDENTITY.
*/
public function setExpiration(?string $time, int $flags = 0): self
{
$section = $this->getSessionSection(true);
if ($time) {
$time = Nette\Utils\DateTime::from($time)->format('U');
$section->expireTime = $time;
$section->expireDelta = $time - time();
} else {
unset($section->expireTime, $section->expireDelta);
}
$section->expireIdentity = (bool) ($flags & self::CLEAR_IDENTITY);
$section->setExpiration($time, 'foo'); // time check
return $this;
}
/**
* Why was user logged out?
*/
public function getLogoutReason(): ?int
{
$session = $this->getSessionSection(false);
return $session ? $session->reason : null;
}
/**
* Returns and initializes $this->sessionSection.
*/
protected function getSessionSection(bool $need): ?SessionSection
{
if ($this->sessionSection !== null) {
return $this->sessionSection;
}
if (!$need && !$this->sessionHandler->exists()) {
return null;
}
$this->sessionSection = $section = $this->sessionHandler->getSection('Nette.Http.UserStorage/' . $this->namespace);
if (!$section->identity instanceof IIdentity || !is_bool($section->authenticated)) {
$section->remove();
}
if ($section->authenticated && $section->expireDelta > 0) { // check time expiration
if ($section->expireTime < time()) {
$section->reason = self::INACTIVITY;
$section->authenticated = false;
if ($section->expireIdentity) {
unset($section->identity);
}
}
$section->expireTime = time() + $section->expireDelta; // sliding expiration
}
if (!$section->authenticated) {
unset($section->expireTime, $section->expireDelta, $section->expireIdentity, $section->authTime);
}
return $this->sessionSection;
}
}