Login.php 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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. header('Access-Control-Allow-Origin: *');
  23. /**
  24. * 用户登录管理
  25. * Class Login
  26. * @package app\admin\controller
  27. */
  28. class Login extends Controller
  29. {
  30. /**
  31. * 后台登录入口
  32. * @throws \think\Exception
  33. * @throws \think\db\exception\DataNotFoundException
  34. * @throws \think\db\exception\ModelNotFoundException
  35. * @throws \think\exception\DbException
  36. * @throws \think\exception\PDOException
  37. */
  38. public function index()
  39. {
  40. if (Request::isGet()) {
  41. if (AdminService::instance()->isLogin()) {
  42. $this->redirect('@admin');
  43. } else {
  44. $this->title = '系统登录';
  45. $this->captcha_type = 'login_captcha';
  46. $this->captcha_token = Data::uniqidDateCode(18);
  47. $this->app->session->set($this->captcha_type, $this->captcha_token);
  48. $this->devmode = SystemService::instance()->checkRunMode('dev');
  49. $this->fetch();
  50. }
  51. } else {
  52. $data = $this->_vali([
  53. 'username.require' => '登录账号不能为空!',
  54. 'username.min:4' => '登录账号长度不能少于4位有效字符!',
  55. 'password.require' => '登录密码不能为空!',
  56. 'password.min:4' => '登录密码长度不能少于4位有效字符!',
  57. 'verify.require' => '图形验证码不能为空!',
  58. 'uniqid.require' => '图形验证标识不能为空!',
  59. ]);
  60. if (!CaptchaService::instance()->check($data['verify'], $data['uniqid'])) {
  61. $this->error('图形验证码验证失败,请重新输入!');
  62. }
  63. // 用户信息验证
  64. $map = ['is_deleted' => '0', 'username' => $data['username']];
  65. $user = Db::name('AdminUser')->where($map)->order('id desc')->find();
  66. if (empty($user)) {
  67. $this->error('登录账号或密码错误,请重新输入1!');
  68. }
  69. if (md5("{$user['password']}{$data['uniqid']}") !== $data['password']) {
  70. $this->error('登录账号或密码错误,请重新输入2!');
  71. }
  72. if (empty($user['status'])) {
  73. $this->error('账号已经被禁用,请联系管理员!');
  74. }
  75. Db::name('AdminUser')->where(['id' => $user['id']])->update([
  76. 'login_ip' => Request::ip(),
  77. 'login_at' => Db::raw('now()'),
  78. 'login_num' => Db::raw('login_num+1'),
  79. ]);
  80. $this->app->session->set('user', $user);
  81. AdminService::instance()->apply(true);
  82. sysoplog('系统管理', '用户登录系统后台成功');
  83. $this->success('登录成功', url('@admin'));
  84. }
  85. }
  86. /**
  87. * 生成验证码
  88. * 需要指定类型及令牌
  89. */
  90. public function captcha()
  91. {
  92. $image = CaptchaService::instance();
  93. $this->type = input('type', 'captcha-type');
  94. $this->token = input('token', 'captcha-token');
  95. $captcha = ['image' => $image->getData(), 'uniqid' => $image->getUniqid()];
  96. if ($this->app->session->get($this->type) === $this->token) {
  97. $captcha['code'] = $image->getCode();
  98. $this->app->session->delete($this->type);
  99. }
  100. $this->success('生成验证码成功', $captcha);
  101. }
  102. /**
  103. * 退出登录
  104. */
  105. public function out()
  106. {
  107. $this->app->session->clear();
  108. $this->app->session->destroy();
  109. $this->success('退出登录成功!', url('@admin/login'));
  110. }
  111. }