Nav apraksta
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

AuthRole.php 14KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. namespace app\admin\controller;
  14. use think\Page;
  15. use think\Db;
  16. use think\Validate;
  17. class AuthRole extends Base {
  18. public function _initialize() {
  19. parent::_initialize();
  20. $this->language_access(); // 多语言功能操作权限
  21. }
  22. /**
  23. * 权限组管理
  24. */
  25. public function index()
  26. {
  27. $map = array();
  28. $pid = input('pid/d');
  29. $keywords = input('keywords/s');
  30. $keywords = addslashes(trim($keywords));
  31. if (!empty($keywords)) {
  32. $map['c.name'] = array('LIKE', "%{$keywords}%");
  33. }
  34. $AuthRole = Db::name('auth_role');
  35. $count = $AuthRole->alias('c')->where($map)->count();// 查询满足要求的总记录数
  36. $Page = new Page($count, config('paginate.list_rows'));// 实例化分页类 传入总记录数和每页显示的记录数
  37. $fields = "c.*,s.name AS pname";
  38. $list = DB::name('auth_role')
  39. ->field($fields)
  40. ->alias('c')
  41. ->join('__AUTH_ROLE__ s','s.id = c.pid','LEFT')
  42. ->where($map)
  43. ->order('c.id asc')
  44. ->limit($Page->firstRow.','.$Page->listRows)
  45. ->select();
  46. $show = $Page->show();// 分页显示输出
  47. $this->assign('page',$show);// 赋值分页输出
  48. $this->assign('list',$list);// 赋值数据集
  49. $this->assign('pager',$Page);// 赋值分页集
  50. return $this->fetch();
  51. }
  52. /**
  53. * 新增权限组
  54. */
  55. public function add()
  56. {
  57. if (IS_POST) {
  58. $rule = array(
  59. 'name' => 'require',
  60. );
  61. $msg = array(
  62. 'name.require' => '权限组名称不能为空!',
  63. );
  64. $data = array(
  65. 'name' => trim(input('name/s')),
  66. );
  67. $validate = new Validate($rule, $msg);
  68. $result = $validate->check($data);
  69. if(!$result){
  70. $this->error($validate->getError());
  71. }
  72. $model = model('AuthRole');
  73. $count = $model->where('name', $data['name'])->count();
  74. if(! empty($count)){
  75. $this->error('该权限组名称已存在,请检查');
  76. }
  77. $role_id = $model->saveAuthRole(input());
  78. if($role_id){
  79. adminLog('新增权限组:'.$data['name']);
  80. $admin_role_list = model('AuthRole')->getRoleAll();
  81. $this->success('操作成功', url('AuthRole/index'), ['role_id'=>$role_id,'role_name'=>$data['name'],'admin_role_list'=>json_encode($admin_role_list)]);
  82. }else{
  83. $this->error('操作失败');
  84. }
  85. }
  86. // 权限组
  87. $admin_role_list = model('AuthRole')->getRoleAll();
  88. $this->assign('admin_role_list', $admin_role_list);
  89. // 模块组
  90. $modules = getAllMenu();
  91. $this->assign('modules', $modules);
  92. // 权限集
  93. // $singleArr = array_multi2single($modules, 'child'); // 多维数组转为一维
  94. $auth_rules = get_auth_rule(['is_modules'=>1]);
  95. $auth_rule_list = group_same_key($auth_rules, 'menu_id');
  96. foreach ($auth_rule_list as $key => $val) {
  97. if (is_array($val)) {
  98. $sort_order = [];
  99. foreach ($val as $_k => $_v) {
  100. $sort_order[$_k] = $_v['sort_order'];
  101. }
  102. array_multisort($sort_order, SORT_ASC, $val);
  103. $auth_rule_list[$key] = $val;
  104. }
  105. }
  106. $this->assign('auth_rule_list', $auth_rule_list);
  107. // 栏目
  108. $arctype_list = Db::name('arctype')->where([
  109. 'is_del' => 0,
  110. ])->order("grade desc")->select();
  111. $arctype_p_html = $arctype_child_html = "";
  112. $arctype_all = list_to_tree($arctype_list);
  113. foreach ($arctype_all as $key => $arctype) {
  114. if (!empty($arctype['children'])) {
  115. if ($key > 0) {
  116. $arctype_p_html .= '<em class="arctype_bg expandable"></em>';
  117. } else {
  118. $arctype_p_html .= '<em class="arctype_bg collapsable"></em>';
  119. }
  120. $arctype_child_html .= '<div class="arctype_child" id="arctype_child_' . $arctype['id'] . '"';
  121. if ($arctype_all[0]['id'] == $arctype['id']) {
  122. $arctype_child_html .= ' style="display: block;" ';
  123. }
  124. $arctype_child_html .= '>';
  125. $arctype_child_html .= $this->get_arctype_child_html($arctype);
  126. $arctype_child_html .= '</div>';
  127. }
  128. $arctype_p_html .= '<label>' .
  129. '<input type="checkbox" class="arctype_cbox arctype_id_' . $arctype['id'] . '" value="' . $arctype['id'] . '" ';
  130. $arctype_p_html .= ' />' . $arctype['typename'] . '</label>&nbsp;';
  131. }
  132. $this->assign('arctype_p_html', $arctype_p_html);
  133. $this->assign('arctype_child_html', $arctype_child_html);
  134. // 插件
  135. $plugins = false;
  136. $web_weapp_switch = tpCache('global.web_weapp_switch');
  137. if (1 == $web_weapp_switch) {
  138. $plugins = model('Weapp')->getList(['status'=>1]);
  139. }
  140. $this->assign('plugins', $plugins);
  141. return $this->fetch();
  142. }
  143. //xyz修改20220315
  144. public function edit()
  145. {
  146. $id = input('param.id/d', 0);
  147. if ($id <= 0) {
  148. $this->error('非法访问');
  149. }
  150. if (IS_POST) {
  151. $rule = array(
  152. 'name' => 'require',
  153. );
  154. $msg = array(
  155. 'name.require' => '权限组名称不能为空!',
  156. );
  157. $data = array(
  158. 'name' => trim(input('name/s')),
  159. );
  160. $validate = new Validate($rule, $msg);
  161. $result = $validate->check($data);
  162. if (!$result) {
  163. $this->error($validate->getError());
  164. }
  165. $model = model('AuthRole');
  166. $count = $model->where('name', $data['name'])
  167. ->where('id', '<>', $id)
  168. ->count();
  169. if (!empty($count)) {
  170. $this->error('该权限组名称已存在,请检查');
  171. }
  172. $role_id = $model->saveAuthRole(input(), true);
  173. if ($role_id) {
  174. adminLog('编辑权限组:' . $data['name']);
  175. $this->success('操作成功', url('AuthRole/index'), ['role_id' => $role_id, 'role_name' => $data['name']]);
  176. } else {
  177. $this->error('操作失败');
  178. }
  179. }
  180. $model = model('AuthRole');
  181. $info = $model->getRole(array('id' => $id));
  182. if (empty($info)) {
  183. $this->error('数据不存在,请联系管理员!');
  184. }
  185. $this->assign('info', $info);
  186. // 权限组
  187. $admin_role_list = model('AuthRole')->getRoleAll();
  188. $this->assign('admin_role_list', $admin_role_list);
  189. // 模块组
  190. $modules = getAllMenu();
  191. $this->assign('modules', $modules);
  192. // 权限集
  193. $auth_rules = get_auth_rule(['is_modules' => 1]);
  194. $auth_rule_list = group_same_key($auth_rules, 'menu_id');
  195. foreach ($auth_rule_list as $key => $val) {
  196. if (is_array($val)) {
  197. $sort_order = [];
  198. foreach ($val as $_k => $_v) {
  199. $sort_order[$_k] = $_v['sort_order'];
  200. }
  201. array_multisort($sort_order, SORT_ASC, $val);
  202. $auth_rule_list[$key] = $val;
  203. }
  204. }
  205. $this->assign('auth_rule_list', $auth_rule_list);
  206. // 栏目
  207. $arctype_list = Db::name('arctype')->where([
  208. 'is_del' => 0,
  209. ])->order("grade desc")->select();
  210. $arctype_p_html = $arctype_child_html = "";
  211. $arctype_all = list_to_tree($arctype_list);
  212. foreach ($arctype_all as $key => $arctype) {
  213. if (!empty($arctype['children'])) {
  214. if ($key > 0) {
  215. $arctype_p_html .= '<em class="arctype_bg expandable"></em>';
  216. } else {
  217. $arctype_p_html .= '<em class="arctype_bg collapsable"></em>';
  218. }
  219. $arctype_child_html .= '<div class="arctype_child" id="arctype_child_' . $arctype['id'] . '"';
  220. if ($arctype_all[0]['id'] == $arctype['id']) {
  221. $arctype_child_html .= ' style="display: block;" ';
  222. }
  223. $arctype_child_html .= '>';
  224. $arctype_child_html .= $this->get_arctype_child_html($arctype,$info);
  225. $arctype_child_html .= '</div>';
  226. }
  227. $arctype_p_html .= '<label>' .
  228. '<input type="checkbox" class="arctype_cbox arctype_id_' . $arctype['id'] . '" value="' . $arctype['id'] . '" ';
  229. if (!empty($info['permission']['arctype']) && in_array($arctype['id'], $info['permission']['arctype'])) {
  230. $arctype_p_html .= ' checked="checked" ';
  231. }
  232. $arctype_p_html .= ' />' . $arctype['typename'] . '</label>&nbsp;';
  233. }
  234. $this->assign('arctype_p_html', $arctype_p_html);
  235. $this->assign('arctype_child_html', $arctype_child_html);
  236. // 插件
  237. $plugins = false;
  238. $web_weapp_switch = tpCache('global.web_weapp_switch');
  239. if (1 == $web_weapp_switch) {
  240. $plugins = model('Weapp')->getList(['status'=>1]);
  241. }
  242. $this->assign('plugins', $plugins);
  243. return $this->fetch();
  244. }
  245. /*
  246. * 递归生成$arctype_child_html
  247. * $vo 栏目tree
  248. * $info 权限集合(用于edit是否已经选中)
  249. * return 完整html
  250. */
  251. private function get_arctype_child_html($vo,$info = []){
  252. $arctype_child_html = "";
  253. if (!empty($vo['children'])) {
  254. $arctype_child_html .= '<div class="arctype_child1" id="arctype_child_' . $vo['id'] . '">';
  255. //判断当前下级是否还存在下级,true为竖着,false为横着
  256. $has_chldren = true;
  257. if ($vo['grade'] != 0 && !empty($vo['has_chldren']) && $vo['has_chldren'] == count($vo['children'])){
  258. $has_chldren = false;
  259. }
  260. if ($has_chldren){
  261. foreach ($vo['children'] as $vo1) {
  262. $arctype_child_html .= '<div class="arctype_child1">';
  263. $arctype_child_html .= ' <span class="button level1 switch center_docu"></span>
  264. <label><input type="checkbox" class="arctype_cbox arctype_id_' . $vo1['id'] . '" value="' . $vo1['id'] . '" data-pid="' . $vo1['parent_id'] . '" data-tpid="' . $vo['parent_id'] . '"';
  265. if (!empty($info['permission']['arctype']) && in_array($vo1['id'], $info['permission']['arctype'])) {
  266. $arctype_child_html .= ' checked="checked" ';
  267. }
  268. $arctype_child_html .= '/>' . $vo1['typename'] . '</label></div>';
  269. $arctype_child_html .= $this->get_arctype_child_html($vo1,$info);
  270. }
  271. }else{
  272. $arctype_child_html .= '<div class="arctype_child2"> <span class="button level1 switch center_docu"></span>';
  273. foreach ($vo['children'] as $vo1) {
  274. $arctype_child_html .= '<label><input type="checkbox" class="arctype_cbox arctype_id_' . $vo1['id'] . '" value="' . $vo1['id'] . '" data-pid="' . $vo1['parent_id'] . '" data-tpid="' . $vo['parent_id'] . '"';
  275. if (!empty($info['permission']['arctype']) && in_array($vo1['id'], $info['permission']['arctype'])) {
  276. $arctype_child_html .= ' checked="checked" ';
  277. }
  278. $arctype_child_html .= '/>' . $vo1['typename'] . '</label>';
  279. $arctype_child_html .= $this->get_arctype_child_html($vo1,$info);
  280. }
  281. $arctype_child_html .= '</div>';
  282. }
  283. $arctype_child_html .= '</div>';
  284. }
  285. return $arctype_child_html;
  286. }
  287. public function del()
  288. {
  289. $id_arr = input('del_id/a');
  290. $id_arr = eyIntval($id_arr);
  291. if (!empty($id_arr)) {
  292. $count = Db::name('auth_role')->where(['built_in'=>1,'id'=>['IN',$id_arr]])->count();
  293. if (!empty($count)) {
  294. $this->error('系统内置不允许删除!');
  295. }
  296. $role = Db::name('auth_role')->where("pid",'IN',$id_arr)->select();
  297. if ($role) {
  298. $this->error('请先清空该权限组下的子权限组');
  299. }
  300. $role_admin = Db::name('admin')->where("role_id",'IN',$id_arr)->select();
  301. if ($role_admin) {
  302. $this->error('请先清空所属该权限组的管理员');
  303. } else {
  304. $r = Db::name('auth_role')->where("id",'IN',$id_arr)->delete();
  305. if($r){
  306. adminLog('删除权限组');
  307. $this->success('删除成功');
  308. }else{
  309. $this->error('删除失败');
  310. }
  311. }
  312. } else {
  313. $this->error('参数有误');
  314. }
  315. }
  316. }