2015-07-12 15:01:42 -04:00
|
|
|
<?php
|
|
|
|
|
2015-09-10 14:31:09 -04:00
|
|
|
namespace BookStack;
|
2015-07-12 15:01:42 -04:00
|
|
|
|
|
|
|
use Illuminate\Auth\Authenticatable;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
use Illuminate\Auth\Passwords\CanResetPassword;
|
|
|
|
use Illuminate\Contracts\Auth\Authenticatable as AuthenticatableContract;
|
|
|
|
use Illuminate\Contracts\Auth\CanResetPassword as CanResetPasswordContract;
|
|
|
|
|
|
|
|
class User extends Model implements AuthenticatableContract, CanResetPasswordContract
|
|
|
|
{
|
|
|
|
use Authenticatable, CanResetPassword;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The database table used by the model.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $table = 'users';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The attributes that are mass assignable.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2015-12-09 17:30:55 -05:00
|
|
|
protected $fillable = ['name', 'email', 'password', 'image_id'];
|
2015-07-12 15:01:42 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The attributes excluded from the model's JSON form.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $hidden = ['password', 'remember_token'];
|
2015-08-23 08:41:35 -04:00
|
|
|
|
2015-11-26 18:45:04 -05:00
|
|
|
/**
|
|
|
|
* This holds the user's permissions when loaded.
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $permissions;
|
|
|
|
|
2015-08-24 16:10:04 -04:00
|
|
|
/**
|
|
|
|
* Returns a default guest user.
|
|
|
|
*/
|
|
|
|
public static function getDefault()
|
|
|
|
{
|
|
|
|
return new static([
|
|
|
|
'email' => 'guest',
|
2015-11-26 18:45:04 -05:00
|
|
|
'name' => 'Guest'
|
2015-08-24 16:10:04 -04:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2015-08-29 10:03:42 -04:00
|
|
|
/**
|
|
|
|
* Permissions and roles
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The roles that belong to the user.
|
|
|
|
*/
|
|
|
|
public function roles()
|
|
|
|
{
|
2015-09-10 14:31:09 -04:00
|
|
|
return $this->belongsToMany('BookStack\Role');
|
2015-08-29 10:03:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getRoleAttribute()
|
|
|
|
{
|
2015-11-26 18:45:04 -05:00
|
|
|
return $this->roles()->with('permissions')->first();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Loads the user's permissions from thier role.
|
|
|
|
*/
|
|
|
|
private function loadPermissions()
|
|
|
|
{
|
|
|
|
if (isset($this->permissions)) return;
|
|
|
|
$this->load('roles.permissions');
|
|
|
|
$permissions = $this->roles[0]->permissions;
|
|
|
|
$permissionsArray = $permissions->pluck('name')->all();
|
|
|
|
$this->permissions = $permissionsArray;
|
2015-08-29 10:03:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if the user has a particular permission.
|
|
|
|
* @param $permissionName
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function can($permissionName)
|
|
|
|
{
|
2015-11-26 18:45:04 -05:00
|
|
|
if ($this->email == 'guest') {
|
2015-08-31 07:29:48 -04:00
|
|
|
return false;
|
|
|
|
}
|
2015-11-26 18:45:04 -05:00
|
|
|
$this->loadPermissions();
|
|
|
|
return array_search($permissionName, $this->permissions) !== false;
|
2015-08-29 10:03:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Attach a role to this user.
|
|
|
|
* @param Role $role
|
|
|
|
*/
|
|
|
|
public function attachRole(Role $role)
|
|
|
|
{
|
|
|
|
$this->attachRoleId($role->id);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Attach a role id to this user.
|
|
|
|
* @param $id
|
|
|
|
*/
|
|
|
|
public function attachRoleId($id)
|
|
|
|
{
|
|
|
|
$this->roles()->sync([$id]);
|
|
|
|
}
|
|
|
|
|
2015-09-04 15:40:36 -04:00
|
|
|
/**
|
|
|
|
* Get the social account associated with this user.
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\HasMany
|
|
|
|
*/
|
|
|
|
public function socialAccounts()
|
|
|
|
{
|
2015-09-10 14:31:09 -04:00
|
|
|
return $this->hasMany('BookStack\SocialAccount');
|
2015-09-04 15:40:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if the user has a social account,
|
|
|
|
* If a driver is passed it checks for that single account type.
|
|
|
|
* @param bool|string $socialDriver
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function hasSocialAccount($socialDriver = false)
|
|
|
|
{
|
2015-11-26 18:45:04 -05:00
|
|
|
if ($socialDriver === false) {
|
2015-09-04 15:40:36 -04:00
|
|
|
return $this->socialAccounts()->count() > 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->socialAccounts()->where('driver', '=', $socialDriver)->exists();
|
|
|
|
}
|
|
|
|
|
2015-08-23 08:41:35 -04:00
|
|
|
/**
|
|
|
|
* Returns the user's avatar,
|
|
|
|
* Uses Gravatar as the avatar service.
|
2015-08-29 10:03:42 -04:00
|
|
|
*
|
2015-08-23 08:41:35 -04:00
|
|
|
* @param int $size
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getAvatar($size = 50)
|
|
|
|
{
|
2015-12-14 15:30:40 -05:00
|
|
|
if ($this->image_id === 0 || $this->image_id === '0' || $this->image_id === null) return '/user_avatar.png';
|
2015-12-14 15:13:32 -05:00
|
|
|
return $this->avatar->getThumb($size, $size, false);
|
2015-12-09 17:30:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the avatar for the user.
|
|
|
|
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
|
|
*/
|
|
|
|
public function avatar()
|
|
|
|
{
|
|
|
|
return $this->belongsTo('BookStack\Image', 'image_id');
|
2015-08-23 08:41:35 -04:00
|
|
|
}
|
2015-09-04 15:40:36 -04:00
|
|
|
|
2015-09-21 15:54:11 -04:00
|
|
|
/**
|
|
|
|
* Get the url for editing this user.
|
|
|
|
* @return string
|
|
|
|
*/
|
2015-09-04 15:40:36 -04:00
|
|
|
public function getEditUrl()
|
|
|
|
{
|
|
|
|
return '/users/' . $this->id;
|
|
|
|
}
|
2015-07-12 15:01:42 -04:00
|
|
|
}
|