Login.php 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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 app\admin\service\CaptchaService;
  16. use app\admin\service\NodeService;
  17. use library\Controller;
  18. use think\Db;
  19. use think\facade\Request;
  20. /**
  21. * 用户登录管理
  22. * Class Login
  23. * @package app\admin\controller
  24. */
  25. class Login extends Controller
  26. {
  27. /**
  28. * 后台登录入口
  29. * @throws \think\Exception
  30. * @throws \think\db\exception\DataNotFoundException
  31. * @throws \think\db\exception\ModelNotFoundException
  32. * @throws \think\exception\DbException
  33. * @throws \think\exception\PDOException
  34. */
  35. public function index()
  36. {
  37. if (Request::isGet()) {
  38. if (NodeService::islogin()) {
  39. $this->redirect('@admin');
  40. } else {
  41. $this->title = '系统登录';
  42. $this->domain = Request::host(true);
  43. if (!($this->loginskey = session('loginskey'))) session('loginskey', $this->loginskey = uniqid());
  44. $this->devmode = in_array($this->domain, ['127.0.0.1', 'localhost']) || is_numeric(stripos($this->domain, 'thinkadmin.top'));
  45. $this->captcha = new CaptchaService();
  46. $this->fetch();
  47. }
  48. } else {
  49. $data = $this->_input([
  50. 'username' => input('username'), 'password' => input('password'),
  51. ], [
  52. 'username' => 'require|min:4', 'password' => 'require|min:4',
  53. ], [
  54. 'username.require' => '登录账号不能为空!',
  55. 'password.require' => '登录密码不能为空!',
  56. 'username.min' => '登录账号长度不能少于4位有效字符!',
  57. 'password.min' => '登录密码长度不能少于4位有效字符!',
  58. ]);
  59. if (!CaptchaService::check(input('verify'), input('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)) $this->error('登录账号或密码错误,请重新输入!');
  66. if (md5($user['password'] . session('loginskey')) !== $data['password']) {
  67. $this->error('登录账号或密码错误,请重新输入!');
  68. }
  69. if (empty($user['status'])) $this->error('账号已经被禁用,请联系管理员!');
  70. Db::name('SystemUser')->where(['id' => $user['id']])->update([
  71. 'login_at' => Db::raw('now()'), 'login_ip' => Request::ip(), 'login_num' => Db::raw('login_num+1'),
  72. ]);
  73. session('loginskey', null);
  74. session('admin_user', $user);
  75. NodeService::applyUserAuth(true);
  76. sysoplog('系统管理', '用户登录系统成功');
  77. $this->success('登录成功', url('@admin'));
  78. }
  79. }
  80. /**
  81. * 退出登录
  82. */
  83. public function out()
  84. {
  85. \think\facade\Session::clear();
  86. \think\facade\Session::destroy();
  87. $this->success('退出登录成功!', url('@admin/login'));
  88. }
  89. }