mirror of
				https://github.com/BookStackApp/BookStack.git
				synced 2025-11-03 02:13:16 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			43 lines
		
	
	
		
			932 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			932 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php namespace BookStack\Http\Middleware;
 | 
						|
 | 
						|
use Closure;
 | 
						|
use Illuminate\Contracts\Auth\Guard;
 | 
						|
 | 
						|
class RedirectIfAuthenticated
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * The Guard implementation.
 | 
						|
     *
 | 
						|
     * @var Guard
 | 
						|
     */
 | 
						|
    protected $auth;
 | 
						|
 | 
						|
    /**
 | 
						|
     * Create a new filter instance.
 | 
						|
     *
 | 
						|
     * @param  Guard $auth
 | 
						|
     * @return void
 | 
						|
     */
 | 
						|
    public function __construct(Guard $auth)
 | 
						|
    {
 | 
						|
        $this->auth = $auth;
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Handle an incoming request.
 | 
						|
     *
 | 
						|
     * @param  \Illuminate\Http\Request $request
 | 
						|
     * @param  \Closure                 $next
 | 
						|
     * @return mixed
 | 
						|
     */
 | 
						|
    public function handle($request, Closure $next)
 | 
						|
    {
 | 
						|
        $requireConfirmation = setting('registration-confirmation');
 | 
						|
        if ($this->auth->check() && (!$requireConfirmation || ($requireConfirmation && $this->auth->user()->email_confirmed))) {
 | 
						|
            return redirect('/');
 | 
						|
        }
 | 
						|
 | 
						|
        return $next($request);
 | 
						|
    }
 | 
						|
}
 |