ConvoyPanel/app/Models/User.php
2024-10-15 00:33:19 +00:00

107 lines
2.8 KiB
PHP

<?php
namespace App\Models;
use App\Enums\Api\ApiKeyType;
use Eloquent;
use Illuminate\Auth\Authenticatable;
use Illuminate\Contracts\Auth\Access\Authorizable as AuthorizableContract;
use Illuminate\Contracts\Auth\Authenticatable as AuthenticatableContract;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Foundation\Auth\Access\Authorizable;
use Illuminate\Notifications\Notifiable;
use Illuminate\Support\Str;
use Laravel\Sanctum\HasApiTokens;
use Laravel\Sanctum\NewAccessToken;
/**
* @mixin Eloquent
*/
class User extends Model implements AuthenticatableContract, AuthorizableContract
{
use HasApiTokens, HasFactory, Notifiable, Authenticatable, Authorizable;
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
*/
protected $fillable = [
'name',
'email',
'password',
'root_admin',
];
/**
* Rules verifying that the data being stored matches the expectations of the database.
*/
public static array $validationRules = [
'email' => 'required|email|between:1,191|unique:users,email',
'name' => 'required|string|between:1,191',
'password' => ['sometimes', 'min:8', 'max:191', 'regex:/^(?=.*[a-z])(?=.*[A-Z])(?=.*[0-9])(?=.*[!@#\$%\^&\*])(?=.{8,})/u', 'string'],
'root_admin' => 'boolean',
];
/**
* The attributes that should be hidden for serialization.
*
* @var array<int, string>
*/
protected $hidden = [
'password',
'remember_token',
'email_verified_at',
'two_factor_secret',
'two_factor_recovery_codes',
'two_factor_confirmed_at',
];
/**
* Get the attributes that should be cast.
*
* @return array<string, string>
*/
protected function casts(): array
{
return [
'email_verified_at' => 'datetime',
'root_admin' => 'boolean',
];
}
public function createToken(
string $name,
ApiKeyType $type,
array $abilities = ['*'],
): NewAccessToken {
$token = $this->tokens()->create([
'type' => $type,
'name' => $name,
'token' => hash('sha256', $plainTextToken = Str::random(40)),
'abilities' => $abilities,
]);
return new NewAccessToken($token, $token->getKey().'|'.$plainTextToken);
}
public function servers(): HasMany
{
return $this->hasMany(Server::class);
}
public function getRouteKeyName(): string
{
return 'id';
}
protected static function boot(): void
{
parent::boot();
static::creating(function (User $user) {
$user->uuid = Str::uuid()->toString();
});
}
}