mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-26 02:04:52 +01:00
52 lines
1.5 KiB
PHP
52 lines
1.5 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Middleware;
|
|
|
|
use Illuminate\Support\Facades\App;
|
|
use Illuminate\Auth\Middleware\Authenticate as Middleware;
|
|
|
|
class Authenticate extends Middleware
|
|
{
|
|
/**
|
|
* Determine if the user is logged in to any of the given guards.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @param array $guards
|
|
* @return void
|
|
*
|
|
* @throws \Illuminate\Auth\AuthenticationException
|
|
*/
|
|
protected function authenticate($request, array $guards)
|
|
{
|
|
if (empty($guards)) {
|
|
// Will retreive the default guard
|
|
$guards = [null];
|
|
} else {
|
|
// We replace routes guard by the reverse proxy guard if necessary
|
|
$proxyGuard = 'reverse-proxy-guard';
|
|
|
|
if (config('auth.defaults.guard') === $proxyGuard) {
|
|
$guards = [$proxyGuard];
|
|
}
|
|
}
|
|
|
|
foreach ($guards as $guard) {
|
|
if ($this->auth->guard($guard)->check()) {
|
|
$this->auth->shouldUse($guard);
|
|
|
|
// We now have an authenticated user so we override the locale already set
|
|
// by the SetLanguage global middleware
|
|
$lang = $this->auth->guard()->user()->preferences['lang'] ?? null;
|
|
|
|
if ($lang && in_array($lang, config('2fauth.locales')) && !App::isLocale($lang)) {
|
|
App::setLocale($lang);
|
|
}
|
|
|
|
return;
|
|
}
|
|
}
|
|
|
|
$this->unauthenticated($request, $guards);
|
|
}
|
|
}
|