Admin.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325
  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 Admin 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. ->where($where)
  87. ->where('proxy',0)
  88. ->where('sub',0)
  89. ->where('id', 'in', $this->childrenAdminIds)
  90. ->field(['password', 'salt', 'token'], true)
  91. ->order($sort, $order)
  92. ->paginate($limit);
  93. foreach ($list as $k => &$v) {
  94. $groups = isset($adminGroupName[$v['id']]) ? $adminGroupName[$v['id']] : [];
  95. $v['groups'] = implode(',', array_keys($groups));
  96. $v['groups_text'] = implode(',', array_values($groups));
  97. }
  98. unset($v);
  99. $result = array("total" => $list->total(), "rows" => $list->items());
  100. return json($result);
  101. }
  102. return $this->view->fetch();
  103. }
  104. /**
  105. * 查看
  106. */
  107. public function index2()
  108. {
  109. //设置过滤方法
  110. $this->request->filter(['strip_tags', 'trim']);
  111. //如果发送的来源是Selectpage,则转发到Selectpage
  112. if ($this->request->request('keyField')) {
  113. return $this->selectpage();
  114. }
  115. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  116. $list = $this->model
  117. ->where($where)
  118. ->where('proxy',0)
  119. ->where('sub',1)
  120. ->field(['password', 'salt', 'token'], true)
  121. ->order($sort, $order)
  122. ->paginate($limit);
  123. print_r($this->model->getLastSql());
  124. $result = array("total" => $list->total(), "rows" => $list->items());
  125. return json($result);
  126. }
  127. /**
  128. * 添加
  129. */
  130. public function add()
  131. {
  132. if ($this->request->isPost()) {
  133. $this->token();
  134. $params = $this->request->post("row/a");
  135. if ($params) {
  136. Db::startTrans();
  137. try {
  138. if (!Validate::is($params['password'], '\S{6,16}')) {
  139. exception(__("Please input correct password"));
  140. }
  141. $params['salt'] = Random::alnum();
  142. $params['password'] = md5(md5($params['password']) . $params['salt']);
  143. $params['avatar'] = '/assets/img/avatar.png'; //设置新管理员默认头像。
  144. $result = $this->model->validate('Admin.add')->save($params);
  145. if ($result === false) {
  146. exception($this->model->getError());
  147. }
  148. $group = $this->request->post("group/a");
  149. //过滤不允许的组别,避免越权
  150. $group = array_intersect($this->childrenGroupIds, $group);
  151. if (!$group) {
  152. exception(__('The parent group exceeds permission limit'));
  153. }
  154. $dataset = [];
  155. foreach ($group as $value) {
  156. $dataset[] = ['uid' => $this->model->id, 'group_id' => $value];
  157. }
  158. model('AuthGroupAccess')->saveAll($dataset);
  159. Db::commit();
  160. } catch (\Exception $e) {
  161. Db::rollback();
  162. $this->error($e->getMessage());
  163. }
  164. $this->success();
  165. }
  166. $this->error(__('Parameter %s can not be empty', ''));
  167. }
  168. return $this->view->fetch();
  169. }
  170. /**
  171. * 编辑
  172. */
  173. public function edit($ids = null)
  174. {
  175. $row = $this->model->get(['id' => $ids]);
  176. if (!$row) {
  177. $this->error(__('No Results were found'));
  178. }
  179. if (!in_array($row->id, $this->childrenAdminIds)) {
  180. $this->error(__('You have no permission'));
  181. }
  182. if ($this->request->isPost()) {
  183. $this->token();
  184. $params = $this->request->post("row/a");
  185. if ($params) {
  186. Db::startTrans();
  187. try {
  188. if ($params['password']) {
  189. if (!Validate::is($params['password'], '\S{6,16}')) {
  190. exception(__("Please input correct password"));
  191. }
  192. $params['salt'] = Random::alnum();
  193. $params['password'] = md5(md5($params['password']) . $params['salt']);
  194. } else {
  195. unset($params['password'], $params['salt']);
  196. }
  197. //这里需要针对username和email做唯一验证
  198. $adminValidate = \think\Loader::validate('Admin');
  199. $adminValidate->rule([
  200. 'username' => 'require|regex:\w{3,12}|unique:admin,username,' . $row->id,
  201. 'email' => 'require|email|unique:admin,email,' . $row->id,
  202. 'password' => 'regex:\S{32}',
  203. ]);
  204. $result = $row->validate('Admin.edit')->save($params);
  205. if ($result === false) {
  206. exception($row->getError());
  207. }
  208. // 先移除所有权限
  209. model('AuthGroupAccess')->where('uid', $row->id)->delete();
  210. $group = $this->request->post("group/a");
  211. // 过滤不允许的组别,避免越权
  212. $group = array_intersect($this->childrenGroupIds, $group);
  213. if (!$group) {
  214. exception(__('The parent group exceeds permission limit'));
  215. }
  216. $dataset = [];
  217. foreach ($group as $value) {
  218. $dataset[] = ['uid' => $row->id, 'group_id' => $value];
  219. }
  220. model('AuthGroupAccess')->saveAll($dataset);
  221. Db::commit();
  222. } catch (\Exception $e) {
  223. Db::rollback();
  224. $this->error($e->getMessage());
  225. }
  226. $this->success();
  227. }
  228. $this->error(__('Parameter %s can not be empty', ''));
  229. }
  230. $grouplist = $this->auth->getGroups($row['id']);
  231. $groupids = [];
  232. foreach ($grouplist as $k => $v) {
  233. $groupids[] = $v['id'];
  234. }
  235. $this->view->assign("row", $row);
  236. $this->view->assign("groupids", $groupids);
  237. return $this->view->fetch();
  238. }
  239. /**
  240. * 删除
  241. */
  242. public function del($ids = "")
  243. {
  244. if (!$this->request->isPost()) {
  245. $this->error(__("Invalid parameters"));
  246. }
  247. $ids = $ids ? $ids : $this->request->post("ids");
  248. if ($ids) {
  249. $ids = array_intersect($this->childrenAdminIds, array_filter(explode(',', $ids)));
  250. // 避免越权删除管理员
  251. $childrenGroupIds = $this->childrenGroupIds;
  252. $adminList = $this->model->where('id', 'in', $ids)->where('id', 'in', function ($query) use ($childrenGroupIds) {
  253. $query->name('auth_group_access')->where('group_id', 'in', $childrenGroupIds)->field('uid');
  254. })->select();
  255. if ($adminList) {
  256. $deleteIds = [];
  257. foreach ($adminList as $k => $v) {
  258. $deleteIds[] = $v->id;
  259. }
  260. $deleteIds = array_values(array_diff($deleteIds, [$this->auth->id]));
  261. if ($deleteIds) {
  262. Db::startTrans();
  263. try {
  264. $this->model->destroy($deleteIds);
  265. model('AuthGroupAccess')->where('uid', 'in', $deleteIds)->delete();
  266. Db::commit();
  267. } catch (\Exception $e) {
  268. Db::rollback();
  269. $this->error($e->getMessage());
  270. }
  271. $this->success();
  272. }
  273. $this->error(__('No rows were deleted'));
  274. }
  275. }
  276. $this->error(__('You have no permission'));
  277. }
  278. /**
  279. * 批量更新
  280. * @internal
  281. */
  282. public function multi($ids = "")
  283. {
  284. // 管理员禁止批量操作
  285. $this->error();
  286. }
  287. /**
  288. * 下拉搜索
  289. */
  290. public function selectpage()
  291. {
  292. $this->dataLimit = 'auth';
  293. $this->dataLimitField = 'id';
  294. return parent::selectpage();
  295. }
  296. }