2021-06-26 23:23:15 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace BookStack\Http\Middleware;
|
2015-07-13 03:01:42 +08:00
|
|
|
|
2023-05-18 00:56:55 +08:00
|
|
|
use BookStack\App\Providers\RouteServiceProvider;
|
2015-07-13 03:01:42 +08:00
|
|
|
use Closure;
|
2021-10-31 04:29:59 +08:00
|
|
|
use Illuminate\Http\Request;
|
|
|
|
use Illuminate\Support\Facades\Auth;
|
2024-03-16 23:12:14 +08:00
|
|
|
use Symfony\Component\HttpFoundation\Response;
|
2015-07-13 03:01:42 +08:00
|
|
|
|
|
|
|
class RedirectIfAuthenticated
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Handle an incoming request.
|
|
|
|
*
|
2024-03-16 23:12:14 +08:00
|
|
|
* @param Closure(Request): (Response) $next
|
2015-07-13 03:01:42 +08:00
|
|
|
*/
|
2024-03-16 23:12:14 +08:00
|
|
|
public function handle(Request $request, Closure $next, string ...$guards): Response
|
2015-07-13 03:01:42 +08:00
|
|
|
{
|
2021-10-31 04:29:59 +08:00
|
|
|
$guards = empty($guards) ? [null] : $guards;
|
|
|
|
|
|
|
|
foreach ($guards as $guard) {
|
|
|
|
if (Auth::guard($guard)->check()) {
|
|
|
|
return redirect(RouteServiceProvider::HOME);
|
|
|
|
}
|
2015-07-13 03:01:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return $next($request);
|
|
|
|
}
|
2021-11-05 06:57:49 +08:00
|
|
|
}
|