30 lines
702 B
PHP
30 lines
702 B
PHP
<?php
|
|
|
|
namespace App\Actions\PasswordReset;
|
|
|
|
use App\Exceptions\UserNotFoundException;
|
|
use App\Models\User;
|
|
use App\Services\OTPService;
|
|
|
|
final readonly class ResendOTPAction
|
|
{
|
|
public function __construct(
|
|
private OTPService $otpService,
|
|
private SendOTPToUserAction $otpToUserAction
|
|
) {}
|
|
|
|
/**
|
|
* @throws \Throwable
|
|
*/
|
|
public function execute(): void
|
|
{
|
|
$user = \Session::get('otp_user_id') ? User::find(\Session::get('otp_user_id')) : null;
|
|
throw_if(! $user, new UserNotFoundException('User not found'));
|
|
|
|
$otp = $this->otpService->generate($user);
|
|
|
|
$this->otpToUserAction->execute(['user' => $user, 'otp' => $otp]);
|
|
|
|
}
|
|
}
|