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
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
|
<?php
/**
* UserFrosting (http://www.userfrosting.com)
*
* @link https://github.com/userfrosting/UserFrosting
* @license https://github.com/userfrosting/UserFrosting/blob/master/licenses/UserFrosting.md (MIT License)
*/
namespace UserFrosting\Sprinkle\Admin\Controller;
use Carbon\Carbon;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Capsule\Manager as Capsule;
use Psr\Http\Message\ResponseInterface as Response;
use Psr\Http\Message\ServerRequestInterface as Request;
use Slim\Exception\NotFoundException;
use UserFrosting\Fortress\RequestDataTransformer;
use UserFrosting\Fortress\RequestSchema;
use UserFrosting\Fortress\ServerSideValidator;
use UserFrosting\Fortress\Adapter\JqueryValidationAdapter;
use UserFrosting\Sprinkle\Account\Database\Models\Role;
use UserFrosting\Sprinkle\Account\Database\Models\User;
use UserFrosting\Sprinkle\Core\Controller\SimpleController;
use UserFrosting\Sprinkle\Core\Facades\Debug;
use UserFrosting\Support\Exception\BadRequestException;
use UserFrosting\Support\Exception\ForbiddenException;
use UserFrosting\Support\Exception\HttpException;
/**
* Controller class for role-related requests, including listing roles, CRUD for roles, etc.
*
* @author Alex Weissman (https://alexanderweissman.com)
*/
class RoleController extends SimpleController
{
/**
* Processes the request to create a new role.
*
* Processes the request from the role creation form, checking that:
* 1. The role name and slug are not already in use;
* 2. The user has permission to create a new role;
* 3. The submitted data is valid.
* This route requires authentication (and should generally be limited to admins or the root user).
* Request type: POST
* @see getModalCreateRole
*/
public function create($request, $response, $args)
{
// Get POST parameters: name, slug, description
$params = $request->getParsedBody();
/** @var UserFrosting\Sprinkle\Account\Authorize\AuthorizationManager $authorizer */
$authorizer = $this->ci->authorizer;
/** @var UserFrosting\Sprinkle\Account\Database\Models\User $currentUser */
$currentUser = $this->ci->currentUser;
// Access-controlled page
if (!$authorizer->checkAccess($currentUser, 'create_role')) {
throw new ForbiddenException();
}
/** @var UserFrosting\Sprinkle\Core\MessageStream $ms */
$ms = $this->ci->alerts;
// Load the request schema
$schema = new RequestSchema('schema://requests/role/create.yaml');
// Whitelist and set parameter defaults
$transformer = new RequestDataTransformer($schema);
$data = $transformer->transform($params);
$error = false;
// Validate request data
$validator = new ServerSideValidator($schema, $this->ci->translator);
if (!$validator->validate($data)) {
$ms->addValidationErrors($validator);
$error = true;
}
/** @var UserFrosting\Sprinkle\Core\Util\ClassMapper $classMapper */
$classMapper = $this->ci->classMapper;
// Check if name or slug already exists
if ($classMapper->staticMethod('role', 'where', 'name', $data['name'])->first()) {
$ms->addMessageTranslated('danger', 'ROLE.NAME_IN_USE', $data);
$error = true;
}
if ($classMapper->staticMethod('role', 'where', 'slug', $data['slug'])->first()) {
$ms->addMessageTranslated('danger', 'SLUG_IN_USE', $data);
$error = true;
}
if ($error) {
return $response->withStatus(400);
}
/** @var UserFrosting\Config\Config $config */
$config = $this->ci->config;
// All checks passed! log events/activities and create role
// Begin transaction - DB will be rolled back if an exception occurs
Capsule::transaction( function() use ($classMapper, $data, $ms, $config, $currentUser) {
// Create the role
$role = $classMapper->createInstance('role', $data);
// Store new role to database
$role->save();
// Create activity record
$this->ci->userActivityLogger->info("User {$currentUser->user_name} created role {$role->name}.", [
'type' => 'role_create',
'user_id' => $currentUser->id
]);
$ms->addMessageTranslated('success', 'ROLE.CREATION_SUCCESSFUL', $data);
});
return $response->withStatus(200);
}
/**
* Processes the request to delete an existing role.
*
* Deletes the specified role.
* Before doing so, checks that:
* 1. The user has permission to delete this role;
* 2. The role is not a default for new users;
* 3. The role does not have any associated users;
* 4. The submitted data is valid.
* This route requires authentication (and should generally be limited to admins or the root user).
* Request type: DELETE
*/
public function delete($request, $response, $args)
{
$role = $this->getRoleFromParams($args);
// If the role doesn't exist, return 404
if (!$role) {
throw new NotFoundException($request, $response);
}
/** @var UserFrosting\Sprinkle\Account\Authorize\AuthorizationManager $authorizer */
$authorizer = $this->ci->authorizer;
/** @var UserFrosting\Sprinkle\Account\Database\Models\User $currentUser */
$currentUser = $this->ci->currentUser;
// Access-controlled page
if (!$authorizer->checkAccess($currentUser, 'delete_role', [
'role' => $role
])) {
throw new ForbiddenException();
}
/** @var UserFrosting\Sprinkle\Core\Util\ClassMapper $classMapper */
$classMapper = $this->ci->classMapper;
// Check that we are not deleting a default role
$defaultRoleSlugs = $classMapper->staticMethod('role', 'getDefaultSlugs');
// Need to use loose comparison for now, because some DBs return `id` as a string
if (in_array($role->slug, $defaultRoleSlugs)) {
$e = new BadRequestException();
$e->addUserMessage('ROLE.DELETE_DEFAULT');
throw $e;
}
// Check if there are any users associated with this role
$countUsers = $role->users()->count();
if ($countUsers > 0) {
$e = new BadRequestException();
$e->addUserMessage('ROLE.HAS_USERS');
throw $e;
}
$roleName = $role->name;
// Begin transaction - DB will be rolled back if an exception occurs
Capsule::transaction( function() use ($role, $roleName, $currentUser) {
$role->delete();
unset($role);
// Create activity record
$this->ci->userActivityLogger->info("User {$currentUser->user_name} deleted role {$roleName}.", [
'type' => 'role_delete',
'user_id' => $currentUser->id
]);
});
/** @var UserFrosting\Sprinkle\Core\MessageStream $ms */
$ms = $this->ci->alerts;
$ms->addMessageTranslated('success', 'ROLE.DELETION_SUCCESSFUL', [
'name' => $roleName
]);
return $response->withStatus(200);
}
/**
* Returns info for a single role, along with associated permissions.
*
* This page requires authentication.
* Request type: GET
*/
public function getInfo($request, $response, $args)
{
/** @var UserFrosting\Sprinkle\Account\Authorize\AuthorizationManager */
$authorizer = $this->ci->authorizer;
/** @var UserFrosting\Sprinkle\Account\Database\Models\User $currentUser */
$currentUser = $this->ci->currentUser;
// Access-controlled page
if (!$authorizer->checkAccess($currentUser, 'uri_roles')) {
throw new ForbiddenException();
}
$slug = $args['slug'];
/** @var UserFrosting\Sprinkle\Core\Util\ClassMapper $classMapper */
$classMapper = $this->ci->classMapper;
$role = $classMapper->staticMethod('role', 'where', 'slug', $slug)->first();
// If the role doesn't exist, return 404
if (!$role) {
throw new NotFoundException($request, $response);
}
// Get role
$result = $role->load('permissions')->toArray();
// Be careful how you consume this data - it has not been escaped and contains untrusted user-supplied content.
// For example, if you plan to insert it into an HTML DOM, you must escape it on the client side (or use client-side templating).
return $response->withJson($result, 200, JSON_PRETTY_PRINT);
}
/**
* Returns a list of Roles
*
* Generates a list of roles, optionally paginated, sorted and/or filtered.
* This page requires authentication.
* Request type: GET
*/
public function getList($request, $response, $args)
{
// GET parameters
$params = $request->getQueryParams();
/** @var UserFrosting\Sprinkle\Account\Authorize\AuthorizationManager $authorizer */
$authorizer = $this->ci->authorizer;
/** @var UserFrosting\Sprinkle\Account\Database\Models\User $currentUser */
$currentUser = $this->ci->currentUser;
// Access-controlled page
if (!$authorizer->checkAccess($currentUser, 'uri_roles')) {
throw new ForbiddenException();
}
/** @var UserFrosting\Sprinkle\Core\Util\ClassMapper $classMapper */
$classMapper = $this->ci->classMapper;
$sprunje = $classMapper->createInstance('role_sprunje', $classMapper, $params);
// Be careful how you consume this data - it has not been escaped and contains untrusted user-supplied content.
// For example, if you plan to insert it into an HTML DOM, you must escape it on the client side (or use client-side templating).
return $sprunje->toResponse($response);
}
public function getModalConfirmDelete($request, $response, $args)
{
// GET parameters
$params = $request->getQueryParams();
$role = $this->getRoleFromParams($params);
// If the role no longer exists, forward to main role listing page
if (!$role) {
throw new NotFoundException($request, $response);
}
/** @var UserFrosting\Sprinkle\Account\Authorize\AuthorizationManager $authorizer */
$authorizer = $this->ci->authorizer;
/** @var UserFrosting\Sprinkle\Account\Database\Models\User $currentUser */
$currentUser = $this->ci->currentUser;
// Access-controlled page
if (!$authorizer->checkAccess($currentUser, 'delete_role', [
'role' => $role
])) {
throw new ForbiddenException();
}
/** @var UserFrosting\Sprinkle\Core\Util\ClassMapper $classMapper */
$classMapper = $this->ci->classMapper;
// Check that we are not deleting a default role
$defaultRoleSlugs = $classMapper->staticMethod('role', 'getDefaultSlugs');
// Need to use loose comparison for now, because some DBs return `id` as a string
if (in_array($role->slug, $defaultRoleSlugs)) {
$e = new BadRequestException();
$e->addUserMessage('ROLE.DELETE_DEFAULT', $role->toArray());
throw $e;
}
// Check if there are any users associated with this role
$countUsers = $role->users()->count();
if ($countUsers > 0) {
$e = new BadRequestException();
$e->addUserMessage('ROLE.HAS_USERS', $role->toArray());
throw $e;
}
return $this->ci->view->render($response, 'modals/confirm-delete-role.html.twig', [
'role' => $role,
'form' => [
'action' => "api/roles/r/{$role->slug}",
]
]);
}
/**
* Renders the modal form for creating a new role.
*
* This does NOT render a complete page. Instead, it renders the HTML for the modal, which can be embedded in other pages.
* This page requires authentication.
* Request type: GET
*/
public function getModalCreate($request, $response, $args)
{
// GET parameters
$params = $request->getQueryParams();
/** @var UserFrosting\Sprinkle\Account\Authorize\AuthorizationManager $authorizer */
$authorizer = $this->ci->authorizer;
/** @var UserFrosting\Sprinkle\Account\Database\Models\User $currentUser */
$currentUser = $this->ci->currentUser;
/** @var UserFrosting\I18n\MessageTranslator $translator */
$translator = $this->ci->translator;
// Access-controlled page
if (!$authorizer->checkAccess($currentUser, 'create_role')) {
throw new ForbiddenException();
}
/** @var UserFrosting\Sprinkle\Core\Util\ClassMapper $classMapper */
$classMapper = $this->ci->classMapper;
// Create a dummy role to prepopulate fields
$role = $classMapper->createInstance('role', []);
$fieldNames = ['name', 'slug', 'description'];
$fields = [
'hidden' => [],
'disabled' => []
];
// Load validation rules
$schema = new RequestSchema('schema://requests/role/create.yaml');
$validator = new JqueryValidationAdapter($schema, $this->ci->translator);
return $this->ci->view->render($response, 'modals/role.html.twig', [
'role' => $role,
'form' => [
'action' => 'api/roles',
'method' => 'POST',
'fields' => $fields,
'submit_text' => $translator->translate('CREATE')
],
'page' => [
'validators' => $validator->rules('json', false)
]
]);
}
/**
* Renders the modal form for editing an existing role.
*
* This does NOT render a complete page. Instead, it renders the HTML for the modal, which can be embedded in other pages.
* This page requires authentication.
* Request type: GET
*/
public function getModalEdit($request, $response, $args)
{
// GET parameters
$params = $request->getQueryParams();
$role = $this->getRoleFromParams($params);
// If the role doesn't exist, return 404
if (!$role) {
throw new NotFoundException($request, $response);
}
/** @var UserFrosting\Sprinkle\Core\Util\ClassMapper $classMapper */
$classMapper = $this->ci->classMapper;
/** @var UserFrosting\Sprinkle\Account\Authorize\AuthorizationManager $authorizer */
$authorizer = $this->ci->authorizer;
/** @var UserFrosting\Sprinkle\Account\Database\Models\User $currentUser */
$currentUser = $this->ci->currentUser;
/** @var UserFrosting\I18n\MessageTranslator $translator */
$translator = $this->ci->translator;
// Access-controlled resource - check that currentUser has permission to edit basic fields "name", "slug", "description" for this role
$fieldNames = ['name', 'slug', 'description'];
if (!$authorizer->checkAccess($currentUser, 'update_role_field', [
'role' => $role,
'fields' => $fieldNames
])) {
throw new ForbiddenException();
}
// Generate form
$fields = [
'hidden' => [],
'disabled' => []
];
// Load validation rules
$schema = new RequestSchema('schema://requests/role/edit-info.yaml');
$validator = new JqueryValidationAdapter($schema, $translator);
return $this->ci->view->render($response, 'modals/role.html.twig', [
'role' => $role,
'form' => [
'action' => "api/roles/r/{$role->slug}",
'method' => 'PUT',
'fields' => $fields,
'submit_text' => $translator->translate('UPDATE')
],
'page' => [
'validators' => $validator->rules('json', false)
]
]);
}
/**
* Renders the modal form for editing a role's permissions.
*
* This does NOT render a complete page. Instead, it renders the HTML for the form, which can be embedded in other pages.
* This page requires authentication.
* Request type: GET
*/
public function getModalEditPermissions($request, $response, $args)
{
// GET parameters
$params = $request->getQueryParams();
$role = $this->getRoleFromParams($params);
// If the role doesn't exist, return 404
if (!$role) {
throw new NotFoundException($request, $response);
}
/** @var UserFrosting\Sprinkle\Account\Authorize\AuthorizationManager $authorizer */
$authorizer = $this->ci->authorizer;
/** @var UserFrosting\Sprinkle\Account\Database\Models\User $currentUser */
$currentUser = $this->ci->currentUser;
// Access-controlled resource - check that currentUser has permission to edit "permissions" field for this role
if (!$authorizer->checkAccess($currentUser, 'update_role_field', [
'role' => $role,
'fields' => ['permissions']
])) {
throw new ForbiddenException();
}
return $this->ci->view->render($response, 'modals/role-manage-permissions.html.twig', [
'role' => $role
]);
}
/**
* Returns a list of Permissions for a specified Role.
*
* Generates a list of permissions, optionally paginated, sorted and/or filtered.
* This page requires authentication.
* Request type: GET
*/
public function getPermissions($request, $response, $args)
{
$role = $this->getRoleFromParams($args);
// If the role no longer exists, forward to main role listing page
if (!$role) {
throw new NotFoundException($request, $response);
}
// GET parameters
$params = $request->getQueryParams();
/** @var UserFrosting\Sprinkle\Account\Authorize\AuthorizationManager $authorizer */
$authorizer = $this->ci->authorizer;
/** @var UserFrosting\Sprinkle\Account\Database\Models\User $currentUser */
$currentUser = $this->ci->currentUser;
// Access-controlled page
if (!$authorizer->checkAccess($currentUser, 'view_role_field', [
'role' => $role,
'property' => 'permissions'
])) {
throw new ForbiddenException();
}
/** @var UserFrosting\Sprinkle\Core\Util\ClassMapper $classMapper */
$classMapper = $this->ci->classMapper;
$sprunje = $classMapper->createInstance('permission_sprunje', $classMapper, $params);
$sprunje->extendQuery(function ($query) use ($role) {
return $query->forRole($role->id);
});
// Be careful how you consume this data - it has not been escaped and contains untrusted user-supplied content.
// For example, if you plan to insert it into an HTML DOM, you must escape it on the client side (or use client-side templating).
return $sprunje->toResponse($response);
}
/**
* Returns users associated with a single role.
*
* This page requires authentication.
* Request type: GET
*/
public function getUsers($request, $response, $args)
{
$role = $this->getRoleFromParams($args);
// If the role doesn't exist, return 404
if (!$role) {
throw new NotFoundException($request, $response);
}
/** @var UserFrosting\Sprinkle\Core\Util\ClassMapper $classMapper */
$classMapper = $this->ci->classMapper;
// GET parameters
$params = $request->getQueryParams();
/** @var UserFrosting\Sprinkle\Account\Authorize\AuthorizationManager $authorizer */
$authorizer = $this->ci->authorizer;
/** @var UserFrosting\Sprinkle\Account\Database\Models\User $currentUser */
$currentUser = $this->ci->currentUser;
// Access-controlled page
if (!$authorizer->checkAccess($currentUser, 'view_role_field', [
'role' => $role,
'property' => 'users'
])) {
throw new ForbiddenException();
}
$sprunje = $classMapper->createInstance('user_sprunje', $classMapper, $params);
$sprunje->extendQuery(function ($query) use ($role) {
return $query->forRole($role->id);
});
// Be careful how you consume this data - it has not been escaped and contains untrusted user-supplied content.
// For example, if you plan to insert it into an HTML DOM, you must escape it on the client side (or use client-side templating).
return $sprunje->toResponse($response);
}
/**
* Renders a page displaying a role's information, in read-only mode.
*
* This checks that the currently logged-in user has permission to view the requested role's info.
* It checks each field individually, showing only those that you have permission to view.
* This will also try to show buttons for deleting and editing the role.
* This page requires authentication.
* Request type: GET
*/
public function pageInfo($request, $response, $args)
{
$role = $this->getRoleFromParams($args);
// If the role no longer exists, forward to main role listing page
if (!$role) {
$redirectPage = $this->ci->router->pathFor('uri_roles');
return $response->withRedirect($redirectPage, 404);
}
/** @var UserFrosting\Sprinkle\Account\Authorize\AuthorizationManager $authorizer */
$authorizer = $this->ci->authorizer;
/** @var UserFrosting\Sprinkle\Account\Database\Models\User $currentUser */
$currentUser = $this->ci->currentUser;
// Access-controlled page
if (!$authorizer->checkAccess($currentUser, 'uri_role', [
'role' => $role
])) {
throw new ForbiddenException();
}
// Determine fields that currentUser is authorized to view
$fieldNames = ['name', 'slug', 'description'];
// Generate form
$fields = [
'hidden' => []
];
foreach ($fieldNames as $field) {
if (!$authorizer->checkAccess($currentUser, 'view_role_field', [
'role' => $role,
'property' => $field
])) {
$fields['hidden'][] = $field;
}
}
// Determine buttons to display
$editButtons = [
'hidden' => []
];
if (!$authorizer->checkAccess($currentUser, 'update_role_field', [
'role' => $role,
'fields' => ['name', 'slug', 'description']
])) {
$editButtons['hidden'][] = 'edit';
}
if (!$authorizer->checkAccess($currentUser, 'delete_role', [
'role' => $role
])) {
$editButtons['hidden'][] = 'delete';
}
return $this->ci->view->render($response, 'pages/role.html.twig', [
'role' => $role,
'fields' => $fields,
'tools' => $editButtons
]);
}
/**
* Renders the role listing page.
*
* This page renders a table of roles, with dropdown menus for admin actions for each role.
* Actions typically include: edit role, delete role.
* This page requires authentication.
* Request type: GET
*/
public function pageList($request, $response, $args)
{
/** @var UserFrosting\Sprinkle\Account\Authorize\AuthorizationManager $authorizer */
$authorizer = $this->ci->authorizer;
/** @var UserFrosting\Sprinkle\Account\Database\Models\User $currentUser */
$currentUser = $this->ci->currentUser;
// Access-controlled page
if (!$authorizer->checkAccess($currentUser, 'uri_roles')) {
throw new ForbiddenException();
}
return $this->ci->view->render($response, 'pages/roles.html.twig');
}
/**
* Processes the request to update an existing role's details.
*
* Processes the request from the role update form, checking that:
* 1. The role name/slug are not already in use;
* 2. The user has the necessary permissions to update the posted field(s);
* 3. The submitted data is valid.
* This route requires authentication (and should generally be limited to admins or the root user).
* Request type: PUT
* @see getModalRoleEdit
*/
public function updateInfo($request, $response, $args)
{
// Get the role based on slug in the URL
$role = $this->getRoleFromParams($args);
if (!$role) {
throw new NotFoundException($request, $response);
}
/** @var UserFrosting\Config\Config $config */
$config = $this->ci->config;
// Get PUT parameters: (name, slug, description)
$params = $request->getParsedBody();
/** @var UserFrosting\I18n\MessageTranslator $translator */
$ms = $this->ci->alerts;
// Load the request schema
$schema = new RequestSchema('schema://requests/role/edit-info.yaml');
// Whitelist and set parameter defaults
$transformer = new RequestDataTransformer($schema);
$data = $transformer->transform($params);
$error = false;
// Validate request data
$validator = new ServerSideValidator($schema, $this->ci->translator);
if (!$validator->validate($data)) {
$ms->addValidationErrors($validator);
$error = true;
}
// Determine targeted fields
$fieldNames = [];
foreach ($data as $name => $value) {
$fieldNames[] = $name;
}
/** @var UserFrosting\Sprinkle\Account\Authorize\AuthorizationManager $authorizer */
$authorizer = $this->ci->authorizer;
/** @var UserFrosting\Sprinkle\Account\Database\Models\User $currentUser */
$currentUser = $this->ci->currentUser;
// Access-controlled resource - check that currentUser has permission to edit submitted fields for this role
if (!$authorizer->checkAccess($currentUser, 'update_role_field', [
'role' => $role,
'fields' => array_values(array_unique($fieldNames))
])) {
throw new ForbiddenException();
}
/** @var UserFrosting\Sprinkle\Core\Util\ClassMapper $classMapper */
$classMapper = $this->ci->classMapper;
// Check if name or slug already exists
if (
isset($data['name']) &&
$data['name'] != $role->name &&
$classMapper->staticMethod('role', 'where', 'name', $data['name'])->first()
) {
$ms->addMessageTranslated('danger', 'ROLE.NAME_IN_USE', $data);
$error = true;
}
if (
isset($data['slug']) &&
$data['slug'] != $role->slug &&
$classMapper->staticMethod('role', 'where', 'slug', $data['slug'])->first()
) {
$ms->addMessageTranslated('danger', 'SLUG_IN_USE', $data);
$error = true;
}
if ($error) {
return $response->withStatus(400);
}
// Begin transaction - DB will be rolled back if an exception occurs
Capsule::transaction( function() use ($data, $role, $currentUser) {
// Update the role and generate success messages
foreach ($data as $name => $value) {
if ($value != $role->$name){
$role->$name = $value;
}
}
$role->save();
// Create activity record
$this->ci->userActivityLogger->info("User {$currentUser->user_name} updated details for role {$role->name}.", [
'type' => 'role_update_info',
'user_id' => $currentUser->id
]);
});
$ms->addMessageTranslated('success', 'ROLE.UPDATED', [
'name' => $role->name
]);
return $response->withStatus(200);
}
/**
* Processes the request to update a specific field for an existing role, including permissions.
*
* Processes the request from the role update form, checking that:
* 1. The logged-in user has the necessary permissions to update the putted field(s);
* 2. The submitted data is valid.
* This route requires authentication.
* Request type: PUT
*/
public function updateField($request, $response, $args)
{
// Get the username from the URL
$role = $this->getRoleFromParams($args);
if (!$role) {
throw new NotFoundException($request, $response);
}
// Get key->value pair from URL and request body
$fieldName = $args['field'];
/** @var UserFrosting\Sprinkle\Account\Authorize\AuthorizationManager $authorizer */
$authorizer = $this->ci->authorizer;
/** @var UserFrosting\Sprinkle\Account\Database\Models\User $currentUser */
$currentUser = $this->ci->currentUser;
// Access-controlled resource - check that currentUser has permission to edit the specified field for this user
if (!$authorizer->checkAccess($currentUser, 'update_role_field', [
'role' => $role,
'fields' => [$fieldName]
])) {
throw new ForbiddenException();
}
/** @var UserFrosting\Config\Config $config */
$config = $this->ci->config;
// Get PUT parameters: value
$put = $request->getParsedBody();
if (!isset($put['value'])) {
throw new BadRequestException();
}
$params = [
$fieldName => $put['value']
];
// Validate key -> value pair
// Load the request schema
$schema = new RequestSchema('schema://requests/role/edit-field.yaml');
// Whitelist and set parameter defaults
$transformer = new RequestDataTransformer($schema);
$data = $transformer->transform($params);
// Validate, and throw exception on validation errors.
$validator = new ServerSideValidator($schema, $this->ci->translator);
if (!$validator->validate($data)) {
// TODO: encapsulate the communication of error messages from ServerSideValidator to the BadRequestException
$e = new BadRequestException();
foreach ($validator->errors() as $idx => $field) {
foreach($field as $eidx => $error) {
$e->addUserMessage($error);
}
}
throw $e;
}
// Get validated and transformed value
$fieldValue = $data[$fieldName];
/** @var UserFrosting\I18n\MessageTranslator $translator */
$ms = $this->ci->alerts;
// Begin transaction - DB will be rolled back if an exception occurs
Capsule::transaction( function() use ($fieldName, $fieldValue, $role, $currentUser) {
if ($fieldName == 'permissions') {
$newPermissions = collect($fieldValue)->pluck('permission_id')->all();
$role->permissions()->sync($newPermissions);
} else {
$role->$fieldName = $fieldValue;
$role->save();
}
// Create activity record
$this->ci->userActivityLogger->info("User {$currentUser->user_name} updated property '$fieldName' for role {$role->name}.", [
'type' => 'role_update_field',
'user_id' => $currentUser->id
]);
});
// Add success messages
if ($fieldName == 'permissions') {
$ms->addMessageTranslated('success', 'ROLE.PERMISSIONS_UPDATED', [
'name' => $role->name
]);
} else {
$ms->addMessageTranslated('success', 'ROLE.UPDATED', [
'name' => $role->name
]);
}
return $response->withStatus(200);
}
protected function getRoleFromParams($params)
{
// Load the request schema
$schema = new RequestSchema('schema://requests/role/get-by-slug.yaml');
// Whitelist and set parameter defaults
$transformer = new RequestDataTransformer($schema);
$data = $transformer->transform($params);
// Validate, and throw exception on validation errors.
$validator = new ServerSideValidator($schema, $this->ci->translator);
if (!$validator->validate($data)) {
// TODO: encapsulate the communication of error messages from ServerSideValidator to the BadRequestException
$e = new BadRequestException();
foreach ($validator->errors() as $idx => $field) {
foreach($field as $eidx => $error) {
$e->addUserMessage($error);
}
}
throw $e;
}
/** @var UserFrosting\Sprinkle\Core\Util\ClassMapper $classMapper */
$classMapper = $this->ci->classMapper;
// Get the role
$role = $classMapper->staticMethod('role', 'where', 'slug', $data['slug'])
->first();
return $role;
}
}
|