PermissionsMiddleware.php 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. <?php
  2. namespace catchAdmin\permissions\middleware;
  3. use app\Request;
  4. use catchAdmin\permissions\model\Permissions;
  5. use catcher\CatchCacheKeys;
  6. use catcher\Code;
  7. use catcher\exceptions\PermissionForbiddenException;
  8. use think\facade\Cache;
  9. use catcher\Utils;
  10. class PermissionsMiddleware
  11. {
  12. /**
  13. *
  14. * @time 2019年12月12日
  15. * @param Request $request
  16. * @param \Closure $next
  17. * @return mixed
  18. * @throws \think\db\exception\DataNotFoundException
  19. * @throws \think\db\exception\DbException
  20. * @throws \think\db\exception\ModelNotFoundException
  21. * @throws PermissionForbiddenException
  22. */
  23. public function handle(Request $request, \Closure $next)
  24. {
  25. $rule = $request->rule()->getName();
  26. if (!$rule) {
  27. return $next($request);
  28. }
  29. // 模块忽略
  30. [$module, $controller, $action] = Utils::parseRule($rule);
  31. // toad
  32. if (in_array($module, $this->ignoreModule())) {
  33. return $next($request);
  34. }
  35. // 用户未登录
  36. $user = $request->user();
  37. if (!$user) {
  38. throw new PermissionForbiddenException('Login is invalid', Code::LOST_LOGIN);
  39. }
  40. // 超级管理员
  41. if (Utils::isSuperAdmin()) {
  42. return $next($request);
  43. }
  44. // Get 请求
  45. if ($this->allowGet($request)) {
  46. return $next($request);
  47. }
  48. // 判断权限
  49. $permission = property_exists($request, 'permission') ? $request->permission :
  50. $this->getPermission($module, $controller, $action);
  51. if (!$permission || !in_array($permission->id, Cache::get(CatchCacheKeys::USER_PERMISSIONS . $user->id))) {
  52. throw new PermissionForbiddenException();
  53. }
  54. return $next($request);
  55. }
  56. /**
  57. *
  58. * @time 2019年12月14日
  59. * @param $module
  60. * @param $controllerName
  61. * @param $action
  62. * @param $request
  63. * @throws \think\db\exception\DataNotFoundException
  64. * @throws \think\db\exception\DbException
  65. * @throws \think\db\exception\ModelNotFoundException
  66. * @return array|bool|\think\Model|null
  67. */
  68. protected function getPermission($module, $controllerName, $action)
  69. {
  70. $permissionMark = sprintf('%s@%s', $controllerName, $action);
  71. return Permissions::where('module', $module)->where('permission_mark', $permissionMark)->find();
  72. }
  73. /**
  74. * 忽略模块
  75. *
  76. * @time 2020年04月16日
  77. * @return array
  78. */
  79. protected function ignoreModule()
  80. {
  81. return ['login'];
  82. }
  83. /**
  84. * 操作日志
  85. *
  86. * @time 2020年04月16日
  87. * @param $creatorId
  88. * @param $permission
  89. * @return void
  90. */
  91. protected function operateEvent($creatorId, $permission)
  92. {
  93. // 操作日志
  94. $permission && event('operateLog', [
  95. 'creator_id' => $creatorId,
  96. 'permission' => $permission,
  97. ]);
  98. }
  99. /**
  100. * get allow
  101. *
  102. * @time 2020年10月12日
  103. * @param $request
  104. * @return bool
  105. * @throws \ReflectionException
  106. */
  107. protected function allowGet($request)
  108. {
  109. if (Utils::isMethodNeedAuth($request->rule()->getName())) {
  110. return false;
  111. }
  112. return $request->isGet() && config('catch.permissions.is_allow_get');
  113. }
  114. }