UserModel.php 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278
  1. <?php
  2. namespace app\admin\model;
  3. use think\Model;
  4. use think\Db;
  5. class UserModel extends Model
  6. {
  7. protected $name = 'admin';
  8. protected $autoWriteTimestamp = true; // 开启自动写入时间戳
  9. /**
  10. * 根据搜索条件获取用户列表信息
  11. */
  12. public function getUsersByWhere($map,$od, $Nowpage, $limits)
  13. {
  14. return $this->alias ('a')
  15. ->join('auth_group ag', 'a.groupid = ag.id','left')
  16. ->field('a.id,a.username,a.password,a.portrait,a.loginnum,a.last_login_ip,a.last_login_time,a.real_name,a.status,a.phone,a.groupid,a.create_time,a.update_time,ag.title')
  17. ->where($map)
  18. ->page($Nowpage, $limits)
  19. ->order($od)
  20. ->select();
  21. }
  22. /*
  23. * 总页面数
  24. */
  25. public function getUserCount($map){
  26. return $this->alias('a')
  27. ->join('auth_group ag', 'a.groupid = ag.id','left')
  28. ->where($map)
  29. ->count();
  30. }
  31. /**
  32. * 根据搜索条件获取所有的用户数量
  33. * @param $where
  34. */
  35. public function getAllUsers($where)
  36. {
  37. return $this->where($where)->count();
  38. }
  39. /**
  40. * 插入管理员信息
  41. * @param $param
  42. */
  43. public function insertUser($param)
  44. {
  45. Db::startTrans();// 启动事务
  46. try{
  47. $this->allowField(true)->save($param);
  48. Db::name('auth_group_access')->insert(['uid'=> $this->id,'group_id'=> $param['groupid']]);
  49. Db::commit();// 提交事务
  50. writelog('管理员【'.$param['username'].'】添加成功',200);
  51. return ['code' => 200, 'data' =>"", 'msg' => '添加管理员成功'];
  52. }catch( \Exception $e){
  53. Db::rollback ();//回滚事务
  54. writelog('管理员【'.$param['username'].'】添加失败',100);
  55. return ['code' => 100, 'data' => '', 'msg' => '添加管理员失败'];
  56. }
  57. }
  58. /**
  59. * 编辑管理员信息
  60. * @param $param
  61. */
  62. public function editUser($param)
  63. {
  64. Db::startTrans();// 启动事务
  65. try{
  66. $this->allowField(true)->save($param, ['id' => $param['id']]);
  67. if($param['id'] != 1){
  68. Db::name('auth_group_access')->where('uid',$param['id'])->setField ('group_id',$param['groupid']);
  69. }
  70. Db::commit();// 提交事务
  71. writelog('管理员【'.$param['username'].'】编辑成功',200);
  72. $status = '';
  73. if($param['id']==session('uid')){
  74. session('portrait', $param['portrait']); //用户头像
  75. if(isset($param['password']) && $param['password'] != ""){
  76. $status = 100;
  77. }
  78. }
  79. return ['code' => 200, 'data' => $status, 'msg' => '编辑用户成功'];
  80. }catch( \Exception $e){
  81. Db::rollback ();//回滚事务
  82. writelog('管理员【'.$param['username'].'】编辑失败',100);
  83. return ['code' => 100, 'data' => '', 'msg' =>'编辑用户失败'];
  84. }
  85. }
  86. /**
  87. * 验证原始密码
  88. * @param $param
  89. */
  90. public function checkOldPassword($oldpassword,$id){
  91. $password = $this->where("id",$id)->value("password");
  92. if($password === $oldpassword){
  93. return ['code' => 200, 'data' => '', 'msg' =>'true'];
  94. }else{
  95. return ['code' => 100, 'data' => '', 'msg' =>'false'];
  96. }
  97. }
  98. /**
  99. * checkName 验证管理员名称唯一性
  100. * @param $username
  101. * @return string
  102. */
  103. public function checkName($username,$uid){
  104. if($uid != ''){
  105. $uname = $this->where('id',$uid)->value('username');
  106. if($uname == $username){
  107. return ['code' => 200, 'msg' => 'true'];
  108. }
  109. }
  110. $result = $this->where('username',$username)->find();
  111. if($result){
  112. return ['code' => 100, 'msg' => 'false'];
  113. }else{
  114. return ['code' => 200, 'msg' => 'true'];
  115. }
  116. }
  117. /**
  118. * 根据管理员id获取角色信息
  119. * @param $id
  120. */
  121. public function getOneUser($id)
  122. {
  123. return $this->where('id', $id)->find();
  124. }
  125. /**
  126. * 删除管理员
  127. * @param $id
  128. */
  129. public function delUser($id)
  130. {
  131. $name = $this->where('id', $id)->value('username');
  132. Db::startTrans();// 启动事务
  133. try{
  134. $this->where('id', $id)->delete();
  135. Db::name('auth_group_access')->where('uid', $id)->delete();
  136. Db::commit();// 提交事务
  137. writelog('管理员【'.$name.'】删除成功(ID='.$id.')',200);
  138. return ['code' => 200, 'data' => '', 'msg' => '删除用户成功'];
  139. }catch( \Exception $e){
  140. Db::rollback ();//回滚事务
  141. writelog('管理员【'.$name.'】删除失败(ID='.$id.')',100);
  142. return ['code' => 100, 'data' => '', 'msg' => '删除用户失败'];
  143. }
  144. }
  145. /**
  146. * editPassword 修改管理员密码
  147. * @param $param
  148. * @return array
  149. */
  150. public function editPassword($param){
  151. $name = $this->where('id',session('uid'))->value('username');
  152. Db::startTrans();// 启动事务
  153. try{
  154. $this->allowField (true)->save($param,['id'=>session('uid')]);
  155. Db::commit();// 提交事务
  156. writelog('管理员【'.$name.'】修改密码成功',200);
  157. return ['code'=>200,'msg'=>'密码修改成功,请重新登录!'];
  158. }catch( \Exception $e){
  159. Db::rollback ();//回滚事务
  160. writelog('管理员【'.$name.'】修改密码失败',100);
  161. return ['code'=>100,'msg'=>'密码修改失败'];
  162. }
  163. }
  164. /**
  165. * batchDelUser 批量删除管理员
  166. * @param $param
  167. * @return array
  168. */
  169. public function batchDelUser($param){
  170. Db::startTrans();// 启动事务
  171. try{
  172. UserModel::destroy($param);
  173. for($i=0;$i<count($param);$i++){
  174. Db::name('auth_group_access')->where('uid','in',$param)->delete();
  175. }
  176. Db::commit();// 提交事务
  177. writelog('批量删除管理员成功',200);
  178. return ['code' => 200, 'data' => '', 'msg' => '批量删除成功'];
  179. }catch( \Exception $e){
  180. Db::rollback ();//回滚事务
  181. writelog('批量删除管理员失败',100);
  182. return ['code' => 100, 'data' => '', 'msg' => '批量删除失败'];
  183. }
  184. }
  185. /**
  186. * forbiddenAdmin 批量禁用管理员
  187. * @param $param
  188. * @return array
  189. */
  190. public function forbiddenAdmin($param){
  191. Db::startTrans();// 启动事务
  192. try{
  193. if($param){
  194. $this->saveAll($param);
  195. }else{
  196. $this->where('id','not in',[1,session('uid')])->update(['status'=>2]);
  197. }
  198. Db::commit();// 提交事务
  199. writelog('批量禁用管理员成功',200);
  200. return ['code' => 200, 'data' => '', 'msg' => '批量禁用成功'];
  201. }catch( \Exception $e){
  202. Db::rollback ();//回滚事务
  203. writelog('批量禁用管理员失败',100);
  204. return ['code' => 100, 'data' => '', 'msg' => '批量禁用失败'];
  205. }
  206. }
  207. /**
  208. * usingAdmin 批量启用管理员
  209. * @param $param
  210. * @return array
  211. */
  212. public function usingAdmin($param){
  213. Db::startTrans();// 启动事务
  214. try{
  215. if($param){
  216. $this->saveAll($param);
  217. }else{
  218. $this->where('1=1')->update(['status'=>1]);
  219. }
  220. Db::commit();// 提交事务
  221. writelog('批量启用管理员成功',200);
  222. return ['code' => 200, 'data' => '', 'msg' => '批量启用成功'];
  223. }catch( \Exception $e){
  224. Db::rollback ();//回滚事务
  225. writelog('批量启用管理员失败',100);
  226. return ['code' => 100, 'data' => '', 'msg' => '批量启用失败'];
  227. }
  228. }
  229. /**
  230. * [userState 用户状态]
  231. * @param $id
  232. * @return array
  233. */
  234. public function userState($id,$num){
  235. $username = $this->where('id',$id)->value('username');
  236. if($num == 2){
  237. $msg = '禁用';
  238. }else{
  239. $msg = '启用';
  240. }
  241. Db::startTrans();// 启动事务
  242. try{
  243. if($id == session('uid')){
  244. return ['code'=>100,'data' => '','msg'=>'不可禁用自己','type'=>'no'];
  245. }else {
  246. $this->where ('id' , $id)->setField (['status' => $num]);
  247. Db::commit();// 提交事务
  248. writelog('管理员【'.$username.'】'.$msg.'成功',200);
  249. // return ['code' => 200, 'data' => '', 'msg' => '已'.$msg];
  250. }
  251. }catch( \Exception $e){
  252. Db::rollback ();//回滚事务
  253. writelog('管理员【'.$username.'】'.$msg.'失败',100);
  254. return ['code' => 100, 'data' => '', 'msg' => $msg.'失败'];
  255. }
  256. }
  257. }