coolify/app/Http/Livewire/ForcePasswordReset.php

44 lines
1.2 KiB
PHP
Raw Normal View History

2023-08-15 14:11:38 +02:00
<?php
namespace App\Http\Livewire;
use Illuminate\Support\Facades\Hash;
2023-08-15 14:27:45 +02:00
use DanHarrin\LivewireRateLimiting\WithRateLimiting;
2023-08-15 14:11:38 +02:00
use Livewire\Component;
class ForcePasswordReset extends Component
{
2023-08-15 14:27:45 +02:00
use WithRateLimiting;
2023-08-15 14:11:38 +02:00
public string $email;
public string $password;
public string $password_confirmation;
protected $rules = [
'email' => 'required|email',
'password' => 'required|min:8',
'password_confirmation' => 'required|same:password',
];
public function mount()
{
2023-08-15 14:11:38 +02:00
$this->email = auth()->user()->email;
}
public function submit()
{
2023-08-15 14:11:38 +02:00
try {
2023-08-15 14:27:45 +02:00
$this->rateLimit(10);
2023-08-15 14:11:38 +02:00
$this->validate();
$firstLogin = auth()->user()->created_at == auth()->user()->updated_at;
2023-08-15 14:11:38 +02:00
auth()->user()->forceFill([
'password' => Hash::make($this->password),
'force_password_reset' => false,
])->save();
if ($firstLogin) {
send_internal_notification('First login for ' . auth()->user()->email);
}
return redirect()->route('dashboard');
} catch (\Exception $e) {
return general_error_handler(err: $e, that: $this);
2023-08-15 14:11:38 +02:00
}
}
}