SIGN IN SIGN UP
BookStackApp / BookStack UNCLAIMED

A platform to create documentation/wiki content built with PHP & Laravel

0 0 18 PHP
<?php
namespace BookStack\Http\Middleware;
use Closure;
class CheckGuard
{
/**
* Handle an incoming request.
*
2021-06-26 15:23:15 +00:00
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @param string $allowedGuards
*
* @return mixed
*/
public function handle($request, Closure $next, ...$allowedGuards)
{
$activeGuard = config('auth.method');
if (!in_array($activeGuard, $allowedGuards)) {
session()->flash('error', trans('errors.permission'));
2021-06-26 15:23:15 +00:00
return redirect('/');
}
return $next($request);
}
}