X-Git-Url: http://source.bookstackapp.com/bookstack/blobdiff_plain/c7a2d568bf693add30c8402d68d1f46f09a44c5b..refs/pull/3039/head:/app/Auth/User.php diff --git a/app/Auth/User.php b/app/Auth/User.php index 32179a1fb..540a8d7ab 100644 --- a/app/Auth/User.php +++ b/app/Auth/User.php @@ -1,52 +1,73 @@ - 'datetime']; + /** * The attributes excluded from the model's JSON form. + * * @var array */ protected $hidden = [ @@ -56,48 +77,51 @@ class User extends Model implements AuthenticatableContract, CanResetPasswordCon /** * This holds the user's permissions when loaded. - * @var array + * + * @var ?Collection */ protected $permissions; /** * This holds the default user when loaded. + * * @var null|User */ protected static $defaultUser = null; /** * Returns the default public user. - * @return User */ - public static function getDefault() + public static function getDefault(): self { if (!is_null(static::$defaultUser)) { return static::$defaultUser; } - - static::$defaultUser = static::where('system_name', '=', 'public')->first(); + + static::$defaultUser = static::query()->where('system_name', '=', 'public')->first(); + return static::$defaultUser; } /** * Check if the user is the default public user. - * @return bool */ - public function isDefault() + public function isDefault(): bool { return $this->system_name === 'public'; } /** * The roles that belong to the user. + * * @return BelongsToMany */ public function roles() { if ($this->id === 0) { - return ; + return; } + return $this->belongsToMany(Role::class); } @@ -111,12 +135,10 @@ class User extends Model implements AuthenticatableContract, CanResetPasswordCon /** * Check if the user has a role. - * @param $role - * @return mixed */ - public function hasSystemRole($role) + public function hasSystemRole(string $roleSystemName): bool { - return $this->roles->pluck('system_name')->contains($role); + return $this->roles->pluck('system_name')->contains($roleSystemName); } /** @@ -130,35 +152,43 @@ class User extends Model implements AuthenticatableContract, CanResetPasswordCon } } + /** + * Check if the user has a particular permission. + */ + public function can(string $permissionName): bool + { + if ($this->email === 'guest') { + return false; + } + + return $this->permissions()->contains($permissionName); + } + /** * Get all permissions belonging to a the current user. - * @param bool $cache - * @return \Illuminate\Database\Eloquent\Relations\HasManyThrough */ - public function permissions($cache = true) + protected function permissions(): Collection { - if (isset($this->permissions) && $cache) { + if (isset($this->permissions)) { return $this->permissions; } - $this->load('roles.permissions'); - $permissions = $this->roles->map(function ($role) { - return $role->permissions; - })->flatten()->unique(); - $this->permissions = $permissions; - return $permissions; + + $this->permissions = $this->newQuery()->getConnection()->table('role_user', 'ru') + ->select('role_permissions.name as name')->distinct() + ->leftJoin('permission_role', 'ru.role_id', '=', 'permission_role.role_id') + ->leftJoin('role_permissions', 'permission_role.permission_id', '=', 'role_permissions.id') + ->where('ru.user_id', '=', $this->id) + ->pluck('name'); + + return $this->permissions; } /** - * Check if the user has a particular permission. - * @param $permissionName - * @return bool + * Clear any cached permissions on this instance. */ - public function can($permissionName) + public function clearPermissionCache() { - if ($this->email === 'guest') { - return false; - } - return $this->permissions()->pluck('name')->contains($permissionName); + $this->permissions = null; } /** @@ -171,9 +201,8 @@ class User extends Model implements AuthenticatableContract, CanResetPasswordCon /** * Get the social account associated with this user. - * @return \Illuminate\Database\Eloquent\Relations\HasMany */ - public function socialAccounts() + public function socialAccounts(): HasMany { return $this->hasMany(SocialAccount::class); } @@ -181,7 +210,9 @@ class User extends Model implements AuthenticatableContract, CanResetPasswordCon /** * 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) @@ -194,11 +225,9 @@ class User extends Model implements AuthenticatableContract, CanResetPasswordCon } /** - * Returns the user's avatar, - * @param int $size - * @return string + * Returns a URL to the user's avatar. */ - public function getAvatar($size = 50) + public function getAvatar(int $size = 50): string { $default = url('/http/source.bookstackapp.com/user_avatar.png'); $imageId = $this->image_id; @@ -208,17 +237,17 @@ class User extends Model implements AuthenticatableContract, CanResetPasswordCon try { $avatar = $this->avatar ? url($this->avatar->getThumb($size, $size, false)) : $default; - } catch (\Exception $err) { + } catch (Exception $err) { $avatar = $default; } + return $avatar; } /** * Get the avatar for the user. - * @return \Illuminate\Database\Eloquent\Relations\BelongsTo */ - public function avatar() + public function avatar(): BelongsTo { return $this->belongsTo(Image::class, 'image_id'); } @@ -232,11 +261,32 @@ class User extends Model implements AuthenticatableContract, CanResetPasswordCon } /** - * Get the latest activity instance for this user. + * Get the favourite instances for this user. */ - public function latestActivity(): HasOne + public function favourites(): HasMany { - return $this->hasOne(Activity::class)->latest(); + return $this->hasMany(Favourite::class); + } + + /** + * Get the MFA values belonging to this use. + */ + public function mfaValues(): HasMany + { + return $this->hasMany(MfaValue::class); + } + + /** + * Get the last activity time for this user. + */ + public function scopeWithLastActivityAt(Builder $query) + { + $query->addSelect(['activities.created_at as last_activity_at']) + ->leftJoinSub(function (\Illuminate\Database\Query\Builder $query) { + $query->from('activities')->select('user_id') + ->selectRaw('max(created_at) as created_at') + ->groupBy('user_id'); + }, 'activities', 'users.id', '=', 'activities.user_id'); } /** @@ -245,6 +295,7 @@ class User extends Model implements AuthenticatableContract, CanResetPasswordCon public function getEditUrl(string $path = ''): string { $uri = '/settings/users/' . $this->id . '/' . trim($path, '/'); + return url(rtrim($uri, '/')); } @@ -253,15 +304,13 @@ class User extends Model implements AuthenticatableContract, CanResetPasswordCon */ public function getProfileUrl(): string { - return url('/http/source.bookstackapp.com/user/' . $this->id); + return url('/http/source.bookstackapp.com/user/' . $this->slug); } /** * Get a shortened version of the user's name. - * @param int $chars - * @return string */ - public function getShortName($chars = 8) + public function getShortName(int $chars = 8): string { if (mb_strlen($this->name) <= $chars) { return $this->name; @@ -277,7 +326,9 @@ class User extends Model implements AuthenticatableContract, CanResetPasswordCon /** * Send the password reset notification. - * @param string $token + * + * @param string $token + * * @return void */ public function sendPasswordResetNotification($token) @@ -286,10 +337,20 @@ class User extends Model implements AuthenticatableContract, CanResetPasswordCon } /** - * @inheritdoc + * {@inheritdoc} */ public function logDescriptor(): string { return "({$this->id}) {$this->name}"; } + + /** + * {@inheritdoc} + */ + public function refreshSlug(): string + { + $this->slug = app(SlugGenerator::class)->generate($this); + + return $this->slug; + } }