1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/* |
4
|
|
|
* This file is part of the EloyekunlePermissionsBundle package. |
5
|
|
|
* |
6
|
|
|
* (c) Elijah Oyekunle <https://elijahoyekunle.com/> |
7
|
|
|
* |
8
|
|
|
* For the full copyright and license information, please view the LICENSE |
9
|
|
|
* file that was distributed with this source code. |
10
|
|
|
*/ |
11
|
|
|
|
12
|
|
|
namespace Eloyekunle\PermissionsBundle\Model; |
13
|
|
|
|
14
|
|
|
abstract class Role implements RoleInterface |
15
|
|
|
{ |
16
|
|
|
/** |
17
|
|
|
* The machine name of this role. |
18
|
|
|
* |
19
|
|
|
* @var mixed |
20
|
|
|
*/ |
21
|
|
|
protected $id; |
22
|
|
|
|
23
|
|
|
/** |
24
|
|
|
* The human-readable name of this role. |
25
|
|
|
* |
26
|
|
|
* @var string |
27
|
|
|
*/ |
28
|
|
|
protected $role; |
29
|
|
|
|
30
|
|
|
/** |
31
|
|
|
* The permissions belonging to this role. |
32
|
|
|
* |
33
|
|
|
* @var array |
34
|
|
|
*/ |
35
|
|
|
protected $permissions; |
36
|
|
|
|
37
|
|
|
public function __construct($role = null) |
38
|
|
|
{ |
39
|
|
|
$this->role = $role; |
40
|
|
|
$this->permissions = []; |
41
|
|
|
} |
42
|
|
|
|
43
|
|
|
/** |
44
|
|
|
* {@inheritdoc} |
45
|
|
|
*/ |
46
|
|
|
public function getId() |
47
|
|
|
{ |
48
|
|
|
return $this->id; |
49
|
|
|
} |
50
|
|
|
|
51
|
|
|
public function getRole() |
52
|
|
|
{ |
53
|
|
|
return $this->role; |
54
|
|
|
} |
55
|
|
|
|
56
|
|
|
/** |
57
|
|
|
* {@inheritdoc} |
58
|
|
|
*/ |
59
|
|
|
public function setRole($role) |
60
|
|
|
{ |
61
|
|
|
$this->role = $role; |
62
|
|
|
|
63
|
|
|
return $this; |
64
|
|
|
} |
65
|
|
|
|
66
|
|
|
/** |
67
|
|
|
* {@inheritdoc} |
68
|
|
|
*/ |
69
|
|
|
public function getPermissions() |
70
|
|
|
{ |
71
|
|
|
if ($this->isSuperAdmin()) { |
72
|
|
|
return []; |
73
|
|
|
} |
74
|
|
|
|
75
|
|
|
return $this->permissions; |
76
|
|
|
} |
77
|
|
|
|
78
|
|
|
/** |
79
|
|
|
* {@inheritdoc} |
80
|
|
|
*/ |
81
|
|
|
public function setPermissions(array $permissions) |
82
|
|
|
{ |
83
|
|
|
$this->permissions = []; |
84
|
|
|
|
85
|
|
|
foreach ($permissions as $permission) { |
86
|
|
|
if (!$permission) { |
87
|
|
|
break; |
88
|
|
|
} |
89
|
|
|
$this->grantPermission($permission); |
90
|
|
|
} |
91
|
|
|
|
92
|
|
|
return $this; |
93
|
|
|
} |
94
|
|
|
|
95
|
|
|
/** |
96
|
|
|
* {@inheritdoc} |
97
|
|
|
*/ |
98
|
|
|
public function hasPermission($permission) |
99
|
|
|
{ |
100
|
|
|
if ($this->isSuperAdmin()) { |
101
|
|
|
return true; |
102
|
|
|
} |
103
|
|
|
|
104
|
|
|
return in_array($permission, $this->getPermissions(), true); |
105
|
|
|
} |
106
|
|
|
|
107
|
|
|
/** |
108
|
|
|
* {@inheritdoc} |
109
|
|
|
*/ |
110
|
|
|
public function grantPermission($permission) |
111
|
|
|
{ |
112
|
|
|
if ($this->isSuperAdmin()) { |
113
|
|
|
return $this; |
114
|
|
|
} |
115
|
|
|
if (!$this->hasPermission($permission)) { |
116
|
|
|
$this->permissions[] = $permission; |
117
|
|
|
} |
118
|
|
|
|
119
|
|
|
return $this; |
120
|
|
|
} |
121
|
|
|
|
122
|
|
|
/** |
123
|
|
|
* {@inheritdoc} |
124
|
|
|
*/ |
125
|
|
|
public function revokePermission($permission) |
126
|
|
|
{ |
127
|
|
|
if ($this->isSuperAdmin()) { |
128
|
|
|
return $this; |
129
|
|
|
} |
130
|
|
|
$this->permissions = array_diff($this->permissions, [$permission]); |
131
|
|
|
|
132
|
|
|
return $this; |
133
|
|
|
} |
134
|
|
|
|
135
|
|
|
/** |
136
|
|
|
* {@inheritdoc} |
137
|
|
|
*/ |
138
|
|
|
public function isSuperAdmin() |
139
|
|
|
{ |
140
|
|
|
return $this->getRole() === static::ROLE_SUPER_ADMIN; |
141
|
|
|
} |
142
|
|
|
} |
143
|
|
|
|