Login.php 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | framework
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2018 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://framework.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | github开源项目:https://github.com/zoujingli/ThinkAdmin
  12. // +----------------------------------------------------------------------
  13. namespace app\admin\controller;
  14. use library\Controller;
  15. use think\Db;
  16. /**
  17. * 用户登录管理
  18. * Class Login
  19. * @package app\admin\controller
  20. */
  21. class Login extends Controller
  22. {
  23. /**
  24. * 设置页面标题
  25. * @var string
  26. */
  27. public $title = '管理登录';
  28. /**
  29. * 用户登录
  30. * @throws \think\Exception
  31. * @throws \think\db\exception\DataNotFoundException
  32. * @throws \think\db\exception\ModelNotFoundException
  33. * @throws \think\exception\DbException
  34. * @throws \think\exception\PDOException
  35. */
  36. public function index()
  37. {
  38. $this->applyCsrfToken();
  39. if ($this->request->isGet()) {
  40. session('loginskey', $this->skey = session('loginskey') ? session('loginskey') : uniqid());
  41. $this->fetch();
  42. } else {
  43. $data = $this->_input([
  44. 'username' => $this->request->post('username'),
  45. 'password' => $this->request->post('password'),
  46. ], [
  47. 'username' => 'require|min:4',
  48. 'password' => 'require|min:4',
  49. ], [
  50. 'username.require' => '登录账号不能为空!',
  51. 'password.require' => '登录密码不能为空!',
  52. 'username.min' => '登录账号长度不能少于4位有效字符!',
  53. 'password.min' => '登录密码长度不能少于4位有效字符!',
  54. ]);
  55. // 用户信息验证
  56. $map = ['is_deleted' => '0', 'username' => $data['username']];
  57. $user = Db::name('SystemUser')->where($map)->find();
  58. if (empty($user)) $this->error('登录账号或密码错误,请重新输入!');
  59. if (empty($user['status'])) $this->error('账号已经被禁用,请联系管理!');
  60. // 账号锁定消息
  61. $cache = cache('user_login_' . $user['username']);
  62. if (is_array($cache) && !empty($cache['number']) && !empty($cache['time'])) {
  63. if ($cache['number'] >= 10 && ($diff = $cache['time'] + 3600 - time()) > 0) {
  64. list($m, $s, $info) = [floor($diff / 60), floor($diff % 60), ''];
  65. if ($m > 0) $info = "{$m} 分";
  66. $this->error("<strong class='color-red'>抱歉,该账号已经被锁定!</strong><p class='nowrap'>连续 10 次登录错误,请 {$info} {$s} 秒后再登录!</p>");
  67. }
  68. }
  69. if (md5($user['password'] . session('loginskey')) !== $data['password']) {
  70. if (empty($cache) || empty($cache['time']) || empty($cache['number']) || $cache['time'] + 3600 < time()) {
  71. $cache = ['time' => time(), 'number' => 1, 'geoip' => $this->request->ip()];
  72. } elseif ($cache['number'] + 1 <= 10) {
  73. $cache = ['time' => time(), 'number' => $cache['number'] + 1, 'geoip' => $this->request->ip()];
  74. }
  75. cache('user_login_' . $user['username'], $cache);
  76. if (($diff = 10 - $cache['number']) > 0) {
  77. $this->error("<strong class='color-red'>登录账号或密码错误!</strong><p class='nowrap'>还有 {$diff} 次尝试机会,将锁定一小时内禁止登录!</p>");
  78. } else {
  79. _syslog('系统管理', "账号{$user['username']}连续10次登录密码错误,请注意账号安全!");
  80. $this->error("<strong class='color-red'>登录账号或密码错误!</strong><p class='nowrap'>尝试次数达到上限,锁定一小时内禁止登录!</p>");
  81. }
  82. }
  83. // 登录成功并更新账号
  84. cache('user_login_' . $user['username'], null);
  85. Db::name('SystemUser')->where(['id' => $user['id']])->update([
  86. 'login_at' => Db::raw('now()'),
  87. 'login_ip' => $this->request->ip(),
  88. 'login_num' => Db::raw('login_num+1'),
  89. ]);
  90. session('user', $user);
  91. session('loginskey', null);
  92. empty($user['authorize']) || \app\admin\service\Auth::applyNode();
  93. _syslog('系统管理', '用户登录系统成功');
  94. $this->success('登录成功,正在进入系统...', url('@admin'));
  95. }
  96. }
  97. /**
  98. * 退出登录
  99. */
  100. public function out()
  101. {
  102. if ($_SESSION) $_SESSION = [];
  103. [session_unset(), session_destroy()];
  104. $this->success('退出登录成功!', url('@admin/login'));
  105. }
  106. }