Login.php 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: Kevin
  5. * Date: 2018/8/2
  6. * Time: 22:30
  7. */
  8. namespace app\admin\controller;
  9. use think\Controller;
  10. use think\Db;
  11. use org\Verify;
  12. use com\Geetestlib;
  13. use app\admin\model\UserType;
  14. class Login extends Controller
  15. {
  16. /**
  17. * 登录页面
  18. * @return mixed
  19. */
  20. public function index()
  21. {
  22. return $this->fetch('/login');
  23. }
  24. /**
  25. * 生成验证码
  26. * @return mixed
  27. */
  28. public function checkVerify()
  29. {
  30. $config = [
  31. 'imageH' => 38,// 验证码图片高度
  32. 'imageW' => 120,// 验证码图片宽度
  33. 'codeSet' => '02345689',// 验证码字符集合
  34. 'useZh' => false,//使用中文验证码
  35. 'length' => 4,// 验证码位数
  36. 'useNoise' => true,//是否添加杂点
  37. 'useCurve' => false,//是否画混淆曲线
  38. 'useImgBg' => false,//使用背景图片
  39. 'fontSize' => 16// 验证码字体大小(px)
  40. ];
  41. $verify = new Verify($config);
  42. return $verify->entry();
  43. }
  44. /**
  45. * 极验验证
  46. */
  47. public function getVerify()
  48. {
  49. $GtSdk = new Geetestlib(config('gee.gee_id'), config('gee.gee_key'));
  50. $user_id = "web";
  51. $status = $GtSdk->pre_process($user_id);
  52. session('gtserver',$status);
  53. session('user_id',$user_id);
  54. echo $GtSdk->get_response_str();
  55. }
  56. /**
  57. * 验证验证码
  58. * @return \think\response\Json
  59. */
  60. public function doLogin()
  61. {
  62. $username = input("param.username");
  63. $password = input("param.password");
  64. $verify = new Verify();
  65. if (config('verify_type') == 1) {
  66. $code = input("param.vercode");
  67. if (!$verify->check($code)) {
  68. return json(['code' => -4, 'url' => '', 'msg' => '验证码错误']);
  69. }
  70. return $this->checkAdmin($username,$password);
  71. }elseif (config('verify_type') == 2) {
  72. $GtSdk = new Geetestlib(config('gee.gee_id'), config('gee.gee_key'));
  73. $user_id = session('user_id');
  74. if (session('gtserver') == 1) {
  75. $result = $GtSdk->success_validate(input('param.geetest_challenge'), input('param.geetest_validate'), input('param.geetest_seccode'), $user_id);
  76. //极验服务器状态正常的二次验证接口
  77. if (!$result) {
  78. return json(['code' => -3, 'url' => '', 'msg' => '请先拖动图片到相应位置']);
  79. }
  80. }else{
  81. if (!$GtSdk->fail_validate(input('param.geetest_challenge'), input('param.geetest_validate'), input('param.geetest_seccode'))) {
  82. //极验服务器状态宕机的二次验证接口
  83. return json(['code' => -3, 'url' => '', 'msg' => '请先拖动图片到相应位置']);
  84. }
  85. }
  86. return $this->checkAdmin($username,$password);
  87. }else{
  88. return $this->checkAdmin($username,$password);
  89. }
  90. }
  91. /**
  92. * 验证帐号和密码
  93. * @param $username
  94. * @param $password
  95. * @return \think\response\Json
  96. */
  97. public function checkAdmin($username,$password){
  98. $hasUser = Db::name('admin a')
  99. ->join('auth_group ag','a.groupid=ag.id','left')
  100. ->where('username', $username)
  101. ->field('a.id,a.username,a.password,a.portrait,a.phone,a.loginnum,a.last_login_ip,a.last_login_time,a.real_name,a.status,a.groupid,ag.id agid,ag.title,ag.status ags')
  102. ->find();
  103. if(empty($hasUser)){
  104. return json(['code' => -1, 'url' => '', 'msg' => '管理员不存在']);
  105. }
  106. $config = api('Config/lists');
  107. if($config['web_site_close'] == 0 && $hasUser['id'] !=1 ){
  108. $this->error('后台已经关闭,请稍后访问');
  109. return json(['code' => -7, 'url' => '', 'msg' =>'后台已经关闭,请稍后访问']);
  110. }
  111. if($config['admin_allow_ip'] && $hasUser['id'] !=1 ){
  112. if(in_array(request()->ip(),explode(',',$config['admin_allow_ip']))){
  113. return json(['code' => -8, 'url' => '', 'msg' =>'IP禁止访问']);
  114. }
  115. }
  116. if(md5(md5($password) . config('auth_key')) != $hasUser['password']){
  117. writelog('管理员【'.$username.'】登录失败:密码错误',100,$hasUser['id'] , $username);
  118. return json(['code' => -2, 'url' => '', 'msg' => '密码错误']);
  119. }
  120. if(1 != $hasUser['status']){
  121. writelog('管理员【'.$username.'】登录失败:该账号被禁用',100,$hasUser['id'], $username);
  122. return json(['code' => -5, 'url' => '', 'msg' => '抱歉,该账号被禁用']);
  123. }
  124. if($hasUser['ags'] == 2){
  125. writelog('管理员【'.$username.'】登录失败:'.$hasUser['title'].'身份被禁用',100,$hasUser['id'], $username);
  126. return json(['code' => -6, 'url' => '', 'msg' =>'抱歉,'.$hasUser['title'].'身份被禁用']);
  127. }
  128. if($hasUser['ags'] == null){
  129. writelog('管理员【'.$username.'】登录失败:所属身份不存在',100,$hasUser['id'],$username);
  130. return json(['code' => -7, 'url' => '', 'msg' =>'抱歉,所属身份不存在']);
  131. }
  132. //获取该管理员的角色信息
  133. $user = new UserType();
  134. $info = $user->getRoleInfo($hasUser['groupid']);
  135. session('uid', $hasUser['id']); //用户ID
  136. session('username', $hasUser['username']); //用户名
  137. session('portrait', $hasUser['portrait']); //用户头像
  138. session('phone', $hasUser['phone']); //手机号
  139. session('agid', $hasUser['agid']); //角色id
  140. session('rolename', $info['title']); //角色名
  141. session('describe', $info['describe']); //角色描述
  142. session('rule', $info['rules']); //角色节点
  143. session('name', $info['name']); //角色权限
  144. session('last_time',time()); //角色登录时间点
  145. //更新管理员状态
  146. $param = [
  147. 'loginnum' => $hasUser['loginnum'] + 1,
  148. 'last_login_ip' => request()->ip(),
  149. 'last_login_time' => time()
  150. ];
  151. Db::name('admin')->where('id', $hasUser['id'])->update($param);
  152. writelog('管理员【'.session('username').'】登录成功',200);
  153. return json(['code' => 1, 'url' => url('admin/index/index'), 'msg' => '登录成功!']);
  154. }
  155. /**
  156. * 退出登录
  157. */
  158. public function loginOut()
  159. {
  160. writelog('退出登录',200);
  161. session(null);
  162. cache('db_config_data',null);
  163. $this->redirect(url('admin/index/index'));
  164. }
  165. }