mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-21 18:40:57 -04:00
62 lines
1.2 KiB
PHP
62 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Middleware;
|
|
|
|
use App\Models\Client;
|
|
use Closure;
|
|
use Illuminate\Contracts\Auth\Guard;
|
|
use Illuminate\Http\RedirectResponse;
|
|
use Illuminate\Http\Request;
|
|
use Session;
|
|
|
|
/**
|
|
* Class RedirectIfAuthenticated.
|
|
*/
|
|
class RedirectIfAuthenticated
|
|
{
|
|
/**
|
|
* The Guard implementation.
|
|
*
|
|
* @var Guard
|
|
*/
|
|
protected $auth;
|
|
|
|
/**
|
|
* Create a new filter instance.
|
|
*
|
|
* @param Guard $auth
|
|
*/
|
|
public function __construct(Guard $auth)
|
|
{
|
|
$this->auth = $auth;
|
|
}
|
|
|
|
/**
|
|
* Handle an incoming request.
|
|
*
|
|
* @param Request $request
|
|
* @param Closure $next
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function handle(Request $request, Closure $next, $guard = null)
|
|
{
|
|
if (auth()->guard($guard)->check()) {
|
|
Session::reflash();
|
|
|
|
switch ($guard) {
|
|
case 'client':
|
|
if (session('contact_key')) {
|
|
return redirect('/client/dashboard');
|
|
}
|
|
break;
|
|
default:
|
|
return redirect('/dashboard');
|
|
break;
|
|
}
|
|
}
|
|
|
|
return $next($request);
|
|
}
|
|
}
|