2021-06-26 23:23:15 +08:00
|
|
|
<?php
|
|
|
|
|
2023-05-18 00:56:55 +08:00
|
|
|
namespace BookStack\Users\Models;
|
2018-09-25 19:30:50 +08:00
|
|
|
|
2023-05-18 00:56:55 +08:00
|
|
|
use BookStack\Activity\Models\Loggable;
|
|
|
|
use BookStack\App\Model;
|
|
|
|
use BookStack\Permissions\Models\EntityPermission;
|
|
|
|
use BookStack\Permissions\Models\JointPermission;
|
|
|
|
use BookStack\Permissions\Models\RolePermission;
|
2020-08-04 21:55:01 +08:00
|
|
|
use Illuminate\Database\Eloquent\Collection;
|
2021-10-31 04:29:59 +08:00
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
2020-12-09 07:46:38 +08:00
|
|
|
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
|
2020-08-04 21:55:01 +08:00
|
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
2015-08-29 22:03:42 +08:00
|
|
|
|
2019-11-16 23:24:09 +08:00
|
|
|
/**
|
2021-06-26 23:23:15 +08:00
|
|
|
* Class Role.
|
|
|
|
*
|
2021-09-19 04:21:44 +08:00
|
|
|
* @property int $id
|
|
|
|
* @property string $display_name
|
|
|
|
* @property string $description
|
|
|
|
* @property string $external_auth_id
|
|
|
|
* @property string $system_name
|
|
|
|
* @property bool $mfa_enforced
|
2021-09-18 06:44:54 +08:00
|
|
|
* @property Collection $users
|
2019-11-16 23:24:09 +08:00
|
|
|
*/
|
2020-11-21 02:53:01 +08:00
|
|
|
class Role extends Model implements Loggable
|
2015-08-29 22:03:42 +08:00
|
|
|
{
|
2021-10-31 04:29:59 +08:00
|
|
|
use HasFactory;
|
|
|
|
|
2023-02-19 02:36:34 +08:00
|
|
|
protected $fillable = ['display_name', 'description', 'external_auth_id', 'mfa_enforced'];
|
2015-09-06 00:42:05 +08:00
|
|
|
|
2022-02-03 20:33:26 +08:00
|
|
|
protected $hidden = ['pivot'];
|
|
|
|
|
2023-02-19 23:58:29 +08:00
|
|
|
protected $casts = [
|
|
|
|
'mfa_enforced' => 'boolean',
|
|
|
|
];
|
|
|
|
|
2015-08-29 22:03:42 +08:00
|
|
|
/**
|
|
|
|
* The roles that belong to the role.
|
|
|
|
*/
|
2020-12-09 07:46:38 +08:00
|
|
|
public function users(): BelongsToMany
|
2015-08-29 22:03:42 +08:00
|
|
|
{
|
2019-02-04 01:34:15 +08:00
|
|
|
return $this->belongsToMany(User::class)->orderBy('name', 'asc');
|
2015-08-29 22:03:42 +08:00
|
|
|
}
|
|
|
|
|
2016-04-24 23:54:20 +08:00
|
|
|
/**
|
2016-05-02 04:20:50 +08:00
|
|
|
* Get all related JointPermissions.
|
2016-04-24 23:54:20 +08:00
|
|
|
*/
|
2020-08-04 21:55:01 +08:00
|
|
|
public function jointPermissions(): HasMany
|
2016-04-24 23:54:20 +08:00
|
|
|
{
|
2016-05-02 04:20:50 +08:00
|
|
|
return $this->hasMany(JointPermission::class);
|
2016-04-24 23:54:20 +08:00
|
|
|
}
|
|
|
|
|
2015-08-29 22:03:42 +08:00
|
|
|
/**
|
2016-05-02 04:20:50 +08:00
|
|
|
* The RolePermissions that belong to the role.
|
2015-08-29 22:03:42 +08:00
|
|
|
*/
|
2020-12-09 07:46:38 +08:00
|
|
|
public function permissions(): BelongsToMany
|
2015-08-29 22:03:42 +08:00
|
|
|
{
|
2019-02-04 01:34:15 +08:00
|
|
|
return $this->belongsToMany(RolePermission::class, 'permission_role', 'role_id', 'permission_id');
|
2015-08-29 22:03:42 +08:00
|
|
|
}
|
|
|
|
|
2022-10-07 20:12:33 +08:00
|
|
|
/**
|
|
|
|
* Get the entity permissions assigned to this role.
|
|
|
|
*/
|
|
|
|
public function entityPermissions(): HasMany
|
|
|
|
{
|
|
|
|
return $this->hasMany(EntityPermission::class);
|
|
|
|
}
|
|
|
|
|
2016-02-28 03:24:42 +08:00
|
|
|
/**
|
|
|
|
* Check if this role has a permission.
|
|
|
|
*/
|
2020-08-04 21:55:01 +08:00
|
|
|
public function hasPermission(string $permissionName): bool
|
2016-02-28 03:24:42 +08:00
|
|
|
{
|
2016-05-01 00:16:06 +08:00
|
|
|
$permissions = $this->getRelationValue('permissions');
|
|
|
|
foreach ($permissions as $permission) {
|
2018-01-29 00:58:52 +08:00
|
|
|
if ($permission->getRawAttribute('name') === $permissionName) {
|
|
|
|
return true;
|
|
|
|
}
|
2016-05-01 00:16:06 +08:00
|
|
|
}
|
2021-06-26 23:23:15 +08:00
|
|
|
|
2016-05-01 00:16:06 +08:00
|
|
|
return false;
|
2016-02-28 03:24:42 +08:00
|
|
|
}
|
|
|
|
|
2015-08-29 22:03:42 +08:00
|
|
|
/**
|
|
|
|
* Add a permission to this role.
|
|
|
|
*/
|
2019-02-04 01:34:15 +08:00
|
|
|
public function attachPermission(RolePermission $permission)
|
2015-08-29 22:03:42 +08:00
|
|
|
{
|
|
|
|
$this->permissions()->attach($permission->id);
|
|
|
|
}
|
|
|
|
|
2016-04-09 19:37:58 +08:00
|
|
|
/**
|
|
|
|
* Detach a single permission from this role.
|
|
|
|
*/
|
2019-02-04 01:34:15 +08:00
|
|
|
public function detachPermission(RolePermission $permission)
|
2016-04-09 19:37:58 +08:00
|
|
|
{
|
2019-12-31 03:42:46 +08:00
|
|
|
$this->permissions()->detach([$permission->id]);
|
2016-04-09 19:37:58 +08:00
|
|
|
}
|
|
|
|
|
2016-01-02 22:48:35 +08:00
|
|
|
/**
|
2020-08-04 21:55:01 +08:00
|
|
|
* Get the role of the specified display name.
|
2016-01-02 22:48:35 +08:00
|
|
|
*/
|
2021-10-27 05:04:18 +08:00
|
|
|
public static function getRole(string $displayName): ?self
|
2016-01-02 22:48:35 +08:00
|
|
|
{
|
2020-08-04 21:55:01 +08:00
|
|
|
return static::query()->where('display_name', '=', $displayName)->first();
|
2015-09-06 00:42:05 +08:00
|
|
|
}
|
2016-05-02 02:36:53 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the role object for the specified system role.
|
|
|
|
*/
|
2021-10-27 05:04:18 +08:00
|
|
|
public static function getSystemRole(string $systemName): ?self
|
2016-05-02 02:36:53 +08:00
|
|
|
{
|
2023-02-24 07:01:03 +08:00
|
|
|
static $cache = [];
|
|
|
|
|
|
|
|
if (!isset($cache[$systemName])) {
|
|
|
|
$cache[$systemName] = static::query()->where('system_name', '=', $systemName)->first();
|
|
|
|
}
|
|
|
|
|
|
|
|
return $cache[$systemName];
|
2016-05-02 02:36:53 +08:00
|
|
|
}
|
|
|
|
|
2020-11-21 02:53:01 +08:00
|
|
|
/**
|
2021-10-27 05:04:18 +08:00
|
|
|
* {@inheritdoc}
|
2020-11-21 02:53:01 +08:00
|
|
|
*/
|
|
|
|
public function logDescriptor(): string
|
|
|
|
{
|
|
|
|
return "({$this->id}) {$this->display_name}";
|
|
|
|
}
|
2015-08-29 22:03:42 +08:00
|
|
|
}
|