ComposerUpdate

This commit is contained in:
Anyon 2020-03-10 16:21:04 +08:00
parent e93ac18b23
commit cda678476a
4 changed files with 85 additions and 14 deletions

8
composer.lock generated
View File

@ -909,12 +909,12 @@
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/zoujingli/ThinkLibrary.git", "url": "https://github.com/zoujingli/ThinkLibrary.git",
"reference": "271cc2b1bc58c87c43391f4f4df253875019d4fb" "reference": "7dc1c9f49f0b5bdc187a29c0e8f4fd9b3af2d670"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/271cc2b1bc58c87c43391f4f4df253875019d4fb", "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/7dc1c9f49f0b5bdc187a29c0e8f4fd9b3af2d670",
"reference": "271cc2b1bc58c87c43391f4f4df253875019d4fb", "reference": "7dc1c9f49f0b5bdc187a29c0e8f4fd9b3af2d670",
"shasum": "", "shasum": "",
"mirrors": [ "mirrors": [
{ {
@ -958,7 +958,7 @@
], ],
"description": "ThinkPHP v6.0 Development Library", "description": "ThinkPHP v6.0 Development Library",
"homepage": "http://framework.thinkadmin.top", "homepage": "http://framework.thinkadmin.top",
"time": "2020-03-04T02:06:25+00:00" "time": "2020-03-10T08:17:04+00:00"
}, },
{ {
"name": "zoujingli/wechat-developer", "name": "zoujingli/wechat-developer",

View File

@ -935,12 +935,12 @@
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/zoujingli/ThinkLibrary.git", "url": "https://github.com/zoujingli/ThinkLibrary.git",
"reference": "271cc2b1bc58c87c43391f4f4df253875019d4fb" "reference": "7dc1c9f49f0b5bdc187a29c0e8f4fd9b3af2d670"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/271cc2b1bc58c87c43391f4f4df253875019d4fb", "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/7dc1c9f49f0b5bdc187a29c0e8f4fd9b3af2d670",
"reference": "271cc2b1bc58c87c43391f4f4df253875019d4fb", "reference": "7dc1c9f49f0b5bdc187a29c0e8f4fd9b3af2d670",
"shasum": "", "shasum": "",
"mirrors": [ "mirrors": [
{ {
@ -956,7 +956,7 @@
"ext-json": "*", "ext-json": "*",
"topthink/framework": "^6.0" "topthink/framework": "^6.0"
}, },
"time": "2020-03-04T02:06:25+00:00", "time": "2020-03-10T08:17:04+00:00",
"type": "library", "type": "library",
"extra": { "extra": {
"think": { "think": {

2
vendor/services.php vendored
View File

@ -1,5 +1,5 @@
<?php <?php
// This file is automatically generated at:2020-03-09 17:01:49 // This file is automatically generated at:2020-03-10 16:20:56
declare (strict_types = 1); declare (strict_types = 1);
return array ( return array (
0 => 'think\\app\\Service', 0 => 'think\\app\\Service',

View File

@ -15,6 +15,7 @@
namespace think\admin\service; namespace think\admin\service;
use think\admin\extend\HttpExtend;
use think\admin\Service; use think\admin\Service;
/** /**
@ -24,6 +25,34 @@ use think\admin\Service;
*/ */
class ExpressService extends Service class ExpressService extends Service
{ {
/**
* 网络请求令牌
* @var string
*/
protected $token;
/**
* 网络请求参数
* @var array
*/
protected $options;
/**
* 快递服务初始化
* @return Service
* @throws \think\Exception
*/
protected function initialize(): Service
{
$id = $this->app->request->ip();
$this->options = [
'cookie_file' => $this->app->getRuntimePath() . '_express_kuaidi100_cookie.txt',
'headers' => ['Host' => 'express.baidu.com', 'CLIENT-IP' => $id, 'X-FORWARDED-FOR' => $id],
];
$this->token = $this->getExpressToken();
return $this;
}
/** /**
* 通过百度快递100应用查询物流信息 * 通过百度快递100应用查询物流信息
* @param string $code 快递公司编辑 * @param string $code 快递公司编辑
@ -32,12 +61,14 @@ class ExpressService extends Service
*/ */
public function express($code, $number) public function express($code, $number)
{ {
$list = []; list($list, $cache) = [[], $this->app->cache->get($ckey = md5($code . $number))];
if (!empty($cache)) return ['message' => 'ok', 'com' => $code, 'nu' => $number, 'data' => $cache];
for ($i = 0; $i < 6; $i++) if (is_array($result = $this->doExpress($code, $number))) { for ($i = 0; $i < 6; $i++) if (is_array($result = $this->doExpress($code, $number))) {
if (!empty($result['data']['info']['context'])) { if (!empty($result['data']['info']['context'])) {
foreach ($result['data']['info']['context'] as $vo) $list[] = [ foreach ($result['data']['info']['context'] as $vo) $list[] = [
'time' => date('Y-m-d H:i:s', $vo['time']), 'context' => $vo['desc'], 'time' => date('Y-m-d H:i:s', $vo['time']), 'context' => $vo['desc'],
]; ];
$this->app->cache->set($ckey, $list, 10);
return ['message' => 'ok', 'com' => $code, 'nu' => $number, 'data' => $list]; return ['message' => 'ok', 'com' => $code, 'nu' => $number, 'data' => $list];
} }
} }
@ -52,10 +83,50 @@ class ExpressService extends Service
*/ */
private function doExpress($code, $number) private function doExpress($code, $number)
{ {
list($microtime, $clientIp) = [time(), $this->app->request->ip()]; $url = "https://express.baidu.com/express/api/express?tokenV2={$this->token}&appid=4001&nu={$number}&com={$code}&qid=&new_need_di=1&source_xcx=0&vcode=&token=&sourceId=4155&cb=callback";
$url = "https://sp0.baidu.com/9_Q4sjW91Qh3otqbppnN2DJv/pae/channel/data/asyncqury?cb=callback&appid=4001&com={$code}&nu={$number}&vcode=&token=&_={$microtime}"; return json_decode(str_replace('/**/callback(', '', trim(HttpExtend::get($url, [], $this->options), ')')), true);
$options = ['cookie_file' => $this->app->getRuntimePath() . 'express_cookie.txt', 'headers' => ['Host' => 'www.kuaidi100.com', 'CLIENT-IP' => $clientIp, 'X-FORWARDED-FOR' => $clientIp],]; }
return json_decode(str_replace('/**/callback(', '', trim(http_get($url, [], $options), ')')), true);
/**
* 获取接口请求令牌
* @return string
* @throws \think\Exception
*/
public function getExpressToken()
{
if (preg_match('/express\?tokenV2=(.*?)",/', $this->getWapBaiduHtml(), $matches)) {
return $matches[1];
} else {
throw new \think\Exception('Failed to grab authorization token.');
}
}
/**
* 获取快递公司列表
* @return array
*/
public function getExpressList()
{
$data = [];
if (preg_match('/"currentData":.*?\[(.*?)\],/', $this->getWapBaiduHtml(), $matches)) {
foreach (json_decode("[{$matches['1']}]") as $item) $data[$item->value] = $item->text;
unset($data['_auto']);
}
return $data;
}
/**
* 获取百度WAP快递HTML用于后面的抓取关键值
* @return string
*/
protected function getWapBaiduHtml()
{
$content = $this->app->cache->get('express_baidu_kuaidi_100');
while (empty($content) || stristr($content, '百度安全验证') > -1 || stripos($content, 'tokenV2') === -1) {
$content = HttpExtend::get('https://m.baidu.com/s?word=73124161428372', [], $this->options);
}
$this->app->cache->set('express_baidu_kuaidi_100', $content, 3600);
return $content;
} }
} }