Roles.php 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. <?php
  2. namespace catchAdmin\permissions\model;
  3. use catchAdmin\permissions\controller\Role;
  4. use catchAdmin\permissions\model\search\RolesSearch;
  5. use catchAdmin\permissions\model\DataRangScopeTrait;
  6. use catcher\base\CatchModel;
  7. use think\facade\Db;
  8. use catcher\Utils;
  9. class Roles extends CatchModel
  10. {
  11. use HasDepartmentsTrait;
  12. use HasPermissionsTrait;
  13. use RolesSearch;
  14. use DataRangScopeTrait;
  15. protected $name = 'roles';
  16. public const ALL_DATA = 1; // 全部数据
  17. public const SELF_CHOOSE = 2; // 自定义数据
  18. public const SELF_DATA = 3; // 本人数据
  19. public const DEPARTMENT_DATA = 4; // 部门数据
  20. public const DEPARTMENT_DOWN_DATA = 5; // 部门及以下数据
  21. protected $field = [
  22. 'id', //
  23. 'role_name', // 角色名
  24. 'identify', // 身份标识
  25. 'parent_id', // 父级ID
  26. 'creator_id', // 创建者
  27. 'data_range', // 数据范围
  28. 'description', // 角色备注
  29. 'created_at', // 创建时间
  30. 'updated_at', // 更新时间
  31. 'deleted_at', // 删除状态,0未删除 >0 已删除
  32. ];
  33. public function getList()
  34. {
  35. $where = array();
  36. if (!Utils::isSuperAdmin()) {
  37. $user = request()->user();
  38. /* $role_id=Db::table("user_has_roles")->where('uid',$user->id)->value('role_id');
  39. $parentiIds = $this->getParentRoleIds($role_id);
  40. $childIds = $this->getChildrenRoleIds($role_id);
  41. $roleIds = array_merge($parentiIds,$childIds);
  42. $where[] = ['id','in',$roleIds]; */
  43. $role_ids = Db::table("user_has_roles")->where('uid',$user->id)->column('role_id');
  44. $childIds = $this->getChildrenRoleIds($role_ids);
  45. $roleIds = array_merge($role_ids,$childIds);
  46. if (!empty($roleIds)) {
  47. $where[] = ['id','in',$roleIds];
  48. }
  49. }
  50. // $no_display_roles = $this->whereIn('identify','student,teacher,parents,schoolmaster')->column('id');
  51. // var_dump($this->getLastSql());
  52. return $this->where($where)
  53. // ->whereNotIn('id',$no_display_roles)
  54. ->catchSearch()
  55. ->order('id', 'desc')
  56. ->where('id','<>',1) //超级管理员账号不显示
  57. ->select()
  58. ->toTree();
  59. }
  60. /**
  61. * 判断是否是全部数据权限
  62. * @time 2021年09月17日
  63. * @return datarange
  64. */
  65. public function isAllDataRange(){
  66. $user = request()->user();
  67. if (empty($roles)) {
  68. $roles = $user->getRoles();
  69. }
  70. //判断是否
  71. foreach ($roles as $role) {
  72. // 如果有全部数据 直接跳出
  73. if ($role->data_range == Roles::ALL_DATA) {
  74. return true;
  75. }
  76. }
  77. return false;
  78. }
  79. //用户管理获取角色(除了家长、学生、教师、班主任、校长等)
  80. public function getPartList()
  81. {
  82. $where = array();
  83. if (!Utils::isSuperAdmin()) {
  84. $user = request()->user();
  85. $roleIds = Db::table("user_has_roles")->where('uid',$user->id)->column('role_id');
  86. if (!empty($roleIds)) {
  87. $where[] = ['id','in',$roleIds];
  88. }
  89. }
  90. // 获取学校角色
  91. $no_display_roles = static::getDeviceUserRoleids();
  92. return $this->where($where)
  93. ->whereNotIn('id',$no_display_roles)
  94. ->catchSearch()
  95. ->order('id', 'desc')
  96. ->select()
  97. ->toTree();
  98. }
  99. /**
  100. *
  101. * @time 2019年12月08日
  102. * @return \think\model\relation\BelongsToMany
  103. */
  104. public function users(): \think\model\relation\BelongsToMany
  105. {
  106. return $this->belongsToMany(Users::class, 'user_has_roles', 'uid', 'role_id');
  107. }
  108. /**
  109. * 获取子角色IDS
  110. *
  111. * @time 2020年11月04日
  112. * @param $id
  113. * @throws DbException
  114. * @throws \think\db\exception\DataNotFoundException
  115. * @throws \think\db\exception\ModelNotFoundException
  116. * @return mixed
  117. */
  118. public static function getChildrenRoleIds($roleIds)
  119. {
  120. $roleIds = Roles::field(['id', 'parent_id'])->select()->getAllChildrenIds($roleIds);
  121. // $roleIds[] = $id;
  122. return $roleIds;
  123. }
  124. /**
  125. * 获取上级至顶级角色ids
  126. */
  127. public function getParentRoleIds($id)
  128. {
  129. $ids = [];
  130. $pid = Roles::where('id', $id)->value('parent_id');
  131. if ($pid > 0) {
  132. $ids[] = $pid;
  133. $parentId = $this->getParentRoleIds($pid);
  134. $ids = array_merge($ids, $parentId);
  135. }
  136. return $ids;
  137. }
  138. /**
  139. * 获取设备用户角色id
  140. */
  141. public static function getDeviceUserRoleids()
  142. {
  143. return static::whereIn('identify','personal,group_card_user,group_badge_user')->column('id');
  144. }
  145. /**
  146. * 根据角色得标识获取所有用户得id
  147. */
  148. public static function getUserIdByRoleIdentify($Identify)
  149. {
  150. $role_id = Roles::where('identify',$Identify)->value('id');
  151. $users_id = Db::name('user_has_roles')->where('role_id',$role_id)->field('uid')->select();
  152. return $users_id;
  153. }
  154. }