4
4
5
5
namespace GeneaLabs \LaravelGovernor \Http \Controllers ;
6
6
7
+ use Illuminate \View \View ;
8
+ use Illuminate \Support \Str ;
9
+ use Illuminate \Support \Collection ;
10
+ use GeneaLabs \LaravelGovernor \Role ;
7
11
use GeneaLabs \LaravelGovernor \Action ;
12
+ use GeneaLabs \LaravelGovernor \Entity ;
13
+ use Illuminate \Http \RedirectResponse ;
14
+ use GeneaLabs \LaravelGovernor \Traits \EntityManagement ;
8
15
use GeneaLabs \LaravelGovernor \Http \Requests \CreateRoleRequest ;
9
16
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 ;
15
17
16
18
class RolesController extends Controller
17
19
{
@@ -27,7 +29,6 @@ public function index(): View
27
29
$ roleClass = config ("genealabs-laravel-governor.models.role " );
28
30
$ this ->authorize ('viewAny ' , $ roleClass );
29
31
$ roles = (new $ roleClass )
30
- ->with ("users " )
31
32
->orderBy ("name " )
32
33
->get ();
33
34
@@ -50,10 +51,17 @@ public function create(): View
50
51
$ ownerships = collect (["not " => "" ])->merge ($ ownerships );
51
52
$ role = new $ roleClass ;
52
53
$ 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 );
54
61
55
62
return view ('genealabs-laravel-governor::roles.create ' )
56
63
->with ([
64
+ "customActions " => $ customActions ,
57
65
"entities " => $ entities ,
58
66
"ownerships " => $ ownerships ,
59
67
"permissionMatrix " => $ permissionMatrix ,
@@ -71,7 +79,6 @@ public function store(CreateRoleRequest $request): RedirectResponse
71
79
public function edit (Role $ role ): View
72
80
{
73
81
$ this ->authorize ('update ' , $ role );
74
-
75
82
$ entityClass = config ("genealabs-laravel-governor.models.entity " );
76
83
$ ownershipClass = config ("genealabs-laravel-governor.models.ownership " );
77
84
$ roleClass = config ("genealabs-laravel-governor.models.role " );
@@ -83,7 +90,7 @@ public function edit(Role $role): View
83
90
$ permissibleClass = request ("filter " ) === "team_id "
84
91
? $ teamClass
85
92
: $ roleClass ;
86
- $ role ->load ("permissions.action " , " permissions.entity " , " permissions.ownership " );
93
+ $ role ->load ("permissions " );
87
94
88
95
if (request ("owner " ) === "yes " ) {
89
96
return $ role
@@ -95,17 +102,26 @@ public function edit(Role $role): View
95
102
$ this ->parsePolicies ();
96
103
97
104
$ 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
+ )
99
115
->orderBy ("group_name " )
100
116
->orderBy ("name " )
101
117
->get ();
102
118
$ customActions = (new Action )
119
+ ->distinct ()
103
120
->get ()
104
- ->filter (function ($ action ): bool {
121
+ ->filter (function (Action $ action ): bool {
105
122
return $ action ->model_class !== "" ;
106
123
});
107
-
108
- $ permissionMatrix = $ this ->createPermissionMatrix ($ role , $ entities );
124
+ $ permissionMatrix = $ this ->createPermissionMatrix ($ role , $ entities , $ customActions );
109
125
$ ownerships = collect (["not " => "no " ])->merge ($ ownerships );
110
126
111
127
return view ('genealabs-laravel-governor::roles.edit ' , compact (
@@ -132,33 +148,37 @@ public function destroy(Role $role): RedirectResponse
132
148
return redirect ()->route ('genealabs.laravel-governor.roles.index ' );
133
149
}
134
150
135
- protected function createPermissionMatrix (Role $ role , Collection $ entities ): array
151
+ protected function createPermissionMatrix (Role $ role , Collection $ entities, Collection $ customActions ): array
136
152
{
137
153
$ permissionMatrix = [];
138
-
139
154
$ actionClass = app (config ('genealabs-laravel-governor.models.action ' ));
140
155
$ actions = (new $ actionClass )
141
156
->orderBy ("name " )
142
157
->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 " ;
155
174
$ groupName = ucwords (
156
175
$ entity ->group_name
157
176
?? "Ungrouped "
158
177
);
178
+
159
179
$ permissionMatrix [$ groupName ][$ entity ->name ][$ action ->name ] = $ selectedOwnership ;
160
- }
161
- }
180
+ });
181
+ });
162
182
163
183
return $ permissionMatrix ;
164
184
}
0 commit comments