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