权限校验问题

This commit is contained in:
ufec 2021-05-06 16:50:33 +08:00
parent 89199a240f
commit eaf5058e55

View File

@ -23,8 +23,8 @@ class AdminPermission {
*/ */
public function handle($request, \Closure $next): Response { public function handle($request, \Closure $next): Response {
$userInfo = $request->API_ADMIN_USER_INFO; $userInfo = $request->API_ADMIN_USER_INFO;
// rule里包含了rule(路由规则), ruoter(完整路由)
if (!$this->checkAuth($userInfo['id'], $request->pathinfo())) { if (!$this->checkAuth($userInfo['id'], $request->rule()->getRule())) {
return json([ return json([
'code' => ReturnCode::INVALID, 'code' => ReturnCode::INVALID,
'msg' => '非常抱歉,您没有权限这么做!', 'msg' => '非常抱歉,您没有权限这么做!',