mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 09:18:54 +00:00
28 lines
590 B
PHP
28 lines
590 B
PHP
<?php
|
|
|
|
namespace App\Http\Middleware;
|
|
|
|
use App\Support\Google2FAAuthenticator;
|
|
use Closure;
|
|
|
|
class Google2FAMiddleware
|
|
{
|
|
/**
|
|
* Handle an incoming request.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @param \Closure $next
|
|
* @return mixed
|
|
*/
|
|
public function handle($request, Closure $next)
|
|
{
|
|
$authenticator = app(Google2FAAuthenticator::class)->boot($request);
|
|
|
|
if ($authenticator->isAuthenticated()) {
|
|
return $next($request);
|
|
}
|
|
|
|
return $authenticator->makeRequestOneTimePasswordResponse();
|
|
}
|
|
}
|