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;
|
2020-03-06 15:07:09 +01:00
|
|
|
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;
|
2021-10-15 23:46:21 +02:00
|
|
|
use Illuminate\Support\Facades\Log;
|
2022-11-14 17:13:24 +01:00
|
|
|
use Laragear\WebAuthn\WebAuthnAuthentication;
|
2022-11-22 15:15:52 +01:00
|
|
|
use Laravel\Passport\HasApiTokens;
|
2023-02-17 17:12:53 +01:00
|
|
|
use Illuminate\Support\Arr;
|
2019-05-20 07:37:41 +02:00
|
|
|
|
2022-03-15 14:47:07 +01:00
|
|
|
class User extends Authenticatable implements WebAuthnAuthenticatable
|
2019-05-20 07:37:41 +02:00
|
|
|
{
|
2022-11-14 17:13:24 +01:00
|
|
|
use WebAuthnAuthentication, WebAuthnManageCredentials;
|
2021-12-02 13:15:53 +01:00
|
|
|
use HasApiTokens, HasFactory, Notifiable;
|
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 = [
|
|
|
|
'name', 'email', 'password',
|
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
2021-12-02 13:15:53 +01:00
|
|
|
* The attributes that should be hidden for serialization.
|
2019-05-20 07:37:41 +02:00
|
|
|
*
|
2022-11-14 17:13:24 +01:00
|
|
|
* @var array<int,string>
|
2019-05-20 07:37:41 +02:00
|
|
|
*/
|
|
|
|
protected $hidden = [
|
2022-11-14 17:13:24 +01:00
|
|
|
'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
|
|
|
*
|
2022-11-14 17:13:24 +01:00
|
|
|
* @var array<string,string>
|
2019-05-20 07:37:41 +02:00
|
|
|
*/
|
|
|
|
protected $casts = [
|
|
|
|
'email_verified_at' => 'datetime',
|
2023-02-17 17:12:53 +01:00
|
|
|
'is_admin' => 'boolean',
|
2019-05-20 07:37:41 +02:00
|
|
|
];
|
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));
|
2022-11-22 15:15:52 +01:00
|
|
|
|
2021-10-15 23:46:21 +02:00
|
|
|
Log::info('Password reset token sent');
|
2020-01-14 23:43:17 +01:00
|
|
|
}
|
2020-12-01 18:34:20 +01:00
|
|
|
|
2023-02-17 17:12:53 +01:00
|
|
|
/**
|
|
|
|
* Get Preferences attribute
|
|
|
|
*
|
|
|
|
* @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
|
|
|
/**
|
2020-12-02 23:48:16 +01:00
|
|
|
* set Email attribute
|
2022-11-22 15:15:52 +01:00
|
|
|
*
|
|
|
|
* @param string $value
|
2020-12-01 18:34:20 +01:00
|
|
|
*/
|
2022-08-26 15:57:18 +02:00
|
|
|
public function setEmailAttribute($value) : void
|
2020-12-01 18:34:20 +01:00
|
|
|
{
|
2020-12-02 23:48:16 +01:00
|
|
|
$this->attributes['email'] = strtolower($value);
|
2020-12-01 18:34:20 +01:00
|
|
|
}
|
2022-03-15 14:47:07 +01:00
|
|
|
|
|
|
|
/**
|
2022-11-14 17:13:24 +01:00
|
|
|
* Returns an WebAuthnAuthenticatable user from a given Credential ID.
|
2022-03-15 14:47:07 +01:00
|
|
|
*
|
2022-11-14 17:13:24 +01:00
|
|
|
* @param string $id
|
|
|
|
* @return WebAuthnAuthenticatable|null
|
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
|
|
|
{
|
2022-11-14 17:13:24 +01:00
|
|
|
return static::whereHas(
|
|
|
|
'webauthnCredentials',
|
|
|
|
static function ($query) use ($id) {
|
|
|
|
return $query->whereKey($id);
|
|
|
|
}
|
|
|
|
)->first();
|
2022-03-15 14:47:07 +01:00
|
|
|
}
|
2019-05-20 07:37:41 +02:00
|
|
|
}
|