Group.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293
  1. <?php
  2. namespace app\admin\controller\auth;
  3. use app\admin\model\AuthGroup;
  4. use app\common\controller\Backend;
  5. use fast\Tree;
  6. /**
  7. * 角色组
  8. *
  9. * @icon fa fa-group
  10. * @remark 角色组可以有多个,角色有上下级层级关系,如果子角色有角色组和管理员的权限则可以派生属于自己组别下级的角色组或管理员
  11. */
  12. class Group extends Backend
  13. {
  14. /**
  15. * @var \app\admin\model\AuthGroup
  16. */
  17. protected $model = null;
  18. //当前登录管理员所有子组别
  19. protected $childrenGroupIds = [];
  20. //当前组别列表数据
  21. protected $groupdata = [];
  22. //无需要权限判断的方法
  23. protected $noNeedRight = ['roletree'];
  24. public function _initialize()
  25. {
  26. parent::_initialize();
  27. $this->model = model('AuthGroup');
  28. $this->childrenGroupIds = $this->auth->getChildrenGroupIds(true);
  29. $groupList = collection(AuthGroup::where('id', 'in', $this->childrenGroupIds)->select())->toArray();
  30. Tree::instance()->init($groupList);
  31. $result = [];
  32. if ($this->auth->isSuperAdmin()) {
  33. $result = Tree::instance()->getTreeList(Tree::instance()->getTreeArray(0));
  34. } else {
  35. $groups = $this->auth->getGroups();
  36. foreach ($groups as $m => $n) {
  37. $result = array_merge($result, Tree::instance()->getTreeList(Tree::instance()->getTreeArray($n['pid'])));
  38. }
  39. }
  40. $groupName = [];
  41. foreach ($result as $k => $v) {
  42. $groupName[$v['id']] = $v['name'];
  43. }
  44. $this->groupdata = $groupName;
  45. $this->assignconfig("admin", ['id' => $this->auth->id, 'group_ids' => $this->auth->getGroupIds()]);
  46. $this->view->assign('groupdata', $this->groupdata);
  47. }
  48. /**
  49. * 查看
  50. */
  51. public function index()
  52. {
  53. if ($this->request->isAjax()) {
  54. $list = AuthGroup::all(array_keys($this->groupdata));
  55. $list = collection($list)->toArray();
  56. $groupList = [];
  57. foreach ($list as $k => $v) {
  58. $groupList[$v['id']] = $v;
  59. }
  60. $list = [];
  61. foreach ($this->groupdata as $k => $v) {
  62. if (isset($groupList[$k])) {
  63. $groupList[$k]['name'] = $v;
  64. $list[] = $groupList[$k];
  65. }
  66. }
  67. $total = count($list);
  68. $result = array("total" => $total, "rows" => $list);
  69. return json($result);
  70. }
  71. return $this->view->fetch();
  72. }
  73. /**
  74. * 添加
  75. */
  76. public function add()
  77. {
  78. if ($this->request->isPost()) {
  79. $this->token();
  80. $params = $this->request->post("row/a", [], 'strip_tags');
  81. $params['rules'] = explode(',', $params['rules']);
  82. if (!in_array($params['pid'], $this->childrenGroupIds)) {
  83. $this->error(__('The parent group can not be its own child'));
  84. }
  85. $parentmodel = model("AuthGroup")->get($params['pid']);
  86. if (!$parentmodel) {
  87. $this->error(__('The parent group can not found'));
  88. }
  89. // 父级别的规则节点
  90. $parentrules = explode(',', $parentmodel->rules);
  91. // 当前组别的规则节点
  92. $currentrules = $this->auth->getRuleIds();
  93. $rules = $params['rules'];
  94. // 如果父组不是超级管理员则需要过滤规则节点,不能超过父组别的权限
  95. $rules = in_array('*', $parentrules) ? $rules : array_intersect($parentrules, $rules);
  96. // 如果当前组别不是超级管理员则需要过滤规则节点,不能超当前组别的权限
  97. $rules = in_array('*', $currentrules) ? $rules : array_intersect($currentrules, $rules);
  98. $params['rules'] = implode(',', $rules);
  99. if ($params) {
  100. $this->model->create($params);
  101. $this->success();
  102. }
  103. $this->error();
  104. }
  105. return $this->view->fetch();
  106. }
  107. /**
  108. * 编辑
  109. */
  110. public function edit($ids = null)
  111. {
  112. $row = $this->model->get(['id' => $ids]);
  113. if (!$row) {
  114. $this->error(__('No Results were found'));
  115. }
  116. if ($this->request->isPost()) {
  117. $this->token();
  118. $params = $this->request->post("row/a", [], 'strip_tags');
  119. // 父节点不能是它自身的子节点
  120. if (!in_array($params['pid'], $this->childrenGroupIds)) {
  121. $this->error(__('The parent group can not be its own child'));
  122. }
  123. $params['rules'] = explode(',', $params['rules']);
  124. $parentmodel = model("AuthGroup")->get($params['pid']);
  125. if (!$parentmodel) {
  126. $this->error(__('The parent group can not found'));
  127. }
  128. // 父级别的规则节点
  129. $parentrules = explode(',', $parentmodel->rules);
  130. // 当前组别的规则节点
  131. $currentrules = $this->auth->getRuleIds();
  132. $rules = $params['rules'];
  133. // 如果父组不是超级管理员则需要过滤规则节点,不能超过父组别的权限
  134. $rules = in_array('*', $parentrules) ? $rules : array_intersect($parentrules, $rules);
  135. // 如果当前组别不是超级管理员则需要过滤规则节点,不能超当前组别的权限
  136. $rules = in_array('*', $currentrules) ? $rules : array_intersect($currentrules, $rules);
  137. $params['rules'] = implode(',', $rules);
  138. if ($params) {
  139. $row->save($params);
  140. $this->success();
  141. }
  142. $this->error();
  143. return;
  144. }
  145. $this->view->assign("row", $row);
  146. return $this->view->fetch();
  147. }
  148. /**
  149. * 删除
  150. */
  151. public function del($ids = "")
  152. {
  153. if ($ids) {
  154. $ids = explode(',', $ids);
  155. $grouplist = $this->auth->getGroups();
  156. $group_ids = array_map(function ($group) {
  157. return $group['id'];
  158. }, $grouplist);
  159. // 移除掉当前管理员所在组别
  160. $ids = array_diff($ids, $group_ids);
  161. // 循环判断每一个组别是否可删除
  162. $grouplist = $this->model->where('id', 'in', $ids)->select();
  163. $groupaccessmodel = model('AuthGroupAccess');
  164. foreach ($grouplist as $k => $v) {
  165. // 当前组别下有管理员
  166. $groupone = $groupaccessmodel->get(['group_id' => $v['id']]);
  167. if ($groupone) {
  168. $ids = array_diff($ids, [$v['id']]);
  169. continue;
  170. }
  171. // 当前组别下有子组别
  172. $groupone = $this->model->get(['pid' => $v['id']]);
  173. if ($groupone) {
  174. $ids = array_diff($ids, [$v['id']]);
  175. continue;
  176. }
  177. }
  178. if (!$ids) {
  179. $this->error(__('You can not delete group that contain child group and administrators'));
  180. }
  181. $count = $this->model->where('id', 'in', $ids)->delete();
  182. if ($count) {
  183. $this->success();
  184. }
  185. }
  186. $this->error();
  187. }
  188. /**
  189. * 批量更新
  190. * @internal
  191. */
  192. public function multi($ids = "")
  193. {
  194. // 组别禁止批量操作
  195. $this->error();
  196. }
  197. /**
  198. * 读取角色权限树
  199. *
  200. * @internal
  201. */
  202. public function roletree()
  203. {
  204. $this->loadlang('auth/group');
  205. $model = model('AuthGroup');
  206. $id = $this->request->post("id");
  207. $pid = $this->request->post("pid");
  208. $parentGroupModel = $model->get($pid);
  209. $currentGroupModel = null;
  210. if ($id) {
  211. $currentGroupModel = $model->get($id);
  212. }
  213. if (($pid || $parentGroupModel) && (!$id || $currentGroupModel)) {
  214. $id = $id ? $id : null;
  215. $ruleList = collection(model('AuthRule')->order('weigh', 'desc')->order('id', 'asc')->select())->toArray();
  216. //读取父类角色所有节点列表
  217. $parentRuleList = [];
  218. if (in_array('*', explode(',', $parentGroupModel->rules))) {
  219. $parentRuleList = $ruleList;
  220. } else {
  221. $parentRuleIds = explode(',', $parentGroupModel->rules);
  222. foreach ($ruleList as $k => $v) {
  223. if (in_array($v['id'], $parentRuleIds)) {
  224. $parentRuleList[] = $v;
  225. }
  226. }
  227. }
  228. $ruleTree = new Tree();
  229. $groupTree = new Tree();
  230. //当前所有正常规则列表
  231. $ruleTree->init($parentRuleList);
  232. //角色组列表
  233. $groupTree->init(collection(model('AuthGroup')->where('id', 'in', $this->childrenGroupIds)->select())->toArray());
  234. //读取当前角色下规则ID集合
  235. $adminRuleIds = $this->auth->getRuleIds();
  236. //是否是超级管理员
  237. $superadmin = $this->auth->isSuperAdmin();
  238. //当前拥有的规则ID集合
  239. $currentRuleIds = $id ? explode(',', $currentGroupModel->rules) : [];
  240. if (!$id || !in_array($pid, $this->childrenGroupIds) || !in_array($pid, $groupTree->getChildrenIds($id, true))) {
  241. $parentRuleList = $ruleTree->getTreeList($ruleTree->getTreeArray(0), 'name');
  242. $hasChildrens = [];
  243. foreach ($parentRuleList as $k => $v) {
  244. if ($v['haschild']) {
  245. $hasChildrens[] = $v['id'];
  246. }
  247. }
  248. $parentRuleIds = array_map(function ($item) {
  249. return $item['id'];
  250. }, $parentRuleList);
  251. $nodeList = [];
  252. foreach ($parentRuleList as $k => $v) {
  253. if (!$superadmin && !in_array($v['id'], $adminRuleIds)) {
  254. continue;
  255. }
  256. if ($v['pid'] && !in_array($v['pid'], $parentRuleIds)) {
  257. continue;
  258. }
  259. $state = array('selected' => in_array($v['id'], $currentRuleIds) && !in_array($v['id'], $hasChildrens));
  260. $nodeList[] = array('id' => $v['id'], 'parent' => $v['pid'] ? $v['pid'] : '#', 'text' => __($v['title']), 'type' => 'menu', 'state' => $state);
  261. }
  262. $this->success('', null, $nodeList);
  263. } else {
  264. $this->error(__('Can not change the parent to child'));
  265. }
  266. } else {
  267. $this->error(__('Group not found'));
  268. }
  269. }
  270. }