123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430 |
- <?php
- namespace app\company\controller\auth;
- use app\company\model\AuthGroup;
- use app\common\controller\Apic;
- use fast\Tree;
- use think\Db;
- use think\Exception;
- /**
- * 角色组
- *
- * @icon fa fa-group
- * @remark 角色组可以有多个,角色有上下级层级关系,如果子角色有角色组和管理员的权限则可以派生属于自己组别下级的角色组或管理员
- */
- class Group extends Apic
- {
- /**
- * @var \app\company\model\AuthGroup
- */
- protected $model = null;
- //当前登录管理员所有子组别
- protected $childrenGroupIds = [];
- //当前组别列表数据
- protected $grouplist = [];
- protected $groupdata = [];
- //无需要权限判断的方法
- protected $noNeedRight = ['info','simple_list','list_role_menus'];
- public function _initialize()
- {
- parent::_initialize();
- $this->model = model('AuthGroup');
- $this->childrenGroupIds = $this->auth->getChildrenGroupIds(true);
- $groupList = collection(AuthGroup::where('id', 'in', $this->childrenGroupIds)->select())->toArray();
- Tree::instance()->init($groupList,null,'');
- $groupList = [];
- if ($this->auth->isSuperAdmin()) {
- $groupList = Tree::instance()->getTreeList(Tree::instance()->getTreeArray(0));
- } else {
- $groups = $this->auth->getGroups();
- $groupIds = [];
- foreach ($groups as $m => $n) {
- if (in_array($n['id'], $groupIds) || in_array($n['pid'], $groupIds)) {
- continue;
- }
- $groupList = array_merge($groupList, Tree::instance()->getTreeList(Tree::instance()->getTreeArray($n['pid'])));//费了很大的劲,把自己加入到了子组的第一个
- foreach ($groupList as $index => $item) {
- $groupIds[] = $item['id'];
- }
- }
- }
- $groupName = [];
- foreach ($groupList as $k => $v) {
- $groupName[$v['id']] = $v['name'];
- }
- $this->grouplist = $groupList;
- $this->groupdata = $groupName;
- // $this->assignconfig("admin", ['id' => $this->auth->id, 'group_ids' => $this->auth->getGroupIds()]);
- // $this->view->assign('groupdata', $this->groupdata);
- }
- /**
- * 查看
- */
- public function index()
- {
- $list = $this->grouplist;
- foreach($list as $key => &$val){
- //是否是自己坐在的组
- $val['is_self'] = 0;
- $mygroupids = $this->auth->getGroupIds();
- if(in_array($val['id'],$mygroupids)){
- $val['is_self'] = 1;
- }
- //给前端用
- $val['parentId'] = $val['pid'];
- }
- // $total = count($list);
- // $result = array("total" => $total, "list" => $list);
- $this->success(1,$list);
- }
- /**
- * 添加
- */
- public function add()
- {
- $params = [
- 'company_id' => $this->auth->company_id,
- 'pid' => input('pid',0),
- 'name' => input('name',''),
- 'rules' => input('rules','','strip_tags'),
- 'status' => 'normal',
- ];
- $params['rules'] = explode(',', $params['rules']);
- if (!in_array($params['pid'], $this->childrenGroupIds)) {
- $this->error(__('The parent group exceeds permission limit'));
- }
- $parentmodel = model("AuthGroup")->get($params['pid']);
- if (!$parentmodel) {
- $this->error(__('The parent group can not found'));
- }
- // 父级别的规则节点
- $parentrules = explode(',', $parentmodel->rules);
- // 当前组别的规则节点
- $currentrules = $this->auth->getRuleIds();
- $rules = $params['rules'];
- // 如果父组不是超级管理员则需要过滤规则节点,不能超过父组别的权限
- $rules = in_array('*', $parentrules) ? $rules : array_intersect($parentrules, $rules);
- // 如果当前组别不是超级管理员则需要过滤规则节点,不能超当前组别的权限
- $rules = in_array('*', $currentrules) ? $rules : array_intersect($currentrules, $rules);
- $params['rules'] = implode(',', $rules);
- if ($params) {
- $this->model->create($params);
- $this->success();
- }
- $this->error();
- }
- /**
- * 编辑
- */
- public function info()
- {
- $ids = input('id','');
- if (!in_array($ids, $this->childrenGroupIds)) {
- $this->error(__('You have no permission'));
- }
- $row = $this->model->get(['id' => $ids]);
- if (!$row) {
- $this->error(__('No Results were found'));
- }
- $this->success(1,$row);
- }
- public function edit()
- {
- $ids = input('id','');
- if (!in_array($ids, $this->childrenGroupIds)) {
- $this->error(__('You have no permission1'));
- }
- $row = $this->model->get(['id' => $ids]);
- if (!$row) {
- $this->error(__('No Results were found'));
- }
- $params = [
- 'pid' => input('pid',0),
- 'name' => input('name',''),
- 'rules' => input('rules','','strip_tags'),
- 'status' => 'normal',
- ];
- //父节点不能是非权限内节点
- if (!in_array($params['pid'], $this->childrenGroupIds)) {
- $this->error(__('The parent group exceeds permission limit'));
- }
- // 父节点不能是它自身的子节点或自己本身
- if (in_array($params['pid'], Tree::instance()->getChildrenIds($row->id, true))) {
- $this->error(__('The parent group can not be its own child or itself'));
- }
- $params['rules'] = explode(',', $params['rules']);
- $parentmodel = model("AuthGroup")->get($params['pid']);
- if (!$parentmodel) {
- $this->error(__('The parent group can not found'));
- }
- // 父级别的规则节点
- $parentrules = explode(',', $parentmodel->rules);
- // 当前组别的规则节点
- $currentrules = $this->auth->getRuleIds();
- $rules = $params['rules'];
- // 如果父组不是超级管理员则需要过滤规则节点,不能超过父组别的权限
- $rules = in_array('*', $parentrules) ? $rules : array_intersect($parentrules, $rules);
- // 如果当前组别不是超级管理员则需要过滤规则节点,不能超当前组别的权限
- $rules = in_array('*', $currentrules) ? $rules : array_intersect($currentrules, $rules);
- $params['rules'] = implode(',', $rules);
- if ($params) {
- Db::startTrans();
- try {
- $row->save($params);
- $children_auth_groups = model("AuthGroup")->all(['id' => ['in', implode(',', (Tree::instance()->getChildrenIds($row->id)))]]);
- $childparams = [];
- foreach ($children_auth_groups as $key => $children_auth_group) {
- $childparams[$key]['id'] = $children_auth_group->id;
- $childparams[$key]['rules'] = implode(',', array_intersect(explode(',', $children_auth_group->rules), $rules));
- }
- model("AuthGroup")->saveAll($childparams);
- Db::commit();
- $this->success();
- } catch (Exception $e) {
- Db::rollback();
- $this->error($e->getMessage());
- }
- }
- $this->error();
- }
- /**
- * 删除
- */
- public function del()
- {
- $ids = input('id','');
- if ($ids) {
- $ids = explode(',', $ids);
- $grouplist = $this->auth->getGroups();
- $group_ids = array_map(function ($group) {
- return $group['id'];
- }, $grouplist);
- // 移除掉当前管理员所在组别
- $ids = array_diff($ids, $group_ids);
- // 循环判断每一个组别是否可删除
- $grouplist = $this->model->where('id', 'in', $ids)->select();
- $groupaccessmodel = model('AuthGroupAccess');
- foreach ($grouplist as $k => $v) {
- // 当前组别下有管理员
- $groupone = $groupaccessmodel->get(['group_id' => $v['id']]);
- if ($groupone) {
- $ids = array_diff($ids, [$v['id']]);
- continue;
- }
- // 当前组别下有子组别
- $groupone = $this->model->get(['pid' => $v['id']]);
- if ($groupone) {
- $ids = array_diff($ids, [$v['id']]);
- continue;
- }
- }
- if (!$ids) {
- $this->error(__('You can not delete group that contain child group and administrators'));
- }
- $count = $this->model->where('id', 'in', $ids)->delete();
- if ($count) {
- $this->success();
- }
- }
- $this->error();
- }
- /**
- * 批量更新
- * @internal
- */
- public function multi($ids = "")
- {
- // 组别禁止批量操作
- $this->error();
- }
- /**
- * 读取角色权限树
- *
- * @internal
- */
- //来自admin/auth/group/roletree
- public function simple_list()
- {
- $this->loadlang('auth/group');
- $model = model('AuthGroup');
- $id = $this->request->post("id");
- $pid = $this->request->post("pid");
- $parentGroupModel = $model->get($pid);
- $currentGroupModel = null;
- if ($id) {
- $currentGroupModel = $model->get($id);
- }
- if (($pid || $parentGroupModel) && (!$id || $currentGroupModel)) {
- $id = $id ? $id : null;
- $ruleList = collection(model('AuthRule')->order('weigh', 'desc')->order('id', 'asc')->select())->toArray();
- //读取父类角色所有节点列表
- $parentRuleList = [];
- if (in_array('*', explode(',', $parentGroupModel->rules))) {
- $parentRuleList = $ruleList;
- } else {
- $parentRuleIds = explode(',', $parentGroupModel->rules);
- foreach ($ruleList as $k => $v) {
- if (in_array($v['id'], $parentRuleIds)) {
- $parentRuleList[] = $v;
- }
- }
- }
- $ruleTree = new Tree();
- $groupTree = new Tree();
- //当前所有正常规则列表
- $ruleTree->init($parentRuleList);
- //角色组列表
- $groupTree->init(collection(model('AuthGroup')->where('id', 'in', $this->childrenGroupIds)->select())->toArray());
- //读取当前角色下规则ID集合
- $adminRuleIds = $this->auth->getRuleIds();
- //是否是超级管理员
- $superadmin = $this->auth->isSuperAdmin();
- //当前拥有的规则ID集合
- $currentRuleIds = $id ? explode(',', $currentGroupModel->rules) : [];
- if (!$id || !in_array($pid, $this->childrenGroupIds) || !in_array($pid, $groupTree->getChildrenIds($id, true))) {
- $parentRuleList = $ruleTree->getTreeList($ruleTree->getTreeArray(0), 'name');
- $hasChildrens = [];
- foreach ($parentRuleList as $k => $v) {
- if ($v['haschild']) {
- $hasChildrens[] = $v['id'];
- }
- }
- $parentRuleIds = array_map(function ($item) {
- return $item['id'];
- }, $parentRuleList);
- $nodeList = [];
- $result = [];
- foreach ($parentRuleList as $k => $v) {
- if (!$superadmin && !in_array($v['id'], $adminRuleIds)) {
- continue;
- }
- if ($v['pid'] && !in_array($v['pid'], $parentRuleIds)) {
- continue;
- }
- $state = array('selected' => in_array($v['id'], $currentRuleIds) && !in_array($v['id'], $hasChildrens));
- $nodeList[] = array('id' => $v['id'], 'parent' => $v['pid'] ? $v['pid'] : '#', 'text' => __($v['title']), 'type' => 'menu', 'state' => $state);
- $result[] = array('id' => $v['id'], 'parentId' => $v['pid'] ? $v['pid'] : 0, 'name' => $v['title'], 'type' => $v['type']);
- }
- $this->success(1, $result);
- } else {
- $this->error(__('Can not change the parent to child'));
- }
- } else {
- $this->error(__('Group not found'));
- }
- }
- //来自admin/auth/group/roletree
- public function list_role_menus()
- {
- $this->loadlang('auth/group');
- $model = model('AuthGroup');
- $id = $this->request->post("id");
- $pid = $this->request->post("pid");
- $parentGroupModel = $model->get($pid);
- $currentGroupModel = null;
- if ($id) {
- $currentGroupModel = $model->get($id);
- }
- if (($pid || $parentGroupModel) && (!$id || $currentGroupModel)) {
- $id = $id ? $id : null;
- $ruleList = collection(model('AuthRule')->order('weigh', 'desc')->order('id', 'asc')->select())->toArray();
- //读取父类角色所有节点列表
- $parentRuleList = [];
- if (in_array('*', explode(',', $parentGroupModel->rules))) {
- $parentRuleList = $ruleList;
- } else {
- $parentRuleIds = explode(',', $parentGroupModel->rules);
- foreach ($ruleList as $k => $v) {
- if (in_array($v['id'], $parentRuleIds)) {
- $parentRuleList[] = $v;
- }
- }
- }
- $ruleTree = new Tree();
- $groupTree = new Tree();
- //当前所有正常规则列表
- $ruleTree->init($parentRuleList);
- //角色组列表
- $groupTree->init(collection(model('AuthGroup')->where('id', 'in', $this->childrenGroupIds)->select())->toArray());
- //读取当前角色下规则ID集合
- $adminRuleIds = $this->auth->getRuleIds();
- //是否是超级管理员
- $superadmin = $this->auth->isSuperAdmin();
- //当前拥有的规则ID集合
- $currentRuleIds = $id ? explode(',', $currentGroupModel->rules) : [];
- if (!$id || !in_array($pid, $this->childrenGroupIds) || !in_array($pid, $groupTree->getChildrenIds($id, true))) {
- $parentRuleList = $ruleTree->getTreeList($ruleTree->getTreeArray(0), 'name');
- $hasChildrens = [];
- foreach ($parentRuleList as $k => $v) {
- if ($v['haschild']) {
- $hasChildrens[] = $v['id'];
- }
- }
- $parentRuleIds = array_map(function ($item) {
- return $item['id'];
- }, $parentRuleList);
- $nodeList = [];
- $selected = [];//需要返回的东西
- foreach ($parentRuleList as $k => $v) {
- if (!$superadmin && !in_array($v['id'], $adminRuleIds)) {
- continue;
- }
- if ($v['pid'] && !in_array($v['pid'], $parentRuleIds)) {
- continue;
- }
- $state = array('selected' => in_array($v['id'], $currentRuleIds) && !in_array($v['id'], $hasChildrens));
- $nodeList[] = array('id' => $v['id'], 'parent' => $v['pid'] ? $v['pid'] : '#', 'text' => __($v['title']), 'type' => 'menu', 'state' => $state);
- //需要返回的东西
- if(in_array($v['id'], $currentRuleIds) && !in_array($v['id'], $hasChildrens)){
- $selected[] = $v['id'];
- }
- }
- $this->success(1, $selected);
- } else {
- $this->error(__('Can not change the parent to child'));
- }
- } else {
- $this->error(__('Group not found'));
- }
- }
- }
|