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