69 lines
1.6 KiB
PHP

<?php
namespace App\Models;
use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
use Laravel\Sanctum\HasApiTokens;
class User extends Authenticatable implements MustVerifyEmail
{
use HasApiTokens, HasFactory, Notifiable;
protected $fillable = [
'name',
'email',
'password',
'role',
'specialization',
'hourly_rate',
'session_rate',
'target_sessions_per_day',
'target_sessions_per_month',
'working_schedule',
'two_factor_secret',
'two_factor_recovery_codes',
'two_factor_enabled',
];
protected $hidden = [
'password',
'remember_token',
'two_factor_secret',
'two_factor_recovery_codes',
];
protected $casts = [
'email_verified_at' => 'datetime',
'password' => 'hashed',
'two_factor_enabled' => 'boolean',
'two_factor_recovery_codes' => 'array',
];
public function isTwoFactorEnabled(): bool
{
return $this->two_factor_enabled === true;
}
public function getTwoFactorSecret(): ?string
{
return $this->two_factor_secret ? decrypt($this->two_factor_secret) : null;
}
public function setTwoFactorSecret(string $secret): void
{
$this->two_factor_secret = encrypt($secret);
}
public function generateRecoveryCodes(): array
{
$codes = [];
for ($i = 0; $i < 8; $i++) {
$codes[] = bin2hex(random_bytes(4));
}
return $codes;
}
}