DataRangScopeTrait.php 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. <?php
  2. namespace catchAdmin\permissions\model;
  3. use catcher\Utils;
  4. use think\facade\Db;
  5. trait DataRangScopeTrait
  6. {
  7. /**
  8. * 数据范围查询
  9. *
  10. * @param $roles
  11. * @return mixed
  12. * @author JaguarJack <njphper@gmail.com>
  13. * @date 2020/6/6
  14. */
  15. public function dataRange($roles = [])
  16. {
  17. if (Utils::isSuperAdmin()) {
  18. return $this;
  19. }
  20. $userIds = $this->getDepartmentUserIdsBy($roles);
  21. if (empty($userIds)) {
  22. return $this;
  23. }
  24. // 根据 creator_id 过滤
  25. $query = $this->whereIn($this->aliasField('creator_id'), $userIds);
  26. // 根据 area_id 过滤
  27. if ( $this->name == 'users' ) {
  28. return $query;
  29. }
  30. return $query;
  31. }
  32. /**
  33. * 获取部门IDs
  34. *
  35. * @param $roles
  36. * @return array
  37. * @author JaguarJack <njphper@gmail.com>
  38. * @date 2020/6/6
  39. */
  40. public function getDepartmentUserIdsBy($roles)
  41. {
  42. $userIds = [];
  43. $isAll = false;
  44. $user = request()->user();
  45. if (empty($roles)) {
  46. $roles = $user->getRoles();
  47. }
  48. foreach ($roles as $role) {
  49. switch ($role->data_range) {
  50. case Roles::ALL_DATA:
  51. $isAll = true;
  52. break;
  53. case Roles::SELF_CHOOSE:
  54. $departmentIds = array_merge(array_column($role->getDepartments()->toArray(), 'id'));
  55. $userIds = array_merge($userIds, $this->getUserIdsByDepartmentId($departmentIds));
  56. break;
  57. case Roles::SELF_DATA:
  58. $userIds[] = $user->id;
  59. break;
  60. case Roles::DEPARTMENT_DOWN_DATA:
  61. // 查一下下级部门
  62. $departmentIds = Department::where('parent_id', $user->department_id)->column('id');
  63. $departmentIds[] = $user->department_id;
  64. $userIds = array_merge([$user->id], $this->getUserIdsByDepartmentId($departmentIds));
  65. break;
  66. case Roles::DEPARTMENT_DATA:
  67. $userIds = array_merge($userIds, $this->getUserIdsByDepartmentId([$user->department_id]));
  68. break;
  69. default:
  70. break;
  71. }
  72. // 如果有全部数据 直接跳出
  73. if ($isAll) {
  74. break;
  75. }
  76. }
  77. return $userIds;
  78. }
  79. /**
  80. * 获取UserID
  81. *
  82. * @time 2020年07月04日
  83. * @param $id
  84. * @return array
  85. */
  86. protected function getUserIdsByDepartmentId(array $id)
  87. {
  88. return Users::whereIn('department_id', $id)->column('id');
  89. }
  90. /**
  91. * 获取管理区域
  92. */
  93. public function getManageAreaIds()
  94. {
  95. $area_ids = request()->user()->area_id;
  96. if (empty($area_ids)) {
  97. return '';
  98. }
  99. $area_arr = json_decode($area_ids, true);
  100. if (empty($area_arr)) {
  101. return '';
  102. }
  103. $area_ids = join(',', $area_arr);
  104. $ids = Db::table('area')->whereIn('id|province_id|city_id|district_id', $area_ids)->column('id');
  105. $ids = array_merge($area_arr, $ids);
  106. $areasIds = Db::table('areas')->whereIn('parent_id', $area_ids)->column('id');
  107. $ids = array_merge($areasIds, $ids);
  108. return $ids;
  109. }
  110. //获取授课班级
  111. public function getTeachClassIds()
  112. {
  113. $class_ids = request()->user()->classes;
  114. if ($class_ids) {
  115. return json_decode($class_ids);
  116. }
  117. return [];
  118. }
  119. //获取管理班级
  120. public function getManageClassIds()
  121. {
  122. $class_ids = request()->user()->manage_classes;
  123. if ($class_ids) {
  124. return json_decode($class_ids);
  125. }
  126. return [];
  127. }
  128. }