-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSessionStore.php
More file actions
226 lines (182 loc) · 4.81 KB
/
SessionStore.php
File metadata and controls
226 lines (182 loc) · 4.81 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
<?php
namespace Gt\Session;
use ArrayIterator;
use Countable;
use Gt\TypeSafeGetter\NullableTypeSafeGetter;
use Gt\TypeSafeGetter\TypeSafeGetter;
/**
* @extends ArrayIterator<string, mixed>
* @SuppressWarnings("PHPMD.TooManyPublicMethods")
*/
class SessionStore extends ArrayIterator implements SessionStoreInterface {
use NullableTypeSafeGetter;
protected string $name;
protected Session $session;
/** @var array<SessionStore> */
protected array $stores;
protected ?SessionStore $parentStore;
public function __construct(
string $name,
Session $session,
?self $parentStore = null
) {
$this->name = $name;
$this->session = $session;
$this->parentStore = $parentStore;
$this->stores = [];
parent::__construct();
}
public function setData(string $key, mixed $value):void {
$this->offsetSet($key, $value);
}
public function getData(string $key):mixed {
if(!$this->offsetExists($key)) {
return null;
}
return $this->offsetGet($key);
}
public function containsData(string $key):bool {
return $this->offsetExists($key);
}
public function containsStore(string $key):bool {
return isset($this->stores[$key]);
}
public function removeData(string $key):void {
$this->offsetUnset($key);
}
public function removeStore(string $key):void {
unset($this->stores[$key]);
}
public function removeDataOrStore(string $key):void {
if($this->containsData($key)) {
$this->removeData($key);
}
if($this->containsStore($key)) {
$this->removeStore($key);
}
}
public function write():void {
$this->session->write();
}
public function getStore(
string $namespace,
bool $createIfNotExists = false
):?SessionStore {
$namespaceParts = explode(".", $namespace);
$topLevelStoreName = array_shift($namespaceParts);
$store = $this->stores[$topLevelStoreName] ?? null;
if(is_null($store)) {
if($createIfNotExists) {
return $this->createStore($namespace);
}
return null;
}
if(empty($namespaceParts)) {
return $store;
}
$namespace = implode(".", $namespaceParts);
return $store->getStore($namespace, $createIfNotExists);
}
public function setStore(
string $namespace
):void {
$namespaceParts = explode(".", $namespace);
$store = $this;
$nextStore = $store;
while (!empty($namespaceParts)) {
$storeName = array_shift($namespaceParts);
$store = $nextStore;
$nextStore = $store->getStore($storeName);
if (is_null($nextStore)) {
$nextStore = new SessionStore(
$storeName,
$this->session,
$store
);
$store->stores[$storeName] = $nextStore;
}
}
}
public function createStore(string $namespace):SessionStore {
$this->setStore($namespace);
return $this->getStore($namespace);
}
public function get(string $key):mixed {
$store = $this->getStoreFromKey($key);
$key = $this->normaliseKey($key);
return $store?->getData($key);
}
public function set(string $key, mixed $value):void {
$store = $this;
$lastDotPosition = strrpos($key, ".");
if ($lastDotPosition !== false) {
$namespace = $this->getNamespaceFromKey($key);
$store = $this->getStore($namespace);
if (is_null($store)) {
$store = $this->createStore($namespace);
}
}
if ($lastDotPosition !== false) {
$key = substr($key, $lastDotPosition + 1);
}
$store->setData($key, $value);
$store->write();
}
public function contains(string $key):bool {
$store = $this->getStoreFromKey($key);
$key = $this->normaliseKey($key);
return $store?->containsData($key) ?? false;
}
private function getStoreFromKey(string $key):?SessionStore {
$store = $this;
$lastDotPosition = strrpos($key, ".");
if ($lastDotPosition !== false) {
$namespace = $this->getNamespaceFromKey($key);
$store = $this->getStore($namespace);
}
if (is_null($store)) {
return null;
}
return $store;
}
private function normaliseKey(string $key):string {
$lastDotPosition = strrpos($key, ".");
if($lastDotPosition !== false) {
$key = substr($key, $lastDotPosition + 1);
}
return $key;
}
public function remove(?string $key = null):void {
if(is_null($key)) {
foreach(array_keys($this->stores) as $i) {
unset($this->stores[$i]);
}
$this->parentStore->remove($this->name);
return;
}
$store = $this;
$lastDotPosition = strrpos($key, ".");
if($lastDotPosition !== false) {
$namespace = $this->getNamespaceFromKey($key);
$store = $this->getStore($namespace);
}
if(is_null($store)) {
return;
}
if($lastDotPosition !== false) {
$key = substr($key, $lastDotPosition + 1);
}
$store->removeDataOrStore($key);
$store->write();
}
protected function getSession():Session {
return $this->session;
}
protected function getNamespaceFromKey(string $key):?string {
$lastDotPosition = strrpos($key, ".");
if ($lastDotPosition === false) {
return null;
}
return substr($key, 0, $lastDotPosition);
}
}