mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-29 11:43:26 +01:00
50 lines
1.5 KiB
PHP
50 lines
1.5 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Auth;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use DarkGhostHunter\Larapass\Http\SendsWebAuthnRecoveryEmail;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Validation\ValidationException;
|
|
|
|
class WebAuthnDeviceLostController extends Controller
|
|
{
|
|
use SendsWebAuthnRecoveryEmail;
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| WebAuthn Device Lost Controller
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| This is a convenience controller that will allow your users who have lost
|
|
| their WebAuthn device to register another without using passwords. This
|
|
| will send him a link to his email to create new WebAuthn credentials.
|
|
|
|
|
*/
|
|
|
|
/**
|
|
* The recovery credentials to retrieve through validation rules.
|
|
*
|
|
* @return array|string[]
|
|
*/
|
|
protected function recoveryRules(): array
|
|
{
|
|
return [
|
|
'email' => 'required|exists:users,email',
|
|
];
|
|
}
|
|
|
|
|
|
/**
|
|
* Get the response for a successful account recovery link.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @param string $response
|
|
*
|
|
* @return \Illuminate\Http\RedirectResponse|\Illuminate\Http\JsonResponse
|
|
*/
|
|
protected function sendRecoveryLinkResponse(Request $request, string $response)
|
|
{
|
|
return response()->json(['message' => __('auth.webauthn.account_recovery_email_sent')]);
|
|
}
|
|
} |