Role.php 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  1. <?php
  2. namespace app\admin\controller;
  3. use app\admin\model\Node;
  4. use app\admin\model\UserType;
  5. use think\Db;
  6. class Role extends Base
  7. {
  8. /**
  9. * [index 角色列表]
  10. */
  11. public function index(){
  12. if(request()->isAjax ()){
  13. extract(input());
  14. $map = [];
  15. if(isset($key)&&$key!="")
  16. {
  17. $map['title'] = ['like',"%" . $key . "%"];
  18. }
  19. if(isset($start)&&$start!=""&&isset($end)&&$end=="")
  20. {
  21. $map['create_time'] = ['>= time',$start];
  22. }
  23. if(isset($end)&&$end!=""&&isset($start)&&$start=="")
  24. {
  25. $map['create_time'] = ['<= time',$end];
  26. }
  27. if(isset($start)&&$start!=""&&isset($end)&&$end!="")
  28. {
  29. $map['create_time'] = ['between time',[$start,$end]];
  30. }
  31. $field=input('field');//字段
  32. $order=input('order');//排序方式
  33. if($field && $order){
  34. $od=$field." ".$order;
  35. }else{
  36. $od="create_time desc";
  37. }
  38. $user = new UserType();
  39. $Nowpage = input('page') ? input('page'):1;
  40. $limits = input("limit")?input("limit"):10;// 获取总条数;
  41. $count = $user->getAllRole($map); //总数据
  42. $lists = $user->getRoleByWhere($map, $Nowpage, $limits,$od);
  43. return json(['code'=>220,'msg'=>'','count'=>$count,'data'=>$lists]);
  44. }
  45. return $this->fetch("role/index");
  46. }
  47. /**
  48. * [roleAdd 添加角色]
  49. */
  50. public function roleAdd()
  51. {
  52. if(request()->isPost()){
  53. extract(input());
  54. $param = input('post.');
  55. $role = new UserType();
  56. $flag = $role->insertRole($param);
  57. return json(['code' => $flag['code'], 'data' => $flag['data'], 'msg' => $flag['msg']]);
  58. }
  59. return $this->fetch('role/roleadd');
  60. }
  61. /**
  62. * checkRole 验证角色名称唯一性
  63. */
  64. public function checkRole(){
  65. extract(input());
  66. if(isset($id)&&$id!=""){
  67. $uid = $id;
  68. }else{
  69. $uid = '';
  70. }
  71. $role = new UserType();
  72. $flag = $role->checkRole ($title,$uid);
  73. return json(['code' => $flag['code'], 'msg' => $flag['msg']]);
  74. }
  75. /**
  76. * [roleEdit 编辑角色]
  77. */
  78. public function roleEdit()
  79. {
  80. $role = new UserType();
  81. if(request()->isPost()){
  82. $param = input('post.');
  83. $flag = $role->editRole($param);
  84. return json(['code' => $flag['code'], 'data' => $flag['data'], 'msg' => $flag['msg']]);
  85. }
  86. $id = input('param.id');
  87. $this->assign([
  88. 'role' => $role->getOneRole($id)
  89. ]);
  90. return $this->fetch('role/roleedit');
  91. }
  92. /**
  93. * [roleDel 删除角色]
  94. * @return [type] [description]
  95. * @author
  96. */
  97. public function roleDel()
  98. {
  99. $id = input('param.id');
  100. if($id == session('agid')){
  101. return json(['code'=>100,'msg'=>'不能删除自己的角色']);
  102. }else{
  103. $role = new UserType();
  104. $flag = $role->delRole($id);
  105. return json(['code' => $flag['code'], 'data' => $flag['data'], 'msg' => $flag['msg']]);
  106. }
  107. }
  108. /**
  109. * [role_state 用户状态]
  110. * @return [type] [description]
  111. * @author
  112. */
  113. public function role_state()
  114. {
  115. extract(input());
  116. $role = new UserType();
  117. $flag = $role->roleState($id,$num);
  118. return json(['code' => $flag['code'], 'data' => $flag['data'], 'msg' => $flag['msg']]);
  119. }
  120. /**
  121. * [giveAccess 分配权限]
  122. * @return [type] [description]
  123. * @author
  124. */
  125. public function giveAccess()
  126. {
  127. $param = input('param.');
  128. $node = new Node();
  129. //获取现在的权限
  130. if('get' == $param['type']){
  131. $nodeStr = $node->getNodeInfo($param['id']);
  132. return json(['code' => 200, 'data' => $nodeStr, 'msg' => 'success']);
  133. }
  134. //分配新权限
  135. if('give' == $param['type']){
  136. $doparam = [
  137. 'id' => $param['id'],
  138. 'rules' => $param['rule']
  139. ];
  140. $user = new UserType();
  141. $flag = $user->editAccess($doparam);
  142. return json(['code' => $flag['code'], 'data' => $flag['data'], 'msg' => $flag['msg']]);
  143. }
  144. }
  145. /**
  146. * batchDelRole 批量删除角色
  147. * @return \think\response\Json
  148. */
  149. public function batchDelRole(){
  150. extract(input());
  151. if(empty($ids)){
  152. return json(['code'=>100,'msg'=>'请选择要删除的记录!']);
  153. }
  154. $ids = explode(',',$ids);
  155. if(in_array('1',$ids)){
  156. $key = array_search ('1',$ids);
  157. unset($ids[$key]);
  158. if(empty($ids)){
  159. return json(['code'=>100,'msg'=>'不可删除超级管理员角色']);
  160. die;
  161. }
  162. }
  163. if(in_array(session('agid'),$ids)){
  164. $key = array_search (session('agid'),$ids);
  165. unset($ids[$key]);
  166. if(empty($ids)){
  167. return json(['code'=>100,'msg'=>'不可删除自己的角色']);
  168. die;
  169. }
  170. }
  171. $ids = array_merge($ids);
  172. $user = new UserType();
  173. $flag = $user->batchDelRole($ids);
  174. return json(['code' => $flag['code'], 'msg' => $flag['msg']]);
  175. }
  176. /**
  177. * usingAll 批量启用
  178. * @return \think\response\Json
  179. */
  180. public function usingRole(){
  181. extract(input());
  182. $list = [];
  183. if($ids){
  184. $ids = explode(',',$ids);
  185. for($i=0;$i<count($ids);$i++){
  186. $param = [
  187. 'id'=>$ids[$i],
  188. 'status'=>1
  189. ];
  190. $list[] = $param;
  191. }
  192. }
  193. $user = new UserType();
  194. $flag = $user->usingRole($list);
  195. return json(['code' => $flag['code'], 'msg' => $flag['msg']]);
  196. }
  197. /**
  198. * batchForbidden 批量禁用
  199. * @return \think\response\Json
  200. */
  201. public function forbiddenRole(){
  202. extract(input());
  203. $list = [];
  204. if($ids){
  205. $ids = explode(',',$ids);
  206. if(in_array('1',$ids)){
  207. $key = array_search ('1',$ids);
  208. unset($ids[$key]);
  209. if(empty($ids)){
  210. return json(['code'=>100,'msg'=>'不可禁用超级管理员']);
  211. die;
  212. }
  213. }
  214. if(in_array(session('agid'),$ids)){
  215. $key = array_search (session('agid'),$ids);
  216. unset($ids[$key]);
  217. if(empty($ids)){
  218. return json(['code'=>100,'msg'=>'不可禁用自己的角色']);
  219. die;
  220. }
  221. }
  222. $ids = array_merge($ids);
  223. for($i=0;$i<count($ids);$i++){
  224. $param = [
  225. 'id'=>$ids[$i],
  226. 'status'=>2
  227. ];
  228. $list[] = $param;
  229. }
  230. }
  231. $user = new UserType();
  232. $flag = $user->forbiddenRole($list);
  233. return json(['code' => $flag['code'], 'msg' => $flag['msg']]);
  234. }
  235. }