-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathAuthorization.php
More file actions
236 lines (207 loc) · 4.42 KB
/
Authorization.php
File metadata and controls
236 lines (207 loc) · 4.42 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
<?php
namespace Utopia\Database\Validator;
use Utopia\Database\Validator\Authorization\Input;
use Utopia\Validator;
class Authorization extends Validator
{
/**
* @var bool
*/
protected bool $status = true;
/**
* Default value in case we need
* to reset Authorization status
*
* @var bool
*/
protected bool $statusDefault = true;
/**
* @var array<string, bool>
*/
private array $roles = [
'any' => true
];
/**
* @var string
*/
protected string $message = 'Authorization Error';
/**
* Get Description.
*
* Returns validator description
*
* @return string
*/
public function getDescription(): string
{
return $this->message;
}
/*
* Validation
*
* Returns true if valid or false if not.
*/
public function isValid(mixed $input): bool
{
if (!($input instanceof Input)) {
$this->message = 'Invalid input provided';
return false;
}
$permissions = $input->getPermissions();
$action = $input->getAction();
if (!$this->status) {
return true;
}
if (empty($permissions)) {
$this->message = 'No permissions provided for action \''.$action.'\'';
return false;
}
$permission = '-';
foreach ($permissions as $permission) {
if (\array_key_exists($permission, $this->roles)) {
return true;
}
}
$this->message = 'Missing "'.$action.'" permission for role "'.$permission.'". Only "'.\json_encode($this->getRoles()).'" scopes are allowed and "'.\json_encode($permissions).'" was given.';
return false;
}
/**
* @param string $role
* @return void
*/
public function addRole(string $role): void
{
$this->roles[$role] = true;
}
/**
* @param string $role
*
* @return void
*/
public function removeRole(string $role): void
{
unset($this->roles[$role]);
}
/**
* @return array<string>
*/
public function getRoles(): array
{
return \array_keys($this->roles);
}
/**
* @return void
*/
public function cleanRoles(): void
{
$this->roles = [];
}
/**
* @param string $role
*
* @return bool
*/
public function hasRole(string $role): bool
{
return (\array_key_exists($role, $this->roles));
}
/**
* Change default status.
* This will be used for the
* value set on the $this->reset() method
* @param bool $status
* @return void
*/
public function setDefaultStatus(bool $status): void
{
$this->statusDefault = $status;
$this->status = $status;
}
/**
* Change status
*
* @param bool $status
* @return void
*/
public function setStatus(bool $status): void
{
$this->status = $status;
}
/**
* Get status
*
* @return bool
*/
public function getStatus(): bool
{
return $this->status;
}
/**
* Skip Authorization
*
* Skips authorization for the code to be executed inside the callback
*
* @template T
* @param callable(): T $callback
* @return T
*/
public function skip(callable $callback): mixed
{
$initialStatus = $this->status;
$this->disable();
try {
return $callback();
} finally {
$this->status = $initialStatus;
}
}
/**
* Enable Authorization checks
*
* @return void
*/
public function enable(): void
{
$this->status = true;
}
/**
* Disable Authorization checks
*
* @return void
*/
public function disable(): void
{
$this->status = false;
}
/**
* Disable Authorization checks
*
* @return void
*/
public function reset(): void
{
$this->status = $this->statusDefault;
}
/**
* Is array
*
* Function will return true if object is array.
*
* @return bool
*/
public function isArray(): bool
{
return false;
}
/**
* Get Type
*
* Returns validator type.
*
* @return string
*/
public function getType(): string
{
return self::TYPE_ARRAY;
}
}