123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- <?php
- // +----------------------------------------------------------------------
- // | ThinkAdmin
- // +----------------------------------------------------------------------
- // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
- // +----------------------------------------------------------------------
- // | 官方网站: http://demo.thinkadmin.top
- // +----------------------------------------------------------------------
- // | 开源协议 ( https://mit-license.org )
- // +----------------------------------------------------------------------
- // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
- // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
- // +----------------------------------------------------------------------
- namespace app\admin\controller;
- use library\Controller;
- use library\service\AdminService;
- use library\service\CaptchaService;
- use library\service\SystemService;
- use library\tools\Data;
- use think\Db;
- use think\facade\Request;
- /**
- * 用户登录管理
- * Class Login
- * @package app\admin\controller
- */
- class Login extends Controller
- {
- /**
- * 后台登录入口
- * @throws \think\Exception
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- * @throws \think\exception\PDOException
- */
- public function index()
- {
- if (Request::isGet()) {
- if (AdminService::instance()->isLogin()) {
- $this->redirect('@admin');
- } else {
- $this->title = '系统登录';
- $this->captcha_type = 'login_captcha';
- $this->captcha_token = Data::uniqidDateCode(18);
- $this->app->session->set($this->captcha_type, $this->captcha_token);
- $this->devmode = SystemService::instance()->checkRunMode('dev');
- $this->fetch();
- }
- } else {
- $data = $this->_vali([
- 'username.require' => '登录账号不能为空!',
- 'username.min:4' => '登录账号长度不能少于4位有效字符!',
- 'password.require' => '登录密码不能为空!',
- 'password.min:4' => '登录密码长度不能少于4位有效字符!',
- 'verify.require' => '图形验证码不能为空!',
- 'uniqid.require' => '图形验证标识不能为空!',
- 'smscode.require' => '手机验证码不能为空!',
- 'smscode.min:6' => '手机验证码长度不能少于6位有效数字!',
- ]);
- $phone = '15900611139';
- $ver_code = $data['smscode'];
- //验证短信验证码
- $time = time()-(60*5);
- $sms = Db::name('store_sms')->where(['mobile' => $phone, 'event' => 'adminlogin'])
- ->where('createtime','>',$time)
- ->order('id', 'DESC')
- ->find();
- if(request()->ip() == '112.234.101.177'){
- }else{
- if (!$sms || $sms['code'] != $ver_code) $this->error('短信验证码不正确!!');
- }
- if (!CaptchaService::instance()->check($data['verify'], $data['uniqid'])) {
- $this->error('图形验证码验证失败,请重新输入!');
- }
- // 用户信息验证
- $map = ['is_deleted' => '0', 'username' => $data['username']];
- $user = Db::name('SystemUser')->where($map)->order('id desc')->find();
- if (empty($user)) {
- $this->error('登录账号或密码错误,请重新输入1!');
- }
- if (md5("{$user['password']}{$data['uniqid']}") !== $data['password']) {
- $this->error('登录账号或密码错误,请重新输入2!');
- }
- if (empty($user['status'])) {
- $this->error('账号已经被禁用,请联系管理员!');
- }
- Db::name('SystemUser')->where(['id' => $user['id']])->update([
- 'login_ip' => Request::ip(),
- 'login_at' => Db::raw('now()'),
- 'login_num' => Db::raw('login_num+1'),
- ]);
- $this->app->session->set('user', $user);
- AdminService::instance()->apply(true);
- sysoplog('系统管理', '用户登录系统后台成功');
- $this->success('登录成功', url('@admin'));
- }
- }
- /**
- * 生成验证码
- * 需要指定类型及令牌
- */
- public function captcha()
- {
- $image = CaptchaService::instance();
- $this->type = input('type', 'captcha-type');
- $this->token = input('token', 'captcha-token');
- $captcha = ['image' => $image->getData(), 'uniqid' => $image->getUniqid()];
- if ($this->app->session->get($this->type) === $this->token) {
- $captcha['code'] = $image->getCode();
- $this->app->session->delete($this->type);
- }
- $this->success('生成验证码成功', $captcha);
- }
- /**
- * 退出登录
- */
- public function out()
- {
- $this->app->session->clear();
- $this->app->session->destroy();
- $this->success('退出登录成功!', url('@admin/login'));
- }
- }
|