29 lines
584 B
PHP
29 lines
584 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Http\Middleware;
|
|
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Auth\AuthManager;
|
|
|
|
class RedirectIfAuthenticated
|
|
{
|
|
/**
|
|
* RedirectIfAuthenticated constructor.
|
|
*/
|
|
public function __construct(private AuthManager $authManager)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* Handle an incoming request.
|
|
*/
|
|
public function handle(Request $request, \Closure $next, string $guard = null): mixed
|
|
{
|
|
if ($this->authManager->guard($guard)->check()) {
|
|
return redirect()->route('index');
|
|
}
|
|
|
|
return $next($request);
|
|
}
|
|
}
|