2FAuth/app/Models/User.php

190 lines
5.3 KiB
PHP
Raw Normal View History

2019-05-20 07:37:41 +02:00
<?php
2021-12-02 13:15:53 +01:00
namespace App\Models;
2019-05-20 07:37:41 +02:00
2022-11-22 15:15:52 +01:00
use App\Models\Traits\WebAuthnManageCredentials;
use Illuminate\Auth\Events\PasswordReset;
use Illuminate\Auth\Notifications\ResetPassword;
2022-11-22 15:15:52 +01:00
use Illuminate\Database\Eloquent\Factories\HasFactory;
2019-05-20 07:37:41 +02:00
use Illuminate\Foundation\Auth\User as Authenticatable;
2022-11-22 15:15:52 +01:00
use Illuminate\Notifications\Notifiable;
use Illuminate\Support\Facades\Hash;
use Illuminate\Support\Str;
use Laragear\WebAuthn\WebAuthnAuthentication;
2022-11-22 15:15:52 +01:00
use Laravel\Passport\HasApiTokens;
2019-05-20 07:37:41 +02:00
2023-03-02 15:24:57 +01:00
/**
* App\Models\User
*
* @property int $id
* @property string $name
* @property string $email
* @property \Illuminate\Support\Carbon|null $email_verified_at
* @property string $password
* @property string|null $remember_token
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property string|null $last_seen_at
* @property bool $is_admin
* @property \Illuminate\Support\Collection<array-key,array-value> $preferences
* @property-read \Illuminate\Database\Eloquent\Collection|\Laravel\Passport\Client[] $clients
* @property-read int|null $clients_count
* @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\Group[] $groups
* @property-read int|null $groups_count
* @property-read \Illuminate\Notifications\DatabaseNotificationCollection|\Illuminate\Notifications\DatabaseNotification[] $notifications
* @property-read int|null $notifications_count
* @property-read \Illuminate\Database\Eloquent\Collection|\Laravel\Passport\Token[] $tokens
* @property-read int|null $tokens_count
* @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\TwoFAccount[] $twofaccounts
* @property-read int|null $twofaccounts_count
* @property-read \Illuminate\Database\Eloquent\Collection|\Laragear\WebAuthn\Models\WebAuthnCredential[] $webAuthnCredentials
* @property-read int|null $web_authn_credentials_count
*/
2022-03-15 14:47:07 +01:00
class User extends Authenticatable implements WebAuthnAuthenticatable
2019-05-20 07:37:41 +02:00
{
2021-12-02 13:15:53 +01:00
use HasApiTokens, HasFactory, Notifiable;
2023-12-20 16:55:58 +01:00
use WebAuthnAuthentication, WebAuthnManageCredentials;
2019-05-20 07:37:41 +02:00
/**
* The attributes that are mass assignable.
*
2021-12-02 13:15:53 +01:00
* @var string[]
2019-05-20 07:37:41 +02:00
*/
protected $fillable = [
2023-12-20 16:55:58 +01:00
'name', 'email', 'password', 'oauth_id', 'oauth_provider',
2019-05-20 07:37:41 +02:00
];
/**
2021-12-02 13:15:53 +01:00
* The attributes that should be hidden for serialization.
2019-05-20 07:37:41 +02:00
*
* @var array<int,string>
2019-05-20 07:37:41 +02:00
*/
protected $hidden = [
'password',
'remember_token',
2019-05-20 07:37:41 +02:00
];
/**
2021-12-02 13:15:53 +01:00
* The attributes that should be cast.
2019-05-20 07:37:41 +02:00
*
* @var array<string,string>
2019-05-20 07:37:41 +02:00
*/
protected $casts = [
'email_verified_at' => 'datetime',
2023-08-01 16:33:55 +02:00
'password' => 'hashed',
'is_admin' => 'boolean',
'twofaccounts_count' => 'integer',
'groups_count' => 'integer',
2019-05-20 07:37:41 +02:00
];
2023-03-10 22:59:46 +01:00
/**
2023-03-10 22:59:46 +01:00
* Scope a query to only include admin users.
*
* @param \Illuminate\Database\Eloquent\Builder<User> $query
* @return \Illuminate\Database\Eloquent\Builder<User>
*/
public function scopeAdmins($query)
{
return $query->where('is_admin', true);
}
2020-01-14 23:43:17 +01:00
/**
* Determine if the user is an administrator.
*
2024-03-29 09:42:54 +01:00
* @return bool
*/
public function isAdministrator()
{
return $this->is_admin;
}
/**
* Grant administrator permissions to the user.
*
* @return void
*/
public function promoteToAdministrator(bool $promote = true)
{
$this->is_admin = $promote;
}
/**
* Reset user password with a 12 chars random string.
*
* @return void
*/
public function resetPassword()
{
$this->password = Hash::make(Str::password(12));
event(new PasswordReset($this));
}
2020-01-14 23:43:17 +01:00
/**
* Send the password reset notification.
*
* @param string $token
* @return void
*/
public function sendPasswordResetNotification($token)
{
$this->notify(new ResetPassword($token));
}
2020-12-01 18:34:20 +01:00
/**
* Get Preferences attribute
2023-02-25 21:12:10 +01:00
*
* @param string $value
* @return \Illuminate\Support\Collection<array-key, mixed>
*/
public function getPreferencesAttribute($value)
{
$preferences = collect(config('2fauth.preferences'))->merge(json_decode($value)); /** @phpstan-ignore-line */
return $preferences;
}
2020-12-01 18:34:20 +01:00
/**
* set Email attribute
2022-11-22 15:15:52 +01:00
*
* @param string $value
2020-12-01 18:34:20 +01:00
*/
public function setEmailAttribute($value) : void
2020-12-01 18:34:20 +01:00
{
$this->attributes['email'] = strtolower($value);
2020-12-01 18:34:20 +01:00
}
2022-03-15 14:47:07 +01:00
/**
* Returns an WebAuthnAuthenticatable user from a given Credential ID.
2022-03-15 14:47:07 +01:00
*/
2022-11-22 15:15:52 +01:00
public static function getFromCredentialId(string $id) : ?WebAuthnAuthenticatable
2022-03-15 14:47:07 +01:00
{
return static::whereHas(
'webauthnCredentials',
static function ($query) use ($id) {
return $query->whereKey($id);
}
)->first();
2022-03-15 14:47:07 +01:00
}
/**
* Get the TwoFAccounts of the user.
*
* @return \Illuminate\Database\Eloquent\Relations\HasMany<TwoFAccount>
*/
public function twofaccounts()
{
return $this->hasMany(\App\Models\TwoFAccount::class);
}
/**
* Get the Groups of the user.
*
* @return \Illuminate\Database\Eloquent\Relations\HasMany<Group>
*/
public function groups()
{
return $this->hasMany(\App\Models\Group::class);
}
2019-05-20 07:37:41 +02:00
}