forked from codeigniter4/CodeIgniter4
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContext.php
More file actions
300 lines (257 loc) · 8.22 KB
/
Context.php
File metadata and controls
300 lines (257 loc) · 8.22 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
<?php
declare(strict_types=1);
/**
* This file is part of CodeIgniter 4 framework.
*
* (c) CodeIgniter Foundation <[email protected]>
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
namespace CodeIgniter\Context;
use CodeIgniter\Helpers\Array\ArrayHelper;
class Context
{
/**
* The data stored in the context.
*
* @var array<string, mixed>
*/
protected array $data;
/**
* The data that is stored, but not included in logs.
*
* @var array<string, mixed>
*/
private array $hiddenData;
/**
* Constructor
*/
public function __construct()
{
$this->data = [];
$this->hiddenData = [];
}
/**
* Set a key-value pair to the context.
*
* @param array<string, mixed>|string $key The key to identify the data. Can be a string or an array of key-value pairs.
* @param mixed $value The value to be stored in the context.
*
* @return $this
*/
public function set(array|string $key, mixed $value = null): self
{
if (is_array($key)) {
$this->data = array_merge($this->data, $key);
return $this;
}
$this->data[$key] = $value;
return $this;
}
/**
* Set a hidden key-value pair to the context. This data will not be included in logs.
*
* @param array<string, mixed>|string $key The key to identify the data. Can be a string or an array of key-value pairs.
* @param mixed $value The value to be stored in the context.
*
* @return $this
*/
public function setHidden(array|string $key, mixed $value = null): self
{
if (is_array($key)) {
$this->hiddenData = array_merge($this->hiddenData, $key);
return $this;
}
$this->hiddenData[$key] = $value;
return $this;
}
/**
* Get a value from the context by its key, or return a default value if the key does not exist.
* Supports dot notation for nested arrays (e.g., 'user.profile.name' to access $data['user']['profile']['name']).
*
* @param string $key The key to identify the data.
* @param mixed|null $default The default value to return if the key does not exist in the context.
*
* @return mixed The value associated with the key, or the default value if the key does not exist.
*/
public function get(string $key, mixed $default = null): mixed
{
return ArrayHelper::dotSearch($key, $this->data) ?? $default;
}
/**
* Get only the specified keys from the context. If a key does not exist, it will be ignored.
*
* @param list<string>|string $keys An array of keys to retrieve from the context.
*
* @return array<string, mixed> An array of key-value pairs for the specified keys that exist in the context.
*/
public function getOnly(array|string $keys): array
{
if (is_string($keys)) {
$keys = [$keys];
}
return array_filter($this->data, static fn ($k): bool => in_array($k, $keys, true), ARRAY_FILTER_USE_KEY);
}
/**
* Get all keys from the context except the specified keys.
*
* @param list<string>|string $keys An array of keys to exclude from the context.
*
* @return array<string, mixed> An array of key-value pairs for all keys in the context except the specified keys.
*/
public function getExcept(array|string $keys): array
{
if (is_string($keys)) {
$keys = [$keys];
}
return array_filter($this->data, static fn ($k): bool => ! in_array($k, $keys, true), ARRAY_FILTER_USE_KEY);
}
/**
* Get all data from the context
*
* @return array<string, mixed> An array of all key-value pairs in the context.
*/
public function getAll(): array
{
return $this->data;
}
/**
* Get a hidden value from the context by its key, or return a default value if the key does not exist.
*
* @param string $key The key to identify the data.
* @param mixed|null $default The default value to return if the key does not exist in the context.
*
* @return mixed The value associated with the key, or the default value if the key does not exist.
*/
public function getHidden(string $key, mixed $default = null): mixed
{
return ArrayHelper::dotSearch($key, $this->hiddenData) ?? $default;
}
/**
* Get only the specified keys from the hidden context. If a key does not exist, it will be ignored.
*
* @param list<string>|string $keys An array of keys to retrieve from the hidden context.
*
* @return array<string, mixed> An array of key-value pairs for the specified keys that exist in the hidden context.
*/
public function getOnlyHidden(array|string $keys): array
{
if (is_string($keys)) {
$keys = [$keys];
}
return array_filter($this->hiddenData, static fn ($k): bool => in_array($k, $keys, true), ARRAY_FILTER_USE_KEY);
}
/**
* Get all keys from the hidden context except the specified keys.
*
* @param list<string>|string $keys An array of keys to exclude from the hidden context.
*
* @return array<string, mixed> An array of key-value pairs for all keys in the hidden context except the specified keys.
*/
public function getExceptHidden(array|string $keys): array
{
if (is_string($keys)) {
$keys = [$keys];
}
return array_filter($this->hiddenData, static fn ($k): bool => ! in_array($k, $keys, true), ARRAY_FILTER_USE_KEY);
}
/**
* Get all hidden data from the context
*
* @return array<string, mixed> An array of all key-value pairs in the hidden context.
*/
public function getAllHidden(): array
{
return $this->hiddenData;
}
/**
* Check if a key exists in the context.
*
* @param string $key The key to check for existence in the context.
*
* @return bool True if the key exists in the context, false otherwise.
*/
public function has(string $key): bool
{
return ArrayHelper::dotKeyExists($key, $this->data);
}
/**
* Check if a key exists in the hidden context.
*
* @param string $key The key to check for existence in the hidden context.
*
* @return bool True if the key exists in the hidden context, false otherwise.
*/
public function hasHidden(string $key): bool
{
return ArrayHelper::dotKeyExists($key, $this->hiddenData);
}
/**
* Remove a key-value pair from the context by its key.
*
* @param list<string>|string $key The key to identify the data to be removed from the context.
*
* @return $this
*/
public function remove(array|string $key): self
{
if (is_array($key)) {
foreach ($key as $k) {
unset($this->data[$k]);
}
return $this;
}
unset($this->data[$key]);
return $this;
}
/**
* Remove a key-value pair from the hidden context by its key.
*
* @param list<string>|string $key The key to identify the data to be removed from the hidden context.
*
* @return $this
*/
public function removeHidden(array|string $key): self
{
if (is_array($key)) {
foreach ($key as $k) {
unset($this->hiddenData[$k]);
}
return $this;
}
unset($this->hiddenData[$key]);
return $this;
}
/**
* Clear all data from the context, including hidden data.
*
* @return $this
*/
public function clearAll(): self
{
$this->clear();
$this->clearHidden();
return $this;
}
/**
* Clear all data from the context.
*
* @return $this
*/
public function clear(): self
{
$this->data = [];
return $this;
}
/**
* Clear all hidden data from the context.
*
* @return $this
*/
public function clearHidden(): self
{
$this->hiddenData = [];
return $this;
}
}