This commit is contained in:
候学杰 2018-05-03 11:33:48 +08:00
parent 00cfb2c7c3
commit e78cf5de0e

View File

@ -18,16 +18,16 @@ class CheckRole
abort(403, '未定义权限');
}
if (is_string($roles[$action]) && $roles[$action] == '*') {
return $next($request);
}
$user = $request->user();
if (empty($user) || empty($user['roles'])) {
abort(403, '无权访问');
}
if (is_string($roles[$action]) && $roles[$action] == '*') {
return $next($request);
}
if (empty(array_intersect($roles[$action], $user['roles']))) {
abort(403, '无权访问,请联系管理员授权');
}