Admin.php 12 KB

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