Sub.php 14 KB

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