Proxy.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305
  1. <?php
  2. namespace app\admin\controller\auth;
  3. use app\admin\model\AuthGroup;
  4. use app\admin\model\AuthGroupAccess;
  5. use app\common\controller\Backend;
  6. use fast\Random;
  7. use fast\Tree;
  8. use think\Db;
  9. use think\Validate;
  10. /**
  11. * 管理员管理
  12. *
  13. * @icon fa fa-users
  14. * @remark 一个管理员可以有多个角色组,左侧的菜单根据管理员所拥有的权限进行生成
  15. */
  16. class Proxy extends Backend
  17. {
  18. /**
  19. * @var \app\admin\model\Admin
  20. */
  21. protected $model = null;
  22. protected $selectpageFields = 'id,username,nickname,avatar';
  23. protected $searchFields = 'id,username,nickname';
  24. protected $childrenGroupIds = [];
  25. protected $childrenAdminIds = [];
  26. public function _initialize()
  27. {
  28. parent::_initialize();
  29. $this->model = model('Admin');
  30. $this->childrenAdminIds = $this->auth->getChildrenAdminIds($this->auth->isSuperAdmin());
  31. $this->childrenGroupIds = $this->auth->getChildrenGroupIds($this->auth->isSuperAdmin());
  32. $groupList = collection(AuthGroup::where('id', 'in', $this->childrenGroupIds)->select())->toArray();
  33. Tree::instance()->init($groupList);
  34. $groupdata = [];
  35. if ($this->auth->isSuperAdmin()) {
  36. $result = Tree::instance()->getTreeList(Tree::instance()->getTreeArray(0));
  37. foreach ($result as $k => $v) {
  38. $groupdata[$v['id']] = $v['name'];
  39. }
  40. } else {
  41. $result = [];
  42. $groups = $this->auth->getGroups();
  43. foreach ($groups as $m => $n) {
  44. $childlist = Tree::instance()->getTreeList(Tree::instance()->getTreeArray($n['id']));
  45. $temp = [];
  46. foreach ($childlist as $k => $v) {
  47. $temp[$v['id']] = $v['name'];
  48. }
  49. $result[__($n['name'])] = $temp;
  50. }
  51. $groupdata = $result;
  52. }
  53. $this->view->assign('groupdata', $groupdata);
  54. $this->assignconfig("admin", ['id' => $this->auth->id]);
  55. }
  56. /**
  57. * 查看
  58. */
  59. public function index()
  60. {
  61. //设置过滤方法
  62. $this->request->filter(['strip_tags', 'trim']);
  63. if ($this->request->isAjax()) {
  64. //如果发送的来源是Selectpage,则转发到Selectpage
  65. if ($this->request->request('keyField')) {
  66. return $this->selectpage();
  67. }
  68. $childrenGroupIds = $this->childrenGroupIds;
  69. $groupName = AuthGroup::where('id', 'in', $childrenGroupIds)
  70. ->column('id,name');
  71. $authGroupList = AuthGroupAccess::where('group_id', 'in', $childrenGroupIds)
  72. ->field('uid,group_id')
  73. ->select();
  74. $adminGroupName = [];
  75. foreach ($authGroupList as $k => $v) {
  76. if (isset($groupName[$v['group_id']])) {
  77. $adminGroupName[$v['uid']][$v['group_id']] = $groupName[$v['group_id']];
  78. }
  79. }
  80. $groups = $this->auth->getGroups();
  81. foreach ($groups as $m => $n) {
  82. $adminGroupName[$this->auth->id][$n['id']] = $n['name'];
  83. }
  84. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  85. $list = $this->model
  86. ->alias('a')
  87. ->where($where)
  88. ->where('a.proxy',1)
  89. ->join('auth_group_access aga', 'a.id = aga.uid', 'LEFT')
  90. ->group('a.id')
  91. ->where('aga.group_id', 'in', $childrenGroupIds)
  92. // ->where('id', 'in', $this->childrenAdminIds)
  93. ->field(['password', 'salt', 'token'], true)
  94. ->order($sort, $order)
  95. ->paginate($limit);
  96. foreach ($list as $k => &$v) {
  97. $groups = isset($adminGroupName[$v['id']]) ? $adminGroupName[$v['id']] : [];
  98. $v['groups'] = implode(',', array_keys($groups));
  99. $v['groups_text'] = implode(',', array_values($groups));
  100. }
  101. unset($v);
  102. $result = array("total" => $list->total(), "rows" => $list->items());
  103. return json($result);
  104. }
  105. return $this->view->fetch();
  106. }
  107. /**
  108. * 添加
  109. */
  110. public function add()
  111. {
  112. if ($this->request->isPost()) {
  113. $this->token();
  114. $params = $this->request->post("row/a");
  115. if ($params) {
  116. Db::startTrans();
  117. try {
  118. if (!Validate::is($params['password'], '\S{6,16}')) {
  119. exception(__("Please input correct password"));
  120. }
  121. $params['salt'] = Random::alnum();
  122. $params['sub']=0;
  123. $params['proxy']=1;
  124. $params['password'] = md5(md5($params['password']) . $params['salt']);
  125. $params['avatar'] = '/assets/img/avatar.png'; //设置新管理员默认头像。
  126. $result = $this->model->validate('Admin.add')->save($params);
  127. if ($result === false) {
  128. exception($this->model->getError());
  129. }
  130. $group = $this->request->post("group/a");
  131. //过滤不允许的组别,避免越权
  132. $group = array_intersect($this->childrenGroupIds, $group);
  133. if (!$group) {
  134. exception(__('The parent group exceeds permission limit'));
  135. }
  136. $dataset = [];
  137. foreach ($group as $value) {
  138. $dataset[] = ['uid' => $this->model->id, 'group_id' => $value];
  139. }
  140. model('AuthGroupAccess')->saveAll($dataset);
  141. Db::commit();
  142. } catch (\Exception $e) {
  143. Db::rollback();
  144. $this->error($e->getMessage());
  145. }
  146. $this->success();
  147. }
  148. $this->error(__('Parameter %s can not be empty', ''));
  149. }
  150. return $this->view->fetch();
  151. }
  152. /**
  153. * 编辑
  154. */
  155. public function edit($ids = null)
  156. {
  157. $row = $this->model->get(['id' => $ids]);
  158. if (!$row) {
  159. $this->error(__('No Results were found'));
  160. }
  161. if (!in_array($row->id, $this->childrenAdminIds)) {
  162. $this->error(__('You have no permission'));
  163. }
  164. if ($this->request->isPost()) {
  165. $this->token();
  166. $params = $this->request->post("row/a");
  167. unset($params['sub']);
  168. if ($params) {
  169. Db::startTrans();
  170. try {
  171. if ($params['password']) {
  172. if (!Validate::is($params['password'], '\S{6,16}')) {
  173. exception(__("Please input correct password"));
  174. }
  175. $params['salt'] = Random::alnum();
  176. $params['password'] = md5(md5($params['password']) . $params['salt']);
  177. } else {
  178. unset($params['password'], $params['salt']);
  179. }
  180. //这里需要针对username和email做唯一验证
  181. $adminValidate = \think\Loader::validate('Admin');
  182. $adminValidate->rule([
  183. 'username' => 'require|regex:\w{3,20}|unique:admin,username,' . $row->id,
  184. 'email' => 'require|email|unique:admin,email,' . $row->id,
  185. 'password' => 'regex:\S{32}',
  186. ]);
  187. unset($params['proxy'],$params['sub']);
  188. $result = $row->validate('Admin.edit')->save($params);
  189. if ($result === false) {
  190. exception($row->getError());
  191. }
  192. // 先移除所有权限
  193. model('AuthGroupAccess')->where('uid', $row->id)->delete();
  194. $group = $this->request->post("group/a");
  195. // 过滤不允许的组别,避免越权
  196. $group = array_intersect($this->childrenGroupIds, $group);
  197. if (!$group) {
  198. exception(__('The parent group exceeds permission limit'));
  199. }
  200. $dataset = [];
  201. foreach ($group as $value) {
  202. $dataset[] = ['uid' => $row->id, 'group_id' => $value];
  203. }
  204. model('AuthGroupAccess')->saveAll($dataset);
  205. Db::commit();
  206. } catch (\Exception $e) {
  207. Db::rollback();
  208. $this->error($e->getMessage());
  209. }
  210. $this->success();
  211. }
  212. $this->error(__('Parameter %s can not be empty', ''));
  213. }
  214. $grouplist = $this->auth->getGroups($row['id']);
  215. $groupids = [];
  216. foreach ($grouplist as $k => $v) {
  217. $groupids[] = $v['id'];
  218. }
  219. $this->view->assign("row", $row);
  220. $this->view->assign("groupids", $groupids);
  221. return $this->view->fetch();
  222. }
  223. /**
  224. * 删除
  225. */
  226. public function del($ids = "")
  227. {
  228. if (!$this->request->isPost()) {
  229. $this->error(__("Invalid parameters"));
  230. }
  231. $ids = $ids ? $ids : $this->request->post("ids");
  232. if ($ids) {
  233. $ids = array_intersect($this->childrenAdminIds, array_filter(explode(',', $ids)));
  234. // 避免越权删除管理员
  235. $childrenGroupIds = $this->childrenGroupIds;
  236. $adminList = $this->model->where('id', 'in', $ids)->where('id', 'in', function ($query) use ($childrenGroupIds) {
  237. $query->name('auth_group_access')->where('group_id', 'in', $childrenGroupIds)->field('uid');
  238. })->select();
  239. if ($adminList) {
  240. $deleteIds = [];
  241. foreach ($adminList as $k => $v) {
  242. $deleteIds[] = $v->id;
  243. }
  244. $deleteIds = array_values(array_diff($deleteIds, [$this->auth->id]));
  245. if ($deleteIds) {
  246. Db::startTrans();
  247. try {
  248. $this->model->destroy($deleteIds);
  249. model('AuthGroupAccess')->where('uid', 'in', $deleteIds)->delete();
  250. Db::commit();
  251. } catch (\Exception $e) {
  252. Db::rollback();
  253. $this->error($e->getMessage());
  254. }
  255. $this->success();
  256. }
  257. $this->error(__('No rows were deleted'));
  258. }
  259. }
  260. $this->error(__('You have no permission'));
  261. }
  262. /**
  263. * 批量更新
  264. * @internal
  265. */
  266. public function multi($ids = "")
  267. {
  268. // 管理员禁止批量操作
  269. $this->error();
  270. }
  271. /**
  272. * 下拉搜索
  273. */
  274. public function selectpage()
  275. {
  276. $this->dataLimit = 'auth';
  277. $this->dataLimitField = 'id';
  278. return parent::selectpage();
  279. }
  280. }