-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathLaravelDatabaseAdapter.php
386 lines (353 loc) · 10.4 KB
/
LaravelDatabaseAdapter.php
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
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
<?php
/**
* @desc Policy Adapter
* @author Tinywan(ShaoBo Wan)
* @date 2022/01/12 10:37
*/
declare(strict_types=1);
namespace Casbin\WebmanPermission\Adapter;
use Casbin\Model\Model;
use Casbin\Persist\Adapter;
use Casbin\Persist\AdapterHelper;
use Casbin\Persist\UpdatableAdapter;
use Casbin\Persist\BatchAdapter;
use Casbin\Persist\FilteredAdapter;
use Casbin\Persist\Adapters\Filter;
use Casbin\Exceptions\InvalidFilterTypeException;
use Casbin\WebmanPermission\Model\LaravelRuleModel;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Eloquent\Collection;
use Illuminate\Support\Facades\DB;
use Throwable;
/**
* DatabaseAdapter.
*
* @author techlee@qq.com
*/
class LaravelDatabaseAdapter implements Adapter, UpdatableAdapter, BatchAdapter, FilteredAdapter
{
use AdapterHelper;
/**
* @var bool
*/
private bool $filtered = false;
/**
* RuleModel model.
*
* @var LaravelRuleModel
*/
protected LaravelRuleModel $model;
/**
* LaravelDatabaseAdapter constructor.
*
* @param string|null $driver
*/
public function __construct(?string $driver = null)
{
$this->model = new LaravelRuleModel([],$driver);
}
/**
* Filter the rule.
*
* @param array $rule
* @return array
*/
public function filterRule(array $rule): array
{
$rule = array_values($rule);
$i = count($rule) - 1;
for (; $i >= 0; $i--) {
if ($rule[$i] != '' && !is_null($rule[$i])) {
break;
}
}
return array_slice($rule, 0, $i + 1);
}
/**
* savePolicyLine function.
*
* @param string $ptype
* @param array $rule
*
* @return void
*/
public function savePolicyLine(string $ptype, array $rule)
{
$col['ptype'] = $ptype;
foreach ($rule as $key => $value) {
$col['v' . $key] = $value;
}
$this->model->updateOrCreate($col);
}
/**
* loads all policy rules from the storage.
*
* @param Model $model
*/
public function loadPolicy(Model $model): void
{
$rows = $this->model->select(['ptype', 'v0', 'v1', 'v2', 'v3', 'v4', 'v5'])->get()->toArray();;
foreach ($rows as $row) {
$this->loadPolicyArray($this->filterRule($row), $model);
}
}
/**
* saves all policy rules to the storage.
*
* @param Model $model
*/
public function savePolicy(Model $model): void
{
foreach ($model['p'] as $ptype => $ast) {
foreach ($ast->policy as $rule) {
$this->savePolicyLine($ptype, $rule);
}
}
foreach ($model['g'] as $ptype => $ast) {
foreach ($ast->policy as $rule) {
$this->savePolicyLine($ptype, $rule);
}
}
}
/**
* adds a policy rule to the storage.
* This is part of the Auto-Save feature.
*
* @param string $sec
* @param string $ptype
* @param array $rule
*/
public function addPolicy(string $sec, string $ptype, array $rule): void
{
$this->savePolicyLine($ptype, $rule);
}
/**
* Adds a policy rules to the storage.
* This is part of the Auto-Save feature.
*
* @param string $sec
* @param string $ptype
* @param string[][] $rules
*/
public function addPolicies(string $sec, string $ptype, array $rules): void
{
foreach ($rules as $rule) {
$temp = ['ptype' => $ptype];
foreach ($rule as $key => $value) {
$temp['v' . $key] = $value;
}
$this->model->updateOrCreate($temp);
}
}
/**
* This is part of the Auto-Save feature.
*
* @param string $sec
* @param string $ptype
* @param array $rule
*/
public function removePolicy(string $sec, string $ptype, array $rule): void
{
$instance = $this->model->where('ptype', $ptype);
foreach ($rule as $key => $value) {
$instance->where('v' . $key, $value);
}
$data = $instance->get();
foreach ($data as $item) {
$item->delete();
}
}
/**
* @param string $sec
* @param string $ptype
* @param int $fieldIndex
* @param string|null ...$fieldValues
* @return array
* @throws Throwable
*/
public function _removeFilteredPolicy(string $sec, string $ptype, int $fieldIndex, ?string ...$fieldValues): array
{
$removedRules = [];
$data = $this->getCollection($ptype, $fieldIndex, $fieldValues);
foreach ($data as $model) {
$item = $model->hidden(['id', 'ptype'])->toArray();
$item = $this->filterRule($item);
$removedRules[] = $item;
}
return $removedRules;
}
/**
* Removes policy rules from the storage.
* This is part of the Auto-Save feature.
*
* @param string $sec
* @param string $ptype
* @param string[][] $rules
*/
public function removePolicies(string $sec, string $ptype, array $rules): void
{
DB::transaction(function () use ($sec, $ptype, $rules) {
foreach ($rules as $rule) {
$this->removePolicy($sec, $ptype, $rule);
}
});
}
/**
* RemoveFilteredPolicy removes policy rules that match the filter from the storage.
* This is part of the Auto-Save feature.
*
* @param string $sec
* @param string $ptype
* @param int $fieldIndex
* @param string ...$fieldValues
*/
public function removeFilteredPolicy(string $sec, string $ptype, int $fieldIndex, string ...$fieldValues): void
{
$data = $this->getCollection($ptype, $fieldIndex, $fieldValues);
foreach ($data as $item) {
$item->delete();
}
}
/**
* Updates a policy rule from storage.
* This is part of the Auto-Save feature.
*
* @param string $sec
* @param string $ptype
* @param string[] $oldRule
* @param string[] $newPolicy
*/
public function updatePolicy(string $sec, string $ptype, array $oldRule, array $newPolicy): void
{
$instance = $this->model->where('ptype', $ptype);
foreach ($oldRule as $key => $value) {
$instance->where('v' . $key, $value);
}
$instance = $instance->first();
$update = [];
foreach ($newPolicy as $key => $value) {
$update['v' . $key] = $value;
}
$instance->fill($update);
$instance->save();
}
/**
* UpdatePolicies updates some policy rules to storage, like DB, redis.
*
* @param string $sec
* @param string $ptype
* @param string[][] $oldRules
* @param string[][] $newRules
* @return void
*/
public function updatePolicies(string $sec, string $ptype, array $oldRules, array $newRules): void
{
DB::transaction(function () use ($sec, $ptype, $oldRules, $newRules) {
foreach ($oldRules as $i => $oldRule) {
$this->updatePolicy($sec, $ptype, $oldRule, $newRules[$i]);
}
});
}
/**
* UpdateFilteredPolicies deletes old rules and adds new rules.
*
* @param string $sec
* @param string $ptype
* @param array $newPolicies
* @param integer $fieldIndex
* @param string ...$fieldValues
* @return array
*/
public function updateFilteredPolicies(string $sec, string $ptype, array $newPolicies, int $fieldIndex, string ...$fieldValues): array
{
$oldRules = [];
DB::transaction(function () use ($sec, $ptype, $fieldIndex, $fieldValues, $newPolicies, &$oldRules) {
$oldRules = $this->_removeFilteredPolicy($sec, $ptype, $fieldIndex, ...$fieldValues);
$this->addPolicies($sec, $ptype, $newPolicies);
});
return $oldRules;
}
/**
* Returns true if the loaded policy has been filtered.
*
* @return bool
*/
public function isFiltered(): bool
{
return $this->filtered;
}
/**
* Sets filtered parameter.
*
* @param bool $filtered
*/
public function setFiltered(bool $filtered): void
{
$this->filtered = $filtered;
}
/**
* Loads only policy rules that match the filter.
*
* @param Model $model
* @param mixed $filter
*
* @throws InvalidFilterTypeException
*/
public function loadFilteredPolicy(Model $model, $filter): void
{
$instance = $this->model;
if (is_string($filter)) {
$instance->whereRaw($filter);
}
elseif ($filter instanceof Filter) {
$where = [];
foreach ($filter->p as $k => $v) {
$where[$v] = $filter->g[$k];
}
$instance->where($where);
}
elseif ($filter instanceof Closure) {
$instance = $instance->where($filter);
}
else {
throw new InvalidFilterTypeException('invalid filter type');
}
$rows = $instance->get()->makeHidden(['created_at', 'updated_at', 'id'])->toArray();
if ($rows) {
foreach ($rows as $row) {
$row = array_filter($row, function ($value) {
return !is_null($value) && $value !== '';
});
$line = implode(
', ',
array_filter($row, function ($val) {
return '' != $val && !is_null($val);
})
);
$this->loadPolicyLine(trim($line), $model);
}
}
$this->setFiltered(true);
}
/**
* @param string $ptype
* @param int $fieldIndex
* @param array $fieldValues
*
* @return Builder[]|Collection
*/
protected function getCollection(string $ptype, int $fieldIndex, array $fieldValues): Collection|array
{
$where = [
'ptype' => $ptype,
];
foreach (range(0, 5) as $value) {
if ($fieldIndex <= $value && $value < $fieldIndex + count($fieldValues)) {
if ('' != $fieldValues[$value - $fieldIndex]) {
$where['v' . $value] = $fieldValues[$value - $fieldIndex];
}
}
}
return $this->model->where($where)->get();
}
}