Login.php 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  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\AuthService;
  16. use think\admin\Controller;
  17. use think\admin\extend\CaptchaExtend;
  18. /**
  19. * 用户登录管理
  20. * Class Login
  21. * @package app\admin\controller
  22. */
  23. class Login extends Controller
  24. {
  25. /**
  26. * 后台登录入口
  27. * @throws \think\db\exception\DataNotFoundException
  28. * @throws \think\db\exception\DbException
  29. * @throws \think\db\exception\ModelNotFoundException
  30. */
  31. public function index()
  32. {
  33. if ($this->app->request->isGet()) {
  34. if (AuthService::isLogin()) {
  35. $this->redirect(url('@admin')->suffix(false)->build());
  36. } else {
  37. $this->title = '系统登录';
  38. $this->domain = $this->app->request->host(true);
  39. $this->devmode = in_array($this->domain, ['127.0.0.1', 'localhost']);
  40. $this->devmode = $this->devmode ?: is_numeric(stripos($this->domain, 'thinkadmin.top'));
  41. $this->captcha = CaptchaExtend::instance();
  42. $this->fetch();
  43. }
  44. } elseif ($this->app->request->isPost()) {
  45. $data = ['username' => input('username'), 'password' => input('password')];
  46. if (empty($data['username'])) $this->error('登录账号不能为空!');
  47. if (empty($data['password'])) $this->error('登录密码不能为空!');
  48. if (!CaptchaExtend::check(input('verify'), input('uniqid'))) {
  49. $this->error('图形验证码验证失败,请重新输入!');
  50. }
  51. // 用户信息验证
  52. $map = ['username' => $data['username'], 'is_deleted' => '0'];
  53. $user = $this->app->db->name('SystemUser')->where($map)->order('id desc')->find();
  54. if (empty($user)) {
  55. $this->error('登录账号或密码错误,请重新输入!');
  56. }
  57. if (md5("{$user['password']}{$user['username']}") !== $data['password']) {
  58. $this->error('登录账号或密码错误,请重新输入!');
  59. }
  60. if (empty($user['status'])) {
  61. $this->error('账号已经被禁用,请联系管理员!');
  62. }
  63. $this->app->db->name('SystemUser')->where(['id' => $user['id']])->update([
  64. 'login_ip' => $this->app->request->ip(),
  65. 'login_at' => $this->app->db->raw('now()'),
  66. 'login_num' => $this->app->db->raw('login_num+1'),
  67. ]);
  68. $this->app->session->set('user', $user);
  69. sysoplog('用户登录', "用户登录系统后台成功");
  70. $this->success('登录成功', url('@admin')->build());
  71. }
  72. }
  73. /**
  74. * 生成验证码
  75. */
  76. public function captcha()
  77. {
  78. $image = CaptchaExtend::instance();
  79. $this->success('生成验证码成功', [
  80. 'image' => $image->getData(),
  81. 'uniqid' => $image->getUniqid(),
  82. ]);
  83. }
  84. /**
  85. * 退出登录
  86. */
  87. public function out()
  88. {
  89. $this->app->session->clear();
  90. $this->app->session->destroy();
  91. $this->success('退出登录成功!', url('@admin/login')->build());
  92. }
  93. }