Admin.php 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. <?php
  2. namespace app\admin\controller\shopro;
  3. use app\admin\model\AuthGroup;
  4. use app\admin\model\AuthGroupAccess;
  5. use app\admin\model\shopro\chat\CustomerService;
  6. use app\common\controller\Backend;
  7. use fast\Random;
  8. use fast\Tree;
  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. public function _initialize()
  23. {
  24. parent::_initialize();
  25. $this->model = model('Admin');
  26. $this->childrenAdminIds = $this->auth->getChildrenAdminIds(true);
  27. $this->childrenGroupIds = $this->auth->getChildrenGroupIds(true);
  28. $groupList = collection(AuthGroup::where('id', 'in', $this->childrenGroupIds)->select())->toArray();
  29. Tree::instance()->init($groupList);
  30. $groupdata = [];
  31. if ($this->auth->isSuperAdmin()) {
  32. $result = Tree::instance()->getTreeList(Tree::instance()->getTreeArray(0));
  33. foreach ($result as $k => $v) {
  34. $groupdata[$v['id']] = $v['name'];
  35. }
  36. } else {
  37. $result = [];
  38. $groups = $this->auth->getGroups();
  39. foreach ($groups as $m => $n) {
  40. $childlist = Tree::instance()->getTreeList(Tree::instance()->getTreeArray($n['id']));
  41. $temp = [];
  42. foreach ($childlist as $k => $v) {
  43. $temp[$v['id']] = $v['name'];
  44. }
  45. $result[__($n['name'])] = $temp;
  46. }
  47. $groupdata = $result;
  48. }
  49. $this->view->assign('groupdata', $groupdata);
  50. $this->assignconfig("admin", ['id' => $this->auth->id]);
  51. }
  52. /**
  53. * 查看, controller/auth/admin.php 只改了返回值
  54. */
  55. public function index()
  56. {
  57. if ($this->request->isAjax()) {
  58. //如果发送的来源是Selectpage,则转发到Selectpage
  59. if ($this->request->request('keyField')) {
  60. return $this->selectpage();
  61. }
  62. $childrenGroupIds = $this->childrenGroupIds;
  63. $groupName = AuthGroup::where('id', 'in', $childrenGroupIds)
  64. ->column('id,name');
  65. $authGroupList = AuthGroupAccess::where('group_id', 'in', $childrenGroupIds)
  66. ->field('uid,group_id')
  67. ->select();
  68. $adminGroupName = [];
  69. foreach ($authGroupList as $k => $v) {
  70. if (isset($groupName[$v['group_id']])) {
  71. $adminGroupName[$v['uid']][$v['group_id']] = $groupName[$v['group_id']];
  72. }
  73. }
  74. $groups = $this->auth->getGroups();
  75. foreach ($groups as $m => $n) {
  76. $adminGroupName[$this->auth->id][$n['id']] = $n['name'];
  77. }
  78. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  79. $type = $this->request->get("type", '');
  80. $admin_ids = [];
  81. if ($type == 'customer_service') {
  82. $type_id = $this->request->get("type_id", 0);
  83. // 查询客服列表,,找到当前客服 type_id
  84. $customerServices = CustomerService::select();
  85. $currentCustomerService = null;
  86. if ($type_id) {
  87. foreach ($customerServices as $key => $customerService) {
  88. if ($customerService['id'] == $type_id) {
  89. $currentCustomerService = $customerService;
  90. }
  91. }
  92. }
  93. $admin_ids = array_unique(array_column($customerServices, 'admin_id'));
  94. if ($currentCustomerService) {
  95. foreach ($admin_ids as $key => $admin_id) {
  96. if ($admin_id == $currentCustomerService['admin_id']) {
  97. unset($admin_ids[$key]); // 当前客服的 admin 也要查出来
  98. }
  99. }
  100. }
  101. }
  102. $total = $this->model
  103. ->where($where)
  104. ->where('id', 'in', $this->childrenAdminIds)
  105. ->where('id', 'not in', $admin_ids)
  106. ->order($sort, $order)
  107. ->count();
  108. $list = $this->model
  109. ->where($where)
  110. ->where('id', 'in', $this->childrenAdminIds)
  111. ->where('id', 'not in', $admin_ids)
  112. ->field(['password', 'salt', 'token'], true)
  113. ->order($sort, $order)
  114. ->limit($offset, $limit)
  115. ->select();
  116. foreach ($list as $k => &$v) {
  117. $groups = isset($adminGroupName[$v['id']]) ? $adminGroupName[$v['id']] : [];
  118. $v['groups'] = implode(',', array_keys($groups));
  119. $v['groups_text'] = implode(',', array_values($groups));
  120. }
  121. unset($v);
  122. $result = array("total" => $total, "rows" => $list);
  123. return $this->success('操作成功', null, $result);
  124. }
  125. return $this->view->fetch();
  126. }
  127. }