Login.php 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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\NodeService;
  16. use library\Controller;
  17. use think\Db;
  18. /**
  19. * 用户登录管理
  20. * Class Login
  21. * @package app\admin\controller
  22. */
  23. class Login extends Controller
  24. {
  25. /**
  26. * 后台登录入口
  27. * @throws \think\Exception
  28. * @throws \think\db\exception\DataNotFoundException
  29. * @throws \think\db\exception\ModelNotFoundException
  30. * @throws \think\exception\DbException
  31. * @throws \think\exception\PDOException
  32. */
  33. public function index()
  34. {
  35. $this->title = '系统登录';
  36. if ($this->request->isGet()) {
  37. if (NodeService::islogin()) {
  38. $this->redirect('@admin');
  39. } else {
  40. $this->loginskey = session('loginskey');
  41. if (empty($this->loginskey)) {
  42. $this->loginskey = uniqid();
  43. session('loginskey', $this->loginskey);
  44. }
  45. $this->fetch();
  46. }
  47. } else {
  48. $data = $this->_input([
  49. 'username' => $this->request->post('username'),
  50. 'password' => $this->request->post('password'),
  51. ], [
  52. 'username' => 'require|min:4',
  53. 'password' => 'require|min:4',
  54. ], [
  55. 'username.require' => '登录账号不能为空!',
  56. 'password.require' => '登录密码不能为空!',
  57. 'username.min' => '登录账号长度不能少于4位有效字符!',
  58. 'password.min' => '登录密码长度不能少于4位有效字符!',
  59. ]);
  60. // 用户信息验证
  61. $map = ['is_deleted' => '0', 'username' => $data['username']];
  62. $user = Db::name('SystemUser')->where($map)->order('id desc')->find();
  63. if (empty($user)) $this->error('登录账号或密码错误,请重新输入!');
  64. if (empty($user['status'])) $this->error('账号已经被禁用,请联系管理员!');
  65. // 账号锁定消息
  66. $cache = cache("user_login_{$user['username']}");
  67. if (is_array($cache) && !empty($cache['number']) && !empty($cache['time'])) {
  68. if ($cache['number'] >= 10 && ($diff = $cache['time'] + 3600 - time()) > 0) {
  69. list($m, $s, $info) = [floor($diff / 60), floor($diff % 60), ''];
  70. if ($m > 0) $info = "{$m} 分";
  71. $this->error("<strong class='color-red'>抱歉,该账号已经被锁定!</strong><p class='nowrap'>连续 10 次登录错误,请 {$info} {$s} 秒后再登录!</p>");
  72. }
  73. }
  74. if (md5($user['password'] . session('loginskey')) !== $data['password']) {
  75. if (empty($cache) || empty($cache['time']) || empty($cache['number']) || $cache['time'] + 3600 < time()) {
  76. $cache = ['time' => time(), 'number' => 1, 'geoip' => $this->request->ip()];
  77. } elseif ($cache['number'] + 1 <= 10) {
  78. $cache = ['time' => time(), 'number' => $cache['number'] + 1, 'geoip' => $this->request->ip()];
  79. }
  80. cache("user_login_{$user['username']}", $cache);
  81. if (($diff = 10 - $cache['number']) > 0) {
  82. $this->error("<strong class='color-red'>登录账号或密码错误!</strong><p class='nowrap'>还有 {$diff} 次尝试机会,将锁定一小时内禁止登录!</p>");
  83. } else {
  84. sysoplog('系统管理', "账号{$user['username']}连续10次登录密码错误,请注意账号安全!");
  85. $this->error("<strong class='color-red'>登录账号或密码错误!</strong><p class='nowrap'>尝试次数达到上限,锁定一小时内禁止登录!</p>");
  86. }
  87. }
  88. // 登录成功并更新账号
  89. cache("user_login_{$user['username']}", null);
  90. Db::name('SystemUser')->where(['id' => $user['id']])->update([
  91. 'login_at' => Db::raw('now()'), 'login_ip' => $this->request->ip(), 'login_num' => Db::raw('login_num+1'),
  92. ]);
  93. session('loginskey', null);
  94. session('admin_user', $user);
  95. NodeService::applyUserAuth();
  96. sysoplog('系统管理', '用户登录系统成功');
  97. $this->success('登录成功,正在进入系统...', url('@admin'));
  98. }
  99. }
  100. /**
  101. * 退出登录
  102. */
  103. public function out()
  104. {
  105. \think\facade\Session::clear();
  106. \think\facade\Session::destroy();
  107. $this->success('退出登录成功!', url('@admin/login'));
  108. }
  109. }