UserType.php 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297
  1. <?php
  2. namespace app\admin\model;
  3. use think\Model;
  4. use think\Db;
  5. class UserType extends Model
  6. {
  7. protected $name = 'auth_group';
  8. // 开启自动写入时间戳字段
  9. protected $autoWriteTimestamp = true;
  10. /**
  11. * [getRoleByWhere 根据条件获取角色列表信息]
  12. * @author
  13. */
  14. public function getRoleByWhere($map, $Nowpage, $limits,$od)
  15. {
  16. return $this->where($map)->page($Nowpage, $limits)->order($od)->select();
  17. }
  18. /**
  19. * [getRoleByWhere 根据条件获取所有的角色数量]
  20. * @author
  21. */
  22. public function getAllRole($where)
  23. {
  24. return $this->where($where)->count();
  25. }
  26. /**
  27. * checkName 验证角色名称唯一性
  28. * @param $username
  29. * @return string
  30. */
  31. public function checkRole($title,$uid){
  32. if($uid != ''){
  33. $uname = $this->where('id',$uid)->value('title');
  34. if($uname == $title){
  35. return ['code' => 200, 'msg' => 'true'];
  36. }
  37. }
  38. $result = $this->where('title',$title)->find();
  39. if($result){
  40. return ['code' => 100, 'msg' => 'false'];
  41. }else{
  42. return ['code' => 200, 'msg' => 'true'];
  43. }
  44. }
  45. /**
  46. * [insertRole 插入角色信息]
  47. * @author
  48. */
  49. public function insertRole($param)
  50. {
  51. Db::startTrans();// 启动事务
  52. try{
  53. $this->save($param);
  54. Db::commit();// 提交事务
  55. writelog('角色【'.$param['title'].'】添加成功',200);
  56. return ['code' => 200, 'data' => '', 'msg' => '添加角色成功'];
  57. }catch( \Exception $e){
  58. Db::rollback();// 回滚事务
  59. writelog('角色【'.$param['title'].'】添加失败',100);
  60. return ['code' => 100, 'data' => '', 'msg' => '添加角色失败'];
  61. }
  62. }
  63. /**
  64. * [editRole 编辑角色信息]
  65. * @author
  66. */
  67. public function editRole($param)
  68. {
  69. Db::startTrans();// 启动事务
  70. try{
  71. $this->save($param, ['id' => $param['id']]);
  72. Db::commit();// 提交事务
  73. writelog('角色【'.$param['title'].'】编辑成功',200);
  74. return ['code' => 200, 'data' => '', 'msg' => '编辑角色成功'];
  75. }catch( \Exception $e){
  76. Db::rollback();// 回滚事务
  77. writelog('角色【'.$param['title'].'】编辑失败',100);
  78. return ['code' => 100, 'data' => '', 'msg' => '编辑角色失败'];
  79. }
  80. }
  81. /**
  82. * [getOneRole 根据角色id获取角色信息]
  83. * @author
  84. */
  85. public function getOneRole($id)
  86. {
  87. return $this->where('id', $id)->find();
  88. }
  89. /**
  90. * [delRole 删除角色]
  91. * @author
  92. */
  93. public function delRole($id)
  94. {
  95. $title = $this->where('id',$id)->value('title');
  96. Db::startTrans();// 启动事务
  97. try{
  98. $this->where('id', $id)->delete();
  99. Db::commit();// 提交事务
  100. writelog('角色【'.$title.'】删除成功',200);
  101. return ['code' => 200, 'data' => '', 'msg' => '删除角色成功'];
  102. }catch( \Exception $e){
  103. Db::rollback();// 回滚事务
  104. writelog('角色【'.$title.'】删除失败',100);
  105. return ['code' => 100, 'data' => '', 'msg' => '删除角色失败'];
  106. }
  107. }
  108. /**
  109. * [getRole 获取所有的角色信息]
  110. * @author
  111. */
  112. public function getRole()
  113. {
  114. return $this->where('id','<>',1)->select();
  115. }
  116. /**
  117. * [getRole 获取角色的权限节点]
  118. * @author
  119. */
  120. public function getRuleById($id)
  121. {
  122. $res = $this->field('rules')->where('id', $id)->find();
  123. return $res['rules'];
  124. }
  125. /**
  126. * [editAccess 分配权限]
  127. * @author
  128. */
  129. public function editAccess($param)
  130. {
  131. $title = $this->where('id',$param['id'])->value('title');
  132. Db::startTrans();// 启动事务
  133. try{
  134. $this->save($param, ['id' => $param['id']]);
  135. Db::commit();// 提交事务
  136. writelog('角色【'.$title.'】分配权限成功',200);
  137. return ['code' => 200, 'data' => '', 'msg' => '分配权限成功'];
  138. }catch( \Exception $e){
  139. Db::rollback();// 回滚事务
  140. writelog('角色【'.$title.'】分配权限失败',100);
  141. return ['code' => 100, 'data' => '', 'msg' => '分配权限失败'];
  142. }
  143. }
  144. /**
  145. * [getRoleInfo 获取角色信息]
  146. * @author
  147. */
  148. public function getRoleInfo($id){
  149. $result = Db::name('auth_group')->where('id', $id)->find();
  150. if($result['rules'] == "SUPERAUTH"){
  151. $res = Db::name('auth_rule')->field('name')->select();
  152. foreach($res as $key=>$vo){
  153. if('#' != $vo['name']){
  154. $result['name'][] = $vo['name'];
  155. }
  156. }
  157. }elseif(empty($result['rules'])){
  158. $result['title'] ="";
  159. $result['rules'] ="";
  160. $result['name'] ="";
  161. }else{
  162. $where = 'id in('.$result['rules'].')';
  163. $res = Db::name('auth_rule')->field('name')->where($where)->select();
  164. foreach($res as $key=>$vo){
  165. if('#' != $vo['name']){
  166. $result['name'][] = $vo['name'];
  167. }
  168. }
  169. }
  170. return $result;
  171. }
  172. /**
  173. * batchDelRole 批量删除角色
  174. * @param $param
  175. * @return array
  176. */
  177. public function batchDelRole($param){
  178. Db::startTrans();// 启动事务
  179. try{
  180. UserType::destroy($param);
  181. Db::commit();// 提交事务
  182. writelog('角色批量删除成功',200);
  183. return ['code' => 200, 'data' => '', 'msg' => '批量删除成功'];
  184. }catch( \Exception $e){
  185. Db::rollback();// 回滚事务
  186. writelog('角色批量删除成功',100);
  187. return ['code' => 100, 'data' => '', 'msg' => '批量删除失败'];
  188. }
  189. }
  190. /**
  191. * [roleState 角色状态]
  192. * @param $param
  193. * @return array
  194. */
  195. public function roleState($id,$num){
  196. $title = $this->where('id',$id)->value('title');
  197. if($num == 2){
  198. $msg = '禁用';
  199. }else{
  200. $msg = '启用';
  201. }
  202. Db::startTrans();// 启动事务
  203. try{
  204. if($id == session('agid')){
  205. return ['code'=>100,'data' => '','msg'=>'不可禁用自己的角色','type'=>'no'];
  206. }else {
  207. $this->where ('id' , $id)->setField (['status' => $num]);
  208. Db::commit();// 提交事务
  209. writelog('角色【'.$title.'】'.$msg.'成功',200);
  210. // return ['code' => 200 , 'data' => '' , 'msg' => '已'.$msg];
  211. }
  212. }catch( \Exception $e){
  213. Db::rollback();// 回滚事务
  214. writelog('角色【'.$title.'】'.$msg.'失败',100);
  215. return ['code' => 100, 'data' => '', 'msg' => $msg.'失败'];
  216. }
  217. }
  218. /**
  219. * forbiddenRole 批量禁用角色
  220. * @param $param
  221. * @return array
  222. */
  223. public function forbiddenRole($param){
  224. Db::startTrans();// 启动事务
  225. try{
  226. if($param){
  227. $this->saveAll($param);
  228. }else{
  229. $this->where('id','not in',[1,session('agid')])->update(['status'=>2]);
  230. }
  231. Db::commit();// 提交事务
  232. writelog('批量禁用角色成功',200);
  233. return ['code' => 200, 'data' => '', 'msg' => '批量禁用成功'];
  234. }catch( \Exception $e){
  235. Db::rollback ();//回滚事务
  236. writelog('批量禁用角色失败',100);
  237. return ['code' => 100, 'data' => '', 'msg' => '批量禁用失败'];
  238. }
  239. }
  240. /**
  241. * usingRole 批量启用角色
  242. * @param $param
  243. * @return array
  244. */
  245. public function usingRole($param){
  246. Db::startTrans();// 启动事务
  247. try{
  248. if($param){
  249. $this->saveAll($param);
  250. }else{
  251. $this->where('1=1')->update(['status'=>1]);
  252. }
  253. Db::commit();// 提交事务
  254. writelog('批量启用角色成功',200);
  255. return ['code' => 200, 'data' => '', 'msg' => '批量启用成功'];
  256. }catch( \Exception $e){
  257. Db::rollback ();//回滚事务
  258. writelog('批量启用角色失败',100);
  259. return ['code' => 100, 'data' => '', 'msg' => '批量启用失败'];
  260. }
  261. }
  262. }