blob: 6142e7413ad69c7127d57e685f7db1f0df88dcee (
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;
/**
* UserPermissionSprunje
*
* Implements Sprunje for retrieving a list of permissions for a specified user.
*
* @author Alex Weissman (https://alexanderweissman.com)
*/
class UserPermissionSprunje extends PermissionSprunje
{
protected $name = 'user_permissions';
/**
* {@inheritDoc}
*/
protected function baseQuery()
{
// Requires a user id
if (!isset($this->options['user_id'])) {
throw new BadRequestException();
}
$user = $this->classMapper->staticMethod('user', 'find', $this->options['user_id']);
// If the user doesn't exist, return 404
if (!$user) {
throw new NotFoundException;
}
// Get user permissions
$query = $user->permissions()->withVia('roles_via');
return $query;
}
}
|