Login.php 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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. ]);
  59. if (!CaptchaService::instance()->check($data['verify'], $data['uniqid'])) {
  60. $this->error('图形验证码验证失败,请重新输入!');
  61. }
  62. // 用户信息验证
  63. $map = ['is_deleted' => '0', 'username' => $data['username']];
  64. $user = Db::name('SystemUser')->where($map)->order('id desc')->find();
  65. if (empty($user)) {
  66. $this->error('登录账号或密码错误,请重新输入1!');
  67. }
  68. if (md5("{$user['password']}{$data['uniqid']}") !== $data['password']) {
  69. $this->error('登录账号或密码错误,请重新输入2!');
  70. }
  71. if (empty($user['status'])) {
  72. $this->error('账号已经被禁用,请联系管理员!');
  73. }
  74. Db::name('SystemUser')->where(['id' => $user['id']])->update([
  75. 'login_ip' => Request::ip(),
  76. 'login_at' => Db::raw('now()'),
  77. 'login_num' => Db::raw('login_num+1'),
  78. ]);
  79. $this->app->session->set('user', $user);
  80. AdminService::instance()->apply(true);
  81. sysoplog('系统管理', '用户登录系统后台成功');
  82. $this->success('登录成功', url('@admin'));
  83. }
  84. }
  85. /**
  86. * 生成验证码
  87. * 需要指定类型及令牌
  88. */
  89. public function captcha()
  90. {
  91. $image = CaptchaService::instance();
  92. $this->type = input('type', 'captcha-type');
  93. $this->token = input('token', 'captcha-token');
  94. $captcha = ['image' => $image->getData(), 'uniqid' => $image->getUniqid()];
  95. if ($this->app->session->get($this->type) === $this->token) {
  96. $captcha['code'] = $image->getCode();
  97. $this->app->session->delete($this->type);
  98. }
  99. $this->success('生成验证码成功', $captcha);
  100. }
  101. /**
  102. * 退出登录
  103. */
  104. public function out()
  105. {
  106. $this->app->session->clear();
  107. $this->app->session->destroy();
  108. $this->success('退出登录成功!', url('@admin/login'));
  109. }
  110. }