mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-12-02 05:03:52 +01:00
91 lines
2.9 KiB
PHP
91 lines
2.9 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace App\Http\Controllers\Auth;
|
||
|
|
||
|
use App\Http\Controllers\Controller;
|
||
|
use App\Providers\RouteServiceProvider;
|
||
|
use DarkGhostHunter\Larapass\Http\RecoversWebAuthn;
|
||
|
use DarkGhostHunter\Larapass\Facades\WebAuthn;
|
||
|
use Illuminate\Http\JsonResponse;
|
||
|
use Illuminate\Http\Request;
|
||
|
use Illuminate\Validation\ValidationException;
|
||
|
|
||
|
class WebAuthnRecoveryController extends Controller
|
||
|
{
|
||
|
use RecoversWebAuthn;
|
||
|
|
||
|
/*
|
||
|
|--------------------------------------------------------------------------
|
||
|
| WebAuthn Recovery Controller
|
||
|
|--------------------------------------------------------------------------
|
||
|
|
|
||
|
| When an user loses his device he will reach this controller to attach a
|
||
|
| new device. The user will attach a new device, and optionally, disable
|
||
|
| all others. Then he will be authenticated and redirected to your app.
|
||
|
|
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* Where to redirect users after resetting their password.
|
||
|
*
|
||
|
* @var string
|
||
|
*/
|
||
|
protected $redirectTo = RouteServiceProvider::HOME;
|
||
|
|
||
|
/**
|
||
|
* Create a new controller instance.
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function __construct()
|
||
|
{
|
||
|
// $this->middleware('guest');
|
||
|
// $this->middleware('throttle:10,1')->only('options', 'recover');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Returns the credential creation options to the user.
|
||
|
*
|
||
|
* @param \Illuminate\Http\Request $request
|
||
|
*
|
||
|
* @return \Illuminate\Http\JsonResponse
|
||
|
*/
|
||
|
public function options(Request $request): JsonResponse
|
||
|
{
|
||
|
$user = WebAuthn::getUser($request->validate($this->rules()));
|
||
|
|
||
|
// We will proceed only if the broker can find the user and the token is valid.
|
||
|
// If the user doesn't exists or the token is invalid, we will bail out with a
|
||
|
// HTTP 401 code because the user doing the request is not authorized for it.
|
||
|
abort_unless(WebAuthn::tokenExists($user, $request->input('token')), 401, __('auth.webauthn.invalid_recovery_token'));
|
||
|
|
||
|
return response()->json(WebAuthn::generateAttestation($user));
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get the response for a successful account recovery.
|
||
|
*
|
||
|
* @param \Illuminate\Http\Request $request
|
||
|
* @param string $response
|
||
|
*
|
||
|
* @return \Illuminate\Http\JsonResponse
|
||
|
*/
|
||
|
protected function sendRecoveryResponse(Request $request, string $response): JsonResponse
|
||
|
{
|
||
|
return response()->json(['message' => __('auth.webauthn.device_successfully_registered')]);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get the response for a failed account recovery.
|
||
|
*
|
||
|
* @param \Illuminate\Http\Request $request
|
||
|
* @param string $response
|
||
|
*
|
||
|
* @return \Illuminate\Http\JsonResponse|void
|
||
|
* @throws \Illuminate\Validation\ValidationException
|
||
|
*/
|
||
|
protected function sendRecoveryFailedResponse(Request $request, string $response): JsonResponse
|
||
|
{
|
||
|
throw ValidationException::withMessages(['email' => [trans($response)]]);
|
||
|
}
|
||
|
}
|