2015-08-29 10:03:42 -04:00
|
|
|
<?php
|
|
|
|
|
2015-09-10 14:31:09 -04:00
|
|
|
namespace BookStack;
|
2015-08-29 10:03:42 -04:00
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
class Role extends Model
|
|
|
|
{
|
2015-09-05 12:42:05 -04:00
|
|
|
/**
|
2016-01-11 17:41:05 -05:00
|
|
|
* Sets the default role name for newly registered users.
|
2015-09-05 12:42:05 -04:00
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected static $default = 'viewer';
|
|
|
|
|
2015-08-29 10:03:42 -04:00
|
|
|
/**
|
|
|
|
* The roles that belong to the role.
|
|
|
|
*/
|
|
|
|
public function users()
|
|
|
|
{
|
2015-09-10 14:31:09 -04:00
|
|
|
return $this->belongsToMany('BookStack\User');
|
2015-08-29 10:03:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The permissions that belong to the role.
|
|
|
|
*/
|
|
|
|
public function permissions()
|
|
|
|
{
|
2015-09-10 14:31:09 -04:00
|
|
|
return $this->belongsToMany('BookStack\Permission');
|
2015-08-29 10:03:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a permission to this role.
|
|
|
|
* @param Permission $permission
|
|
|
|
*/
|
|
|
|
public function attachPermission(Permission $permission)
|
|
|
|
{
|
|
|
|
$this->permissions()->attach($permission->id);
|
|
|
|
}
|
|
|
|
|
2015-09-05 12:42:05 -04:00
|
|
|
/**
|
|
|
|
* Get an instance of the default role.
|
|
|
|
* @return Role
|
|
|
|
*/
|
|
|
|
public static function getDefault()
|
|
|
|
{
|
2016-01-02 09:48:35 -05:00
|
|
|
return static::getRole(static::$default);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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 12:42:05 -04:00
|
|
|
}
|
2015-08-29 10:03:42 -04:00
|
|
|
}
|