2016-04-30 18:16:06 +02:00
|
|
|
<?php namespace BookStack;
|
2015-08-29 16:03:42 +02:00
|
|
|
|
|
|
|
|
|
|
|
class Role extends Model
|
|
|
|
{
|
2016-02-27 20:24:42 +01:00
|
|
|
|
|
|
|
protected $fillable = ['display_name', 'description'];
|
2015-09-05 18:42:05 +02:00
|
|
|
|
2015-08-29 16:03:42 +02:00
|
|
|
/**
|
|
|
|
* The roles that belong to the role.
|
|
|
|
*/
|
|
|
|
public function users()
|
|
|
|
{
|
2016-05-01 22:20:50 +02:00
|
|
|
return $this->belongsToMany(User::class);
|
2015-08-29 16:03:42 +02:00
|
|
|
}
|
|
|
|
|
2016-04-24 17:54:20 +02:00
|
|
|
/**
|
2016-05-01 22:20:50 +02:00
|
|
|
* Get all related JointPermissions.
|
2016-04-24 17:54:20 +02:00
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
|
|
|
*/
|
2016-05-01 22:20:50 +02:00
|
|
|
public function jointPermissions()
|
2016-04-24 17:54:20 +02:00
|
|
|
{
|
2016-05-01 22:20:50 +02:00
|
|
|
return $this->hasMany(JointPermission::class);
|
2016-04-24 17:54:20 +02:00
|
|
|
}
|
|
|
|
|
2015-08-29 16:03:42 +02:00
|
|
|
/**
|
2016-05-01 22:20:50 +02:00
|
|
|
* The RolePermissions that belong to the role.
|
2015-08-29 16:03:42 +02:00
|
|
|
*/
|
|
|
|
public function permissions()
|
|
|
|
{
|
2016-05-01 22:20:50 +02:00
|
|
|
return $this->belongsToMany(RolePermission::class, 'permission_role', 'role_id', 'permission_id');
|
2015-08-29 16:03:42 +02:00
|
|
|
}
|
|
|
|
|
2016-02-27 20:24:42 +01:00
|
|
|
/**
|
|
|
|
* Check if this role has a permission.
|
2016-04-30 18:16:06 +02:00
|
|
|
* @param $permissionName
|
|
|
|
* @return bool
|
2016-02-27 20:24:42 +01:00
|
|
|
*/
|
2016-04-30 18:16:06 +02:00
|
|
|
public function hasPermission($permissionName)
|
2016-02-27 20:24:42 +01:00
|
|
|
{
|
2016-04-30 18:16:06 +02:00
|
|
|
$permissions = $this->getRelationValue('permissions');
|
|
|
|
foreach ($permissions as $permission) {
|
|
|
|
if ($permission->getRawAttribute('name') === $permissionName) return true;
|
|
|
|
}
|
|
|
|
return false;
|
2016-02-27 20:24:42 +01:00
|
|
|
}
|
|
|
|
|
2015-08-29 16:03:42 +02:00
|
|
|
/**
|
|
|
|
* Add a permission to this role.
|
2016-05-01 22:20:50 +02:00
|
|
|
* @param RolePermission $permission
|
2015-08-29 16:03:42 +02:00
|
|
|
*/
|
2016-05-01 22:20:50 +02:00
|
|
|
public function attachPermission(RolePermission $permission)
|
2015-08-29 16:03:42 +02:00
|
|
|
{
|
|
|
|
$this->permissions()->attach($permission->id);
|
|
|
|
}
|
|
|
|
|
2016-04-09 13:37:58 +02:00
|
|
|
/**
|
|
|
|
* Detach a single permission from this role.
|
2016-05-01 22:20:50 +02:00
|
|
|
* @param RolePermission $permission
|
2016-04-09 13:37:58 +02:00
|
|
|
*/
|
2016-05-01 22:20:50 +02:00
|
|
|
public function detachPermission(RolePermission $permission)
|
2016-04-09 13:37:58 +02:00
|
|
|
{
|
|
|
|
$this->permissions()->detach($permission->id);
|
|
|
|
}
|
|
|
|
|
2016-01-02 15:48:35 +01:00
|
|
|
/**
|
|
|
|
* Get the role object for the specified role.
|
|
|
|
* @param $roleName
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public static function getRole($roleName)
|
|
|
|
{
|
|
|
|
return static::where('name', '=', $roleName)->first();
|
2015-09-05 18:42:05 +02:00
|
|
|
}
|
2016-05-01 20:36:53 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the role object for the specified system role.
|
|
|
|
* @param $roleName
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public static function getSystemRole($roleName)
|
|
|
|
{
|
|
|
|
return static::where('system_name', '=', $roleName)->first();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-05-01 22:20:50 +02:00
|
|
|
* Get all visible roles
|
2016-05-01 20:36:53 +02:00
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public static function visible()
|
|
|
|
{
|
|
|
|
return static::where('hidden', '=', false)->orderBy('name')->get();
|
|
|
|
}
|
|
|
|
|
2015-08-29 16:03:42 +02:00
|
|
|
}
|