From a0175b4430d4e2fd76a32a4b721066b187d29e1e Mon Sep 17 00:00:00 2001 From: Anyon Date: Thu, 2 Apr 2020 11:18:10 +0800 Subject: [PATCH] =?UTF-8?q?ComposerUpdate=20&=20=20=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E7=99=BB=E5=BD=95=E9=AA=8C=E8=AF=81=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/admin/controller/Login.php | 13 ++++--- app/admin/view/login/index.html | 2 +- composer.lock | 10 +++--- public/static/login.js | 27 ++++++--------- vendor/composer/installed.json | 12 +++---- vendor/services.php | 2 +- .../src/service/ExpressService.php | 34 ++++++------------- .../src/service/QueueService.php | 2 +- .../src/service/SystemService.php | 2 +- 9 files changed, 46 insertions(+), 58 deletions(-) diff --git a/app/admin/controller/Login.php b/app/admin/controller/Login.php index 2ca01d416..57e1b1cea 100644 --- a/app/admin/controller/Login.php +++ b/app/admin/controller/Login.php @@ -42,10 +42,12 @@ class Login extends Controller $this->redirect(url('@admin')->build()); } else { $this->title = '系统登录'; - $this->captcha_type = 'login_captcha'; - $this->captcha_token = CodeExtend::uniqidDate(18); - $this->app->session->set($this->captcha_type, $this->captcha_token); + $this->captchaType = 'loginCaptcha'; + $this->captchaToken = CodeExtend::uniqidDate(18); $this->devmode = SystemService::instance()->checkRunMode('dev'); + if (!$this->app->session->get('login_input_session_error')) { + $this->app->session->set($this->captchaType, $this->captchaToken); + } $this->fetch(); } } else { @@ -64,21 +66,24 @@ class Login extends Controller $map = ['username' => $data['username'], 'is_deleted' => '0']; $user = $this->app->db->name('SystemUser')->where($map)->order('id desc')->find(); if (empty($user)) { + $this->app->session->set("login_input_session_error", true); $this->error('登录账号或密码错误,请重新输入!'); } if (md5("{$user['password']}{$data['uniqid']}") !== $data['password']) { + $this->app->session->set("login_input_session_error", true); $this->error('登录账号或密码错误,请重新输入!'); } if (empty($user['status'])) { $this->error('账号已经被禁用,请联系管理员!'); } + $this->app->session->delete("login_input_session_error"); $this->app->db->name('SystemUser')->where(['id' => $user['id']])->update([ 'login_ip' => $this->app->request->ip(), 'login_at' => $this->app->db->raw('now()'), 'login_num' => $this->app->db->raw('login_num+1'), ]); + sysoplog('用户登录', '登录系统后台成功'); $this->app->session->set('user', $user); - sysoplog('用户登录', "登录系统后台成功"); $this->success('登录成功', url('@admin')->build()); } } diff --git a/app/admin/view/login/index.html b/app/admin/view/login/index.html index 8bb7395c0..1a00024e7 100644 --- a/app/admin/view/login/index.html +++ b/app/admin/view/login/index.html @@ -30,7 +30,7 @@ - +
  • diff --git a/composer.lock b/composer.lock index ef1a8c277..532bc7d1b 100644 --- a/composer.lock +++ b/composer.lock @@ -498,7 +498,7 @@ }, { "name": "symfony/options-resolver", - "version": "v3.4.38", + "version": "v3.4.39", "source": { "type": "git", "url": "https://github.com/symfony/options-resolver.git", @@ -909,12 +909,12 @@ "source": { "type": "git", "url": "https://github.com/zoujingli/ThinkLibrary.git", - "reference": "233e269155871ca9ef6b818536687d5862acef5b" + "reference": "e031f91b1c3d64b190f202e6e913bfa301d2ce14" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/233e269155871ca9ef6b818536687d5862acef5b", - "reference": "233e269155871ca9ef6b818536687d5862acef5b", + "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/e031f91b1c3d64b190f202e6e913bfa301d2ce14", + "reference": "e031f91b1c3d64b190f202e6e913bfa301d2ce14", "shasum": "", "mirrors": [ { @@ -958,7 +958,7 @@ ], "description": "ThinkPHP v6.0 Development Library", "homepage": "http://framework.thinkadmin.top", - "time": "2020-03-26T10:28:21+00:00" + "time": "2020-04-01T08:17:31+00:00" }, { "name": "zoujingli/wechat-developer", diff --git a/public/static/login.js b/public/static/login.js index 4cee8a680..f7d2e2ab8 100644 --- a/public/static/login.js +++ b/public/static/login.js @@ -33,28 +33,23 @@ $(function () { /*! 登录图形验证码刷新 */ $body.on('click', '[data-captcha]', function () { - var type, token, verify, uniqid, action, $that = $(this); - action = this.getAttribute('data-captcha') || location.href; - if (action.length < 5) return $.msg.tips('请设置验证码请求地址'); - type = this.getAttribute('data-captcha-type') || 'captcha-type'; - token = this.getAttribute('data-captcha-token') || 'captcha-token'; - uniqid = this.getAttribute('data-field-uniqid') || 'uniqid'; - verify = this.getAttribute('data-field-verify') || 'verify'; + var $that = $(this), $form = $that.parents('form'); + var action = this.getAttribute('data-captcha') || location.href; + if (action.length < 5) return $.msg.tips('请设置验证码请求及验证地址'); + var type = this.getAttribute('data-captcha-type') || 'captcha-type'; + var token = this.getAttribute('data-captcha-token') || 'captcha-token'; + var uniqid = this.getAttribute('data-field-uniqid') || 'captcha-uniqid'; + var verify = this.getAttribute('data-field-verify') || 'captcha-verify'; $.form.load(action, {type: type, token: token}, 'post', function (ret) { if (ret.code) { - $that.html(''); - $that.append($('img').attr('src', ret.data.image)); - $that.append($('').attr('name', uniqid).val(ret.data.uniqid)); - if (ret.data.code) { - $that.parents('form').find('[name=' + verify + ']').attr('value', ret.data.code); - } else { - $that.parents('form').find('[name=' + verify + ']').attr('value', ''); - } - return false; + $that.html('img').find('input').attr('name', uniqid).val(ret.data.uniqid || ''); + $form.find('[name="' + verify + '"]').attr('value', ret.data.code || '').val(ret.data.code || ''); + return (ret.data.code || $form.find('.verify.layui-hide').removeClass('layui-hide')), false; } }, false); }); + /*! 初始化登录图形 */ $('[data-captcha]').map(function () { $(this).trigger('click') }); diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index db39bfe1a..23b358199 100644 --- a/vendor/composer/installed.json +++ b/vendor/composer/installed.json @@ -507,8 +507,8 @@ }, { "name": "symfony/options-resolver", - "version": "v3.4.38", - "version_normalized": "3.4.38.0", + "version": "v3.4.39", + "version_normalized": "3.4.39.0", "source": { "type": "git", "url": "https://github.com/symfony/options-resolver.git", @@ -935,12 +935,12 @@ "source": { "type": "git", "url": "https://github.com/zoujingli/ThinkLibrary.git", - "reference": "233e269155871ca9ef6b818536687d5862acef5b" + "reference": "e031f91b1c3d64b190f202e6e913bfa301d2ce14" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/233e269155871ca9ef6b818536687d5862acef5b", - "reference": "233e269155871ca9ef6b818536687d5862acef5b", + "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/e031f91b1c3d64b190f202e6e913bfa301d2ce14", + "reference": "e031f91b1c3d64b190f202e6e913bfa301d2ce14", "shasum": "", "mirrors": [ { @@ -956,7 +956,7 @@ "ext-json": "*", "topthink/framework": "^6.0" }, - "time": "2020-03-26T10:28:21+00:00", + "time": "2020-04-01T08:17:31+00:00", "type": "library", "extra": { "think": { diff --git a/vendor/services.php b/vendor/services.php index 498deba7b..5b44f11cb 100644 --- a/vendor/services.php +++ b/vendor/services.php @@ -1,5 +1,5 @@ 'think\\app\\Service', diff --git a/vendor/zoujingli/think-library/src/service/ExpressService.php b/vendor/zoujingli/think-library/src/service/ExpressService.php index 925ecd78b..25c0253fc 100644 --- a/vendor/zoujingli/think-library/src/service/ExpressService.php +++ b/vendor/zoujingli/think-library/src/service/ExpressService.php @@ -15,6 +15,7 @@ namespace think\admin\service; +use think\admin\extend\CodeExtend; use think\admin\extend\HttpExtend; use think\admin\Service; @@ -35,13 +36,7 @@ class ExpressService extends Service * 网络请求参数 * @var array */ - protected $options; - - /** - * 会话Cookie文件 - * @var string - */ - protected $cookies = ''; + protected $config; /** * 快递服务初始化 @@ -49,17 +44,10 @@ class ExpressService extends Service */ protected function initialize() { - $this->cookies = "{$this->app->getRuntimePath()}_express_cookie.txt"; - if (file_exists($this->cookies) && filemtime($this->cookies) + 10 < time()) { - @unlink($this->cookies); - } - $this->options = [ - 'cookie_file' => $this->cookies, 'headers' => [ - 'Host' => 'express.baidu.com', - 'CLIENT-IP' => $this->app->request->ip(), - 'X-FORWARDED-FOR' => $this->app->request->ip(), - ], - ]; + $clentip = $this->app->request->ip(); + $cookies = "{$this->app->getRootPath()}runtime/.express.cookie"; + $headers = ['Host:express.baidu.com', "CLIENT-IP:{$clentip}", "X-FORWARDED-FOR:{$clentip}"]; + $this->config = ['cookie_file' => $cookies, 'headers' => $headers]; $this->token = $this->getExpressToken(); return $this; } @@ -93,7 +81,7 @@ class ExpressService extends Service public function getExpressList() { $data = []; - if (preg_match('/"currentData":.*?\[(.*?)\],/', $this->getWapBaiduHtml(), $matches)) { + if (preg_match('/"currentData":.*?\[(.*?)],/', $this->getWapBaiduHtml(), $matches)) { foreach (json_decode("[{$matches['1']}]") as $item) $data[$item->value] = $item->text; unset($data['_auto']); return $data; @@ -111,9 +99,9 @@ class ExpressService extends Service */ private function doExpress($code, $number) { - $uniqid = strtr(uniqid(), '.', ''); - $url = "https://express.baidu.com/express/api/express?tokenV2={$this->token}&appid=4001&nu={$number}&com={$code}&qid={$uniqid}&new_need_di=1&source_xcx=0&vcode=&token=&sourceId=4155&cb=callback"; - return json_decode(str_replace('/**/callback(', '', trim(HttpExtend::get($url, [], $this->options), ')')), true); + $qid = CodeExtend::uniqidNumber(19, '7740'); + $url = "https://express.baidu.com/express/api/express?tokenV2={$this->token}&appid=4001&nu={$number}&com={$code}&qid={$qid}&new_need_di=1&source_xcx=0&vcode=&token=&sourceId=4155&cb=callback"; + return json_decode(str_replace('/**/callback(', '', trim(HttpExtend::get($url, [], $this->config), ')')), true); } /** @@ -138,7 +126,7 @@ class ExpressService extends Service { $content = $this->app->cache->get('express_kuaidi_html'); while (empty($content) || stristr($content, '百度安全验证') > -1 || stripos($content, 'tokenV2') === -1) { - $content = HttpExtend::get('https://m.baidu.com/s?word=快递查询&rnd=' . uniqid(), [], $this->options); + $content = HttpExtend::get('https://m.baidu.com/s?word=快递查询&rand=' . microtime(true), [], $this->config); } $this->app->cache->set('express_kuaidi_html', $content, 30); return $content; diff --git a/vendor/zoujingli/think-library/src/service/QueueService.php b/vendor/zoujingli/think-library/src/service/QueueService.php index fb94df0ee..e8335199b 100644 --- a/vendor/zoujingli/think-library/src/service/QueueService.php +++ b/vendor/zoujingli/think-library/src/service/QueueService.php @@ -181,7 +181,7 @@ class QueueService extends Service return $this->progress($status, $message, $progress); } if (is_numeric($status)) $data['status'] = intval($status); - if (is_numeric($progress)) $progress = sprintf("%.2f", $progress); + if (is_numeric($progress)) $progress = str_pad(sprintf("%.2f", $progress), 6, "0", STR_PAD_LEFT); if (is_string($message) && is_null($progress)) { $data['message'] = $message; $data['history'][] = ['message' => $message, 'progress' => $data['progress'], 'datetime' => date('Y-m-d H:i:s')]; diff --git a/vendor/zoujingli/think-library/src/service/SystemService.php b/vendor/zoujingli/think-library/src/service/SystemService.php index a717f48fc..ff2827a9b 100644 --- a/vendor/zoujingli/think-library/src/service/SystemService.php +++ b/vendor/zoujingli/think-library/src/service/SystemService.php @@ -176,7 +176,7 @@ class SystemService extends Service */ public function putDebug($data, $new = false, $file = null) { - if (is_null($file)) $file = $this->app->getRootPath() . 'runtime' . DIRECTORY_SEPARATOR . date('Ymd') . '.txt'; + if (is_null($file)) $file = $this->app->getRootPath() . 'runtime' . DIRECTORY_SEPARATOR . date('Ymd') . '.log'; $str = (is_string($data) ? $data : ((is_array($data) || is_object($data)) ? print_r($data, true) : var_export($data, true))) . PHP_EOL; $new ? file_put_contents($file, $str) : file_put_contents($file, $str, FILE_APPEND); }