44 lines
1.1 KiB
PHP
44 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Middleware;
|
|
|
|
use Illuminate\Auth\Middleware\Authenticate as Middleware;
|
|
use Illuminate\Auth\AuthenticationException;
|
|
|
|
class Authenticate extends Middleware
|
|
{
|
|
/**
|
|
* Get the path the user should be redirected to when they are not authenticated.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @return string|null
|
|
*/
|
|
protected function redirectTo($request)
|
|
{
|
|
if (! $request->expectsJson()) {
|
|
return route('login');
|
|
}
|
|
}
|
|
|
|
protected function authenticate($request, array $guards)
|
|
{
|
|
\Illuminate\Support\Facades\Log::info('Auth Headers:', [
|
|
'Authorization' => $request->header('Authorization'),
|
|
'Accept' => $request->header('Accept')
|
|
]);
|
|
if (empty($guards)) {
|
|
$guards = [null];
|
|
}
|
|
|
|
foreach ($guards as $guard) {
|
|
if ($this->auth->guard($guard)->check()) {
|
|
return $this->auth->shouldUse($guard);
|
|
}
|
|
}
|
|
|
|
throw new AuthenticationException(
|
|
'Unauthenticated.', $guards
|
|
);
|
|
}
|
|
}
|