blob: 242681d030928a6e81b8d6808c2866494f50017e (
plain) (
blame)
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
|
<?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\Sprunje;
use Illuminate\Database\Capsule\Manager as Capsule;
use UserFrosting\Sprinkle\Core\Facades\Debug;
use UserFrosting\Support\Exception\BadRequestException;
use UserFrosting\Support\Exception\NotFoundException;
/**
* PermissionUserSprunje
*
* Implements Sprunje for retrieving a list of users for a specified permission.
*
* @author Alex Weissman (https://alexanderweissman.com)
*/
class PermissionUserSprunje extends UserSprunje
{
protected $name = 'permission_users';
/**
* {@inheritDoc}
*/
protected function baseQuery()
{
// Requires a permission id
if (!isset($this->options['permission_id'])) {
throw new BadRequestException();
}
$permission = $this->classMapper->staticMethod('permission', 'find', $this->options['permission_id']);
// If the permission doesn't exist, return 404
if (!$permission) {
throw new NotFoundException;
}
// Get permission users
$query = $permission->users()->withVia('roles_via');
return $query;
}
}
|