Sub.php 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390
  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. $list = $this->model
  95. ->alias('a')
  96. ->where($where)
  97. ->where('a.sub',1)
  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 add()
  120. {
  121. $platform = AuthGroup::$servicePlatform;
  122. if ($this->request->isPost()) {
  123. $this->token();
  124. $params = $this->request->post("row/a");
  125. unset($params['proxy']);
  126. if ($params) {
  127. Db::startTrans();
  128. try {
  129. //客服
  130. $service = [];
  131. foreach($platform as $key=>$val){
  132. $tmpKey = 'flow_service_'.$key;
  133. $service[$tmpKey] = $params[$tmpKey] ?? 1;
  134. unset($params[$tmpKey]);
  135. }
  136. $params['flow_service'] = $service ? json_encode($service) : null;
  137. if (!empty($params['password'])) {
  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. } else {
  144. unset($params['password'], $params['salt']);
  145. }
  146. $params['sub'] = 1;
  147. $params['proxy'] = 0;
  148. $params['avatar'] = isset($params['avatar'])?$params['avatar']:'/assets/img/avatar.png'; //设置新管理员默认头像。
  149. unset($params['id']);
  150. if(!$this->admin('is_manager')){
  151. unset($params['wx_qr']);
  152. }
  153. $result = $this->model->validate('Admin.subAdd')->save($params);
  154. if ($result === false) {
  155. exception($this->model->getError());
  156. }
  157. $group = $this->request->post("group/a");
  158. //过滤不允许的组别,避免越权
  159. $group = array_intersect($this->childrenGroupIds, $group);
  160. if (!$group) {
  161. exception(__('The parent group exceeds permission limit'));
  162. }
  163. $dataset = [];
  164. foreach ($group as $value) {
  165. $dataset[] = ['uid' => $this->model->id, 'group_id' => $value];
  166. }
  167. model('AuthGroupAccess')->saveAll($dataset);
  168. $goods = [];
  169. foreach(Mobile::where('status', 0)->where('type', 2)->column('id') as $key=>$val){
  170. $goods[$key]['mobile_id'] = $val;
  171. $goods[$key]['proxy_id'] = $this->model->id;
  172. $goods[$key]['proxy_status'] = 0;
  173. }
  174. if($goods) (new MobileProxyStatus())->saveAll($goods);
  175. Db::commit();
  176. } catch (\Exception $e) {
  177. Db::rollback();
  178. $this->error($e->getMessage());
  179. }
  180. $this->success();
  181. }
  182. $this->error(__('Parameter %s can not be empty', ''));
  183. }
  184. $this->view->assign('serviceType', AuthGroup::$serviceType);
  185. $this->view->assign('platform', $platform);
  186. return $this->view->fetch();
  187. }
  188. /**
  189. * 编辑
  190. */
  191. public function edit($ids = null)
  192. {
  193. $row = $this->model->get(['id' => $ids]);
  194. if (!$row) {
  195. $this->error(__('No Results were found'));
  196. }
  197. if (!in_array($row->id, $this->childrenAdminIds)) {
  198. $this->error(__('You have no permission'));
  199. }
  200. $platform = AuthGroup::$servicePlatform;
  201. if ($this->request->isPost()) {
  202. $this->token();
  203. $params = $this->request->post("row/a");
  204. if ($params) {
  205. Db::startTrans();
  206. try {
  207. //客服
  208. $service = [];
  209. foreach($platform as $key=>$val){
  210. $tmpKey = 'flow_service_'.$key;
  211. $service[$tmpKey] = $params[$tmpKey] ?? 1;
  212. unset($params[$tmpKey]);
  213. }
  214. $params['flow_service'] = $service ? json_encode($service) : null;
  215. if (!empty($params['password'])) {
  216. if (!Validate::is($params['password'], '\S{6,16}')) {
  217. exception(__("Please input correct password"));
  218. }
  219. $params['salt'] = Random::alnum();
  220. $params['password'] = md5(md5($params['password']) . $params['salt']);
  221. } else {
  222. unset($params['password'], $params['salt']);
  223. }
  224. if(!$this->admin('is_manager')){
  225. unset($params['wx_qr']);
  226. }
  227. //这里需要针对username和email做唯一验证
  228. $adminValidate = \think\Loader::validate('Admin');
  229. $adminValidate->rule([
  230. 'username' => 'require|regex:\w{3,20}|unique:admin,username,' . $row->id,
  231. 'email' => 'require|email|unique:admin,email,' . $row->id,
  232. 'password' => 'regex:\S{32}',
  233. ]);
  234. unset($params['proxy'],$params['sub']);
  235. $result = $row->validate('Admin.edit')->save($params);
  236. if ($result === false) {
  237. exception($row->getError());
  238. }
  239. // 先移除所有权限
  240. model('AuthGroupAccess')->where('uid', $row->id)->delete();
  241. $group = $this->request->post("group/a");
  242. // 过滤不允许的组别,避免越权
  243. $group = array_intersect($this->childrenGroupIds, $group);
  244. if (!$group) {
  245. exception(__('The parent group exceeds permission limit'));
  246. }
  247. $dataset = [];
  248. foreach ($group as $value) {
  249. $dataset[] = ['uid' => $row->id, 'group_id' => $value];
  250. }
  251. model('AuthGroupAccess')->saveAll($dataset);
  252. // $goods = [];
  253. // foreach(Mobile::where('status', 0)->where('type', 2)->column('id') as $key=>$val){
  254. // $goods[$key]['mobile_id'] = $val;
  255. // $goods[$key]['proxy_id'] = $row->id;
  256. // $goods[$key]['proxy_status'] = 0;
  257. // }
  258. // if($goods) (new MobileProxyStatus())->saveAll($goods);
  259. Db::commit();
  260. } catch (\Exception $e) {
  261. Db::rollback();
  262. $this->error($e->getMessage());
  263. }
  264. $this->success();
  265. }
  266. $this->error(__('Parameter %s can not be empty', ''));
  267. }
  268. $grouplist = $this->auth->getGroups($row['id']);
  269. $groupids = [];
  270. foreach ($grouplist as $k => $v) {
  271. $groupids[] = $v['id'];
  272. }
  273. $this->view->assign("row", $row);
  274. $this->view->assign("groupids", $groupids);
  275. $this->view->assign('platform', $platform);
  276. $this->view->assign('serviceType', AuthGroup::$serviceType);
  277. $this->view->assign('serviceTypeValue', json_decode($row['flow_service'], true));
  278. return $this->view->fetch();
  279. }
  280. /**
  281. * 删除
  282. */
  283. public function del($ids = "")
  284. {
  285. if (!$this->request->isPost()) {
  286. $this->error(__("Invalid parameters"));
  287. }
  288. $ids = $ids ? $ids : $this->request->post("ids");
  289. if ($ids) {
  290. $ids = array_intersect($this->childrenAdminIds, array_filter(explode(',', $ids)));
  291. // 避免越权删除管理员
  292. $childrenGroupIds = $this->childrenGroupIds;
  293. $adminList = $this->model->where('id', 'in', $ids)->where('id', 'in', function ($query) use ($childrenGroupIds) {
  294. $query->name('auth_group_access')->where('group_id', 'in', $childrenGroupIds)->field('uid');
  295. })->select();
  296. if ($adminList) {
  297. $deleteIds = [];
  298. foreach ($adminList as $k => $v) {
  299. $deleteIds[] = $v->id;
  300. }
  301. $deleteIds = array_values(array_diff($deleteIds, [$this->auth->id]));
  302. if ($deleteIds) {
  303. Db::startTrans();
  304. try {
  305. $this->model->destroy($deleteIds);
  306. model('AuthGroupAccess')->where('uid', 'in', $deleteIds)->delete();
  307. Db::commit();
  308. } catch (\Exception $e) {
  309. Db::rollback();
  310. $this->error($e->getMessage());
  311. }
  312. $this->success();
  313. }
  314. $this->error(__('No rows were deleted'));
  315. }
  316. }
  317. $this->error(__('You have no permission'));
  318. }
  319. /**
  320. * 批量更新
  321. * @internal
  322. */
  323. public function multi($ids = "")
  324. {
  325. // 管理员禁止批量操作
  326. $this->error();
  327. }
  328. /**
  329. * 下拉搜索
  330. */
  331. public function selectpage()
  332. {
  333. $this->dataLimit = 'auth';
  334. $this->dataLimitField = 'id';
  335. $input=input();
  336. $map=[];
  337. $map['sub']=1;
  338. if(!empty($input['nickname'])){
  339. $map['nickname']=['like',"%{$input['nickname']}%"];
  340. }
  341. if(!empty($input['keyValue'])){
  342. $map['id']=$input['keyValue'];
  343. }
  344. $data=$this
  345. ->model
  346. ->where($map)
  347. ->field('id,nickname')
  348. ->paginate(6,false,['page'=>$input['pageNumber']??1]);
  349. return json([
  350. 'list'=>$data->items(),
  351. 'total'=>$data->total(),
  352. ]);
  353. }
  354. }