mirror of https://github.com/flucont/btcloud.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
430 B
19 lines
430 B
<?php
|
|
declare (strict_types=1);
|
|
|
|
namespace app\middleware;
|
|
|
|
|
|
class CheckAdmin
|
|
{
|
|
public function handle($request, \Closure $next)
|
|
{
|
|
if (!request()->islogin) {
|
|
if ($request->isAjax() || !$request->isGet()) {
|
|
return json(['code'=>-1, 'msg'=>'未登录'])->code(401);
|
|
}
|
|
return redirect((string)url('/admin/login'));
|
|
}
|
|
return $next($request);
|
|
}
|
|
}
|