Login.php 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2021 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: https://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 think\admin\Controller;
  16. use think\admin\extend\CodeExtend;
  17. use think\admin\service\AdminService;
  18. use think\admin\service\CaptchaService;
  19. use think\admin\service\SystemService;
  20. /**
  21. * 用户登录管理
  22. * Class Login
  23. * @package app\admin\controller
  24. */
  25. class Login extends Controller
  26. {
  27. /**
  28. * 后台登录入口
  29. * @throws \think\db\exception\DataNotFoundException
  30. * @throws \think\db\exception\DbException
  31. * @throws \think\db\exception\ModelNotFoundException
  32. */
  33. public function index()
  34. {
  35. if ($this->app->request->isGet()) {
  36. if (AdminService::instance()->isLogin()) {
  37. $this->redirect(sysuri('admin/index/index'));
  38. } else {
  39. $this->title = '系统登录';
  40. $this->captchaType = 'LoginCaptcha';
  41. $this->captchaToken = CodeExtend::uniqidDate(18);
  42. $this->devmode = SystemService::instance()->checkRunMode('dev');
  43. if (!$this->app->session->get('login_input_session_error')) {
  44. $this->app->session->set($this->captchaType, $this->captchaToken);
  45. }
  46. $this->fetch();
  47. }
  48. } else {
  49. $data = $this->_vali([
  50. 'username.require' => '登录账号不能为空!',
  51. 'username.min:4' => '登录账号不能少于4位字符!',
  52. 'password.require' => '登录密码不能为空!',
  53. 'password.min:4' => '登录密码不能少于4位字符!',
  54. 'verify.require' => '图形验证码不能为空!',
  55. 'uniqid.require' => '图形验证标识不能为空!',
  56. ]);
  57. if (!CaptchaService::instance()->check($data['verify'], $data['uniqid'])) {
  58. $this->error('图形验证码验证失败,请重新输入!');
  59. }
  60. /*! 用户信息验证 */
  61. $map = ['username' => $data['username'], 'is_deleted' => '0'];
  62. $user = $this->app->db->name('SystemUser')->where($map)->order('id desc')->find();
  63. if (empty($user)) {
  64. $this->app->session->set("login_input_session_error", true);
  65. $this->error('登录账号或密码错误,请重新输入!');
  66. }
  67. if (md5("{$user['password']}{$data['uniqid']}") !== $data['password']) {
  68. $this->app->session->set("login_input_session_error", true);
  69. $this->error('登录账号或密码错误,请重新输入!');
  70. }
  71. if (empty($user['status'])) {
  72. $this->error('账号已经被禁用,请联系管理员!');
  73. }
  74. $this->app->session->set('user', $user);
  75. $this->app->session->delete("login_input_session_error");
  76. $this->app->db->name('SystemUser')->where(['id' => $user['id']])->update([
  77. 'login_ip' => $this->app->request->ip(),
  78. 'login_at' => $this->app->db->raw('now()'),
  79. 'login_num' => $this->app->db->raw('login_num+1'),
  80. ]);
  81. sysoplog('系统用户登录', '登录系统后台成功');
  82. $this->success('登录成功', sysuri('admin/index/index'));
  83. }
  84. }
  85. /**
  86. * 生成验证码
  87. */
  88. public function captcha()
  89. {
  90. $input = $this->_vali([
  91. 'type.require' => '验证码类型不能为空!',
  92. 'token.require' => '验证码标识不能为空!',
  93. ]);
  94. $image = CaptchaService::instance()->initialize();
  95. $captcha = ['image' => $image->getData(), 'uniqid' => $image->getUniqid()];
  96. if ($this->app->session->get($input['type']) === $input['token']) {
  97. $captcha['code'] = $image->getCode();
  98. $this->app->session->delete($input['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('退出登录成功!', sysuri('admin/login/index'));
  110. }
  111. }