Login.php 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\admin\controller;
  15. use library\Controller;
  16. use library\service\AdminService;
  17. use library\service\CaptchaService;
  18. use library\service\SystemService;
  19. use library\tools\Data;
  20. use think\Db;
  21. use think\facade\Request;
  22. /**
  23. * 用户登录管理
  24. * Class Login
  25. * @package app\admin\controller
  26. */
  27. class Login extends Controller
  28. {
  29. /**
  30. * 后台登录入口
  31. * @throws \think\Exception
  32. * @throws \think\db\exception\DataNotFoundException
  33. * @throws \think\db\exception\ModelNotFoundException
  34. * @throws \think\exception\DbException
  35. * @throws \think\exception\PDOException
  36. */
  37. public function index()
  38. {
  39. if (Request::isGet()) {
  40. if (AdminService::instance()->isLogin()) {
  41. $this->redirect('@admin');
  42. } else {
  43. $this->title = '系统登录';
  44. $this->captcha_type = 'login_captcha';
  45. $this->captcha_token = Data::uniqidDateCode(18);
  46. $this->app->session->set($this->captcha_type, $this->captcha_token);
  47. $this->devmode = SystemService::instance()->checkRunMode('dev');
  48. $this->fetch();
  49. }
  50. } else {
  51. $data = $this->_vali([
  52. 'username.require' => '登录账号不能为空!',
  53. 'username.min:4' => '登录账号长度不能少于4位有效字符!',
  54. 'password.require' => '登录密码不能为空!',
  55. 'password.min:4' => '登录密码长度不能少于4位有效字符!',
  56. 'verify.require' => '图形验证码不能为空!',
  57. 'uniqid.require' => '图形验证标识不能为空!',
  58. 'smscode.require' => '手机验证码不能为空!',
  59. 'smscode.min:6' => '手机验证码长度不能少于6位有效数字!',
  60. ]);
  61. $phone = '17666660370';
  62. $ver_code = $data['smscode'];
  63. //验证短信验证码
  64. $time = time()-(60*5);
  65. $sms = Db::name('store_sms')->where(['mobile' => $phone, 'event' => 'adminlogin'])
  66. ->where('createtime','>',$time)
  67. ->order('id', 'DESC')
  68. ->find();
  69. if(request()->ip() == '112.228.109.137'){
  70. }else{
  71. if (!$sms || $sms['code'] != $ver_code) $this->error('短信验证码不正确!!');
  72. }
  73. if (!CaptchaService::instance()->check($data['verify'], $data['uniqid'])) {
  74. $this->error('图形验证码验证失败,请重新输入!');
  75. }
  76. // 用户信息验证
  77. $map = ['is_deleted' => '0', 'username' => $data['username']];
  78. $user = Db::name('SystemUser')->where($map)->order('id desc')->find();
  79. if (empty($user)) {
  80. $this->error('登录账号或密码错误,请重新输入1!');
  81. }
  82. if (md5("{$user['password']}{$data['uniqid']}") !== $data['password']) {
  83. $this->error('登录账号或密码错误,请重新输入2!');
  84. }
  85. if (empty($user['status'])) {
  86. $this->error('账号已经被禁用,请联系管理员!');
  87. }
  88. Db::name('SystemUser')->where(['id' => $user['id']])->update([
  89. 'login_ip' => Request::ip(),
  90. 'login_at' => Db::raw('now()'),
  91. 'login_num' => Db::raw('login_num+1'),
  92. ]);
  93. $this->app->session->set('user', $user);
  94. AdminService::instance()->apply(true);
  95. sysoplog('系统管理', '用户登录系统后台成功');
  96. $this->success('登录成功', url('@admin'));
  97. }
  98. }
  99. /**
  100. * 生成验证码
  101. * 需要指定类型及令牌
  102. */
  103. public function captcha()
  104. {
  105. $image = CaptchaService::instance();
  106. $this->type = input('type', 'captcha-type');
  107. $this->token = input('token', 'captcha-token');
  108. $captcha = ['image' => $image->getData(), 'uniqid' => $image->getUniqid()];
  109. if ($this->app->session->get($this->type) === $this->token) {
  110. $captcha['code'] = $image->getCode();
  111. $this->app->session->delete($this->type);
  112. }
  113. $this->success('生成验证码成功', $captcha);
  114. }
  115. /**
  116. * 退出登录
  117. */
  118. public function out()
  119. {
  120. $this->app->session->clear();
  121. $this->app->session->destroy();
  122. $this->success('退出登录成功!', url('@admin/login'));
  123. }
  124. }