Kd100.php 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. <?php
  2. namespace logistics;
  3. use GuzzleHttp\Client;
  4. use think\Env;
  5. use Yansongda\Supports\Arr;
  6. class Kd100 extends QueryInterface{
  7. protected $key;
  8. protected $customer;
  9. protected $secret;
  10. public function __construct()
  11. {
  12. $this->key=Env::get('logistics.kd100_key','fVczXhfg8960');
  13. $this->secret=config('site.kd100_secret')?:'5496a2da1fca49e2acc9283d1f8f32ca';
  14. $this->customer=Env::get('logistics.kd100_customer','B20CCD1C0BAFDD7E69CC986A1A0C57E0');
  15. }
  16. public function maptrack()
  17. {
  18. $param = array (
  19. 'com' => $this->getLogistics('code_kd100'), // 快递公司编码
  20. 'num' => $this->getNo(), // 快递单号
  21. 'phone' => $this->getPhone(), // 手机号
  22. 'from' => $this->extend['from']??'', // 出发地城市
  23. 'to' => $this->extend['to']??'', // 目的地城市
  24. 'resultv2' => '1', // 开启行政区域解析
  25. 'show' => '0', // 返回格式:0:json格式(默认),1:xml,2:html,3:text
  26. 'order' => 'desc' // 返回结果排序:desc降序(默认),asc 升序
  27. );
  28. //请求参数
  29. $url = 'https://poll.kuaidi100.com/poll/maptrack.do'; // 实时查询请求地址
  30. $post_data=$this->sign($param);
  31. $makeRequest=(new Client)->post($url,[
  32. 'form_params'=>$post_data,
  33. ]);
  34. $arr=json_decode($makeRequest->getBody()->getContents(),true)?:[];
  35. return Arr::only($arr,[
  36. 'trailUrl',
  37. 'message',
  38. 'data'
  39. ]);
  40. }
  41. public function query()
  42. {
  43. //====================================
  44. // 实时查询示例代码
  45. // 授权信息可通过链接查看:https://api.kuaidi100.com/manager/v2/myinfo/enterprise
  46. //====================================
  47. //参数设置
  48. $param = array (
  49. 'com' => $this->getLogistics('code_kd100'), // 快递公司编码
  50. 'num' => $this->getNo(), // 快递单号
  51. 'phone' => $this->getPhone(), // 手机号
  52. 'from' => '', // 出发地城市
  53. 'to' => '', // 目的地城市
  54. 'resultv2' => '1', // 开启行政区域解析
  55. 'show' => '0', // 返回格式:0:json格式(默认),1:xml,2:html,3:text
  56. 'order' => 'desc' // 返回结果排序:desc降序(默认),asc 升序
  57. );
  58. //请求参数
  59. $url = 'https://poll.kuaidi100.com/poll/query.do'; // 实时查询请求地址
  60. $post_data=$this->sign($param);
  61. $makeRequest=(new Client)->post($url,[
  62. 'form_params'=>$post_data,
  63. ]);
  64. $arr=json_decode($makeRequest->getBody()->getContents(),true);
  65. $content=$arr['data']??[];
  66. $flow=[];
  67. foreach ($content as $item){
  68. $flow[]=[
  69. 'time'=>$item['time'],
  70. 'content'=>$item['context'],
  71. ];
  72. }
  73. if(!$flow){
  74. $flow[]=[
  75. 'time'=>date('Y-m-d H:i:s'),
  76. 'content'=>'暂无物流信息',
  77. ];
  78. }
  79. return $flow;
  80. }
  81. protected function sign($param){
  82. $key = $this->key; // 客户授权key
  83. $customer = $this->customer;
  84. $post_data = array();
  85. $post_data['customer'] = $customer;
  86. $post_data['param'] = json_encode($param, JSON_UNESCAPED_UNICODE);
  87. $sign = md5($post_data['param'].$key.$post_data['customer']);
  88. $post_data['sign'] = strtoupper($sign);
  89. return $post_data;
  90. }
  91. public function labelOrder(){
  92. $orderNo=$this->orderNo;
  93. $dir=RUNTIME_PATH.'/miandan';
  94. if(file_exists($dir."/{$orderNo}")){
  95. }
  96. // dump(config('kd100_lo_partnerId'));die;
  97. $params=[
  98. 'printType'=>'IMAGE',
  99. 'partnerId'=>config('site.kd100_lo_partnerId')?:null,
  100. 'partnerKey'=>config('site.kd100_lo_partnerKey')?:null,
  101. 'partnerSecret'=>config('site.kd100_lo_partnerSecret')?:null,
  102. 'partnerName'=>config('site.kd100_lo_partnerName')?:null,
  103. 'net'=>config('site.kd100_lo_net')?:null,
  104. 'code'=>config('site.kd100_lo_code')?:null,
  105. 'checkMan'=>config('site.kd100_lo_checkMan')?:null,
  106. 'tbNet'=>config('site.kd100_lo_tbNet')?:null,
  107. 'kuaidicom'=>$this->logistics->code_kd100,
  108. 'recMan'=>[
  109. 'name'=>$this->username,
  110. 'mobile'=>$this->phone,
  111. 'printAddr'=>$this->getToArea(),
  112. ],
  113. 'sendMan'=>[
  114. 'name'=>$this->getFromUsername(),
  115. 'mobile'=>$this->getFromMobile(),
  116. 'printAddr'=>$this->getFromArea(),
  117. 'count'=>$this->getCount(),
  118. ],
  119. 'tempId'=>config('site.kd100_lo_tempId')?:'3f733ac0e8ca4ebfaadfc2d9b9ca2519',
  120. 'orderId'=>$this->getOrderNo(),
  121. 'cargo'=>$this->getCargo(),
  122. 'expType'=>$this->getExpType(),
  123. ];
  124. $body=[
  125. 'method'=>'order',
  126. 'key'=>$this->key,
  127. 't'=>time()*1000,
  128. 'param'=>json_encode($params,256),
  129. ];
  130. $body['sign']=strtoupper(md5($body['param'].$body['t'].$body['key'].$this->secret));
  131. // dump($body);
  132. $response=(new Client)->post('https://api.kuaidi100.com/label/order',[
  133. 'form_params'=>$body,
  134. 'http_errors'=>false,
  135. ]);
  136. $data=json_decode($response->getBody()->getContents(),true);
  137. if(!isset($data['code'])){
  138. return [false,'请求失败'];
  139. }
  140. if($data['code']!=200){
  141. return [false,$data['message']];
  142. }
  143. return [true,$data['data']];
  144. }
  145. }