Skip to content

Commit 173aeac

Browse files
committed
Fixed caching of custom actions and loading of role creation and edit pages.
1 parent bb37898 commit 173aeac

File tree

4 files changed

+63
-31
lines changed

4 files changed

+63
-31
lines changed

.vscode/settings.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"cSpell.words": [
3+
"GeneaLabs",
4+
"Laravel"
5+
]
6+
}

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Change Log
22
[Package Checklist](http://phppackagechecklist.com/#1,2,3,4,6,7,8,9,10,11,12,13,14)
33

4+
## [0.19.8] - 2022-11-17
5+
### Fixed
6+
- caching of custom actions.
7+
- loading of role creation and edit pages.
8+
49
## [0.19.5] - 2022-07-20
510
### Removed
611
- creation of SuperAdmin permission records.

src/Http/Controllers/RolesController.php

+49-29
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,16 @@
44

55
namespace GeneaLabs\LaravelGovernor\Http\Controllers;
66

7+
use Illuminate\View\View;
8+
use Illuminate\Support\Str;
9+
use Illuminate\Support\Collection;
10+
use GeneaLabs\LaravelGovernor\Role;
711
use GeneaLabs\LaravelGovernor\Action;
12+
use GeneaLabs\LaravelGovernor\Entity;
13+
use Illuminate\Http\RedirectResponse;
14+
use GeneaLabs\LaravelGovernor\Traits\EntityManagement;
815
use GeneaLabs\LaravelGovernor\Http\Requests\CreateRoleRequest;
916
use GeneaLabs\LaravelGovernor\Http\Requests\UpdateRoleRequest;
10-
use GeneaLabs\LaravelGovernor\Role;
11-
use GeneaLabs\LaravelGovernor\Traits\EntityManagement;
12-
use Illuminate\Http\RedirectResponse;
13-
use Illuminate\Support\Collection;
14-
use Illuminate\View\View;
1517

1618
class RolesController extends Controller
1719
{
@@ -27,7 +29,6 @@ public function index(): View
2729
$roleClass = config("genealabs-laravel-governor.models.role");
2830
$this->authorize('viewAny', $roleClass);
2931
$roles = (new $roleClass)
30-
->with("users")
3132
->orderBy("name")
3233
->get();
3334

@@ -50,10 +51,17 @@ public function create(): View
5051
$ownerships = collect(["not" => ""])->merge($ownerships);
5152
$role = new $roleClass;
5253
$this->authorize('create', $role);
53-
$permissionMatrix = $this->createPermissionMatrix($role, $entities);
54+
$customActions = (new Action)
55+
->distinct()
56+
->get()
57+
->filter(function (Action $action): bool {
58+
return $action->model_class !== "";
59+
});
60+
$permissionMatrix = $this->createPermissionMatrix($role, $entities, $customActions);
5461

5562
return view('genealabs-laravel-governor::roles.create')
5663
->with([
64+
"customActions" => $customActions,
5765
"entities" => $entities,
5866
"ownerships" => $ownerships,
5967
"permissionMatrix" => $permissionMatrix,
@@ -71,7 +79,6 @@ public function store(CreateRoleRequest $request): RedirectResponse
7179
public function edit(Role $role): View
7280
{
7381
$this->authorize('update', $role);
74-
7582
$entityClass = config("genealabs-laravel-governor.models.entity");
7683
$ownershipClass = config("genealabs-laravel-governor.models.ownership");
7784
$roleClass = config("genealabs-laravel-governor.models.role");
@@ -83,7 +90,7 @@ public function edit(Role $role): View
8390
$permissibleClass = request("filter") === "team_id"
8491
? $teamClass
8592
: $roleClass;
86-
$role->load("permissions.action", "permissions.entity", "permissions.ownership");
93+
$role->load("permissions");
8794

8895
if (request("owner") === "yes") {
8996
return $role
@@ -95,17 +102,26 @@ public function edit(Role $role): View
95102
$this->parsePolicies();
96103

97104
$entities = (new $entityClass)
98-
->whereNotIn("name", ['Permission (Laravel Governor)', 'Entity (Laravel Governor)', "Action (Laravel Governor)", "Ownership (Laravel Governor)", "Team Invitation (Laravel Governor)"])
105+
->whereNotIn(
106+
"name",
107+
[
108+
"Action (Laravel Governor)",
109+
"Entity (Laravel Governor)",
110+
"Ownership (Laravel Governor)",
111+
"Permission (Laravel Governor)",
112+
"Team Invitation (Laravel Governor)",
113+
],
114+
)
99115
->orderBy("group_name")
100116
->orderBy("name")
101117
->get();
102118
$customActions = (new Action)
119+
->distinct()
103120
->get()
104-
->filter(function ($action): bool {
121+
->filter(function (Action $action): bool {
105122
return $action->model_class !== "";
106123
});
107-
108-
$permissionMatrix = $this->createPermissionMatrix($role, $entities);
124+
$permissionMatrix = $this->createPermissionMatrix($role, $entities, $customActions);
109125
$ownerships = collect(["not" => "no"])->merge($ownerships);
110126

111127
return view('genealabs-laravel-governor::roles.edit', compact(
@@ -132,33 +148,37 @@ public function destroy(Role $role): RedirectResponse
132148
return redirect()->route('genealabs.laravel-governor.roles.index');
133149
}
134150

135-
protected function createPermissionMatrix(Role $role, Collection $entities): array
151+
protected function createPermissionMatrix(Role $role, Collection $entities, Collection $customActions): array
136152
{
137153
$permissionMatrix = [];
138-
139154
$actionClass = app(config('genealabs-laravel-governor.models.action'));
140155
$actions = (new $actionClass)
141156
->orderBy("name")
142157
->get();
143-
144-
foreach ($entities as $entity) {
145-
foreach ($actions as $action) {
146-
$selectedOwnership = 'no';
147-
148-
foreach ($role->permissions as $permissioncheck) {
149-
if (($permissioncheck->entity->name === $entity->name)
150-
&& ($permissioncheck->action->name === $action->name)) {
151-
$selectedOwnership = $permissioncheck->ownership->name;
152-
}
153-
}
154-
158+
$entities->each(function (Entity $entity) use ($actions, $customActions, &$permissionMatrix, $role) {
159+
// dd($customActions->where("entity", $entity)->first());
160+
$customActions = $customActions->where("entity", $entity);
161+
$permissions = $role->permissions
162+
->where("entity_name", $entity->name);
163+
$actions
164+
->filter(function (Action $action) use ($entity): bool {
165+
return Str::contains($action->name, "\\{$entity->name}:")
166+
|| ! Str::contains($action->name, ":");
167+
})
168+
->each(function (Action $action) use ($customActions, $entity, $permissions, &$permissionMatrix) {
169+
$selectedOwnership = $permissions
170+
->where("action_name", $action->name)
171+
->first()
172+
?->ownership_name
173+
?? "no";
155174
$groupName = ucwords(
156175
$entity->group_name
157176
?? "Ungrouped"
158177
);
178+
159179
$permissionMatrix[$groupName][$entity->name][$action->name] = $selectedOwnership;
160-
}
161-
}
180+
});
181+
});
162182

163183
return $permissionMatrix;
164184
}

src/Http/Middleware/ParseCustomPolicyActions.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ protected function registerCustomPolicyActions(): void
3232
return collect();
3333
}
3434

35-
return $this->getCustomActionMethods($policyClass)
35+
return $this
36+
->getCustomActionMethods($policyClass)
3637
->map(function (string $method) use ($modelClass): Action {
3738
$action = app("governor-actions")
3839
->where("name", "{$modelClass}:{$method}")
@@ -55,7 +56,7 @@ protected function registerCustomPolicyActions(): void
5556

5657
protected function getCustomActionMethods(string $policyClass): Collection
5758
{
58-
return cache()->remember("genealabs:laravel-governor:custom-action-methods", 300, function () use ($policyClass): Collection {
59+
return cache()->remember("genealabs:laravel-governor:custom-action-methods:policy-{$policyClass}", 300, function () use ($policyClass): Collection {
5960
$parentClass = new ReflectionClass(get_parent_class($policyClass));
6061
$parentMethods = collect($parentClass->getMethods(ReflectionMethod::IS_PUBLIC))
6162
->pluck("name");

0 commit comments

Comments
 (0)