[更新]增加kuaidi100查询支持,CURL

This commit is contained in:
Anyon 2017-07-10 14:47:40 +08:00
parent 7fddfda35e
commit 5c5dd1e343
3 changed files with 30 additions and 78 deletions

View File

@ -14,8 +14,12 @@
namespace app\index\controller;
use service\HttpService;
use service\ToolsService;
use think\Controller;
use think\Db;
use think\Request;
use Wechat\Lib\Tools;
/**
* 网站入口控制器
@ -44,4 +48,10 @@ class Index extends Controller
}
}
public function wuliu()
{
$order = '1202247993797';
dump(ToolsService::express($order));
}
}

View File

@ -1,78 +0,0 @@
<?php
// +----------------------------------------------------------------------
// | Think.Admin
// +----------------------------------------------------------------------
// | 版权所有 2014~2017 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
// +----------------------------------------------------------------------
// | 官方网站: http://think.ctolog.com
// +----------------------------------------------------------------------
// | 开源协议 ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | github开源项目https://github.com/zoujingli/Think.Admin
// +----------------------------------------------------------------------
namespace service;
/**
* 物流查询服务
* Class ExpressService
* @package service
* @author Anyon <zoujingli@qq.com>
* @date 2017/03/15 15:17
*/
class ExpressService
{
const APPID = '1232779';
const APPKEY = 'ac45f461-8c1a-4518-87b1-bb8e835a2f9d';
const APIURI = 'http://api.kdniao.com/Ebusiness/EbusinessOrderHandle.aspx';
/**
* @brief 获取物流轨迹线路
* @param $ShipperCode string 物流公司代号
* @param $LogisticCode string 物流单号
* @return string array 轨迹数据
*/
public static function line($ShipperCode, $LogisticCode)
{
$sendData = json_encode(['ShipperCode' => $ShipperCode, 'LogisticCode' => $LogisticCode], JSON_UNESCAPED_UNICODE);
$data = [
'RequestData' => $sendData,
'EBusinessID' => self::APPID,
'RequestType' => '1002',
'DataType' => 2,
'DataSign' => base64_encode(md5($sendData . self::APPKEY)),
];
$result = HttpService::post(self::APIURI, $data);
!($resultJson = json_decode($result, true)) && die(var_export($result));
return self::response($resultJson);
}
/**
* 处理返回数据统一数据格式
* @param $result 结果处理
* @return array 通用的结果集 array('result' => 'success或者fail','data' => array( array('time' => '时间','info' => '地点'),......),'reason' => '失败原因')
*/
public static function response($result)
{
$status = "fail";
$data = [];
$message = "此单号无跟踪记录";
if (isset($result['Message'])) {
$message = $result['Message'];
} elseif (isset($result['Reason'])) {
$message = $result['Reason'];
}
if (isset($result['Traces']) && $result['Traces']) {
foreach ($result['Traces'] as $key => $val) {
$data[$key]['time'] = $val['AcceptTime'];
$data[$key]['info'] = $val['AcceptStation'];
}
$status = "success";
$message = '此订单号有' . count($data) . '条跟踪记录';
}
return ['result' => $status, 'data' => $data, 'message' => $message];
}
}

View File

@ -14,6 +14,8 @@
namespace service;
use think\Request;
/**
* 系统工具服务
* Class ToolsService
@ -154,4 +156,22 @@ class ToolsService
return $ids;
}
/**
* 物流单查询
* @param $code
* @return array
*/
public static function express($code)
{
$result = [];
$autoResult = HttpService::get("http://www.kuaidi100.com/autonumber/autoComNum?text={$code}");
foreach (json_decode($autoResult)->auto as $vo) {
$microtime = microtime(true);
$url = "http://www.kuaidi100.com/query?type={$vo->comCode}&postid={$code}&id=1&valicode=&temp={$microtime}";
$client_ip = Request::instance()->ip();
$header = ['Host' => 'www.kuaidi100.com', 'CLIENT-IP' => $client_ip, 'X-FORWARDED-FOR' => $client_ip];
$result[$vo->comCode] = json_decode(HttpService::get($url, [], 30, $header), true);
}
return $result;
}
}