Express.php 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. <?php
  2. namespace addons\shopro\library;
  3. use fast\Http;
  4. class Express
  5. {
  6. // 查询接口
  7. const REQURL = "https://api.kdniao.com/Ebusiness/EbusinessOrderHandle.aspx";
  8. // 订阅接口
  9. const SUBURL = "https://api.kdniao.com/api/dist";
  10. // 电子面单下单接口
  11. const API_EORDER = "https://api.kdniao.com/api/EOrderService";
  12. protected $config = [];
  13. /**
  14. * 构造函数
  15. */
  16. public function __construct()
  17. {
  18. $config = \addons\shopro\model\Config::get(['name' => 'services']);
  19. $config = ($config && $config->value) ? json_decode($config->value, true) : [];
  20. $expressConfig = $config['express'] ?? [];
  21. if (!$expressConfig || !$expressConfig['ebusiness_id'] || !$expressConfig['appkey']) {
  22. throw new \Exception('请配置快递接口');
  23. }
  24. $this->config = $expressConfig;
  25. }
  26. /**
  27. * Json方式 物流信息订阅
  28. */
  29. public function subscribe($data = [], $orderExpress = null, $order = null)
  30. {
  31. $requestData = $this->getRequestData($data, $orderExpress, $order);
  32. $datas = [
  33. 'EBusinessID' => $this->config['ebusiness_id'],
  34. 'RequestType' => $this->config['type'] == 'free' ? '1008' : '8008',
  35. 'RequestData' => urlencode($requestData),
  36. 'DataType' => '2',
  37. ];
  38. $datas['DataSign'] = $this->encrypt($requestData, $this->config['appkey']);
  39. $result = Http::sendRequest(self::SUBURL, $datas, 'POST', []);
  40. if ($result['ret'] == 1) {
  41. $exResult = json_decode($result['msg'], true);
  42. if (!$exResult['Success']) {
  43. throw new \Exception($exResult['Reason']);
  44. }
  45. return $exResult;
  46. } else {
  47. throw new \Exception($result['msg']);
  48. }
  49. }
  50. // 查询快递信息
  51. public function search($data = [], $orderExpress = null, $order = null)
  52. {
  53. $requestData = $this->getRequestData($data, $orderExpress, $order);
  54. $datas = [
  55. 'EBusinessID' => $this->config['ebusiness_id'],
  56. 'RequestType' => $this->config['type'] == 'free' ? '1002' : '8001',
  57. 'RequestData' => urlencode($requestData),
  58. 'DataType' => '2',
  59. ];
  60. $datas['DataSign'] = $this->encrypt($requestData, $this->config['appkey']);
  61. $result = Http::sendRequest(self::REQURL, $datas, 'POST', []);
  62. if ($result['ret'] == 1) {
  63. $exResult = json_decode($result['msg'], true);
  64. if (!$exResult['Success']) {
  65. throw new \Exception($exResult['Reason']);
  66. }
  67. return $exResult;
  68. } else {
  69. throw new \Exception($result['msg']);
  70. }
  71. }
  72. // 组装请求数据
  73. private function getRequestData($data = [], $orderExpress = null, $order = null) {
  74. $requestData = [
  75. 'OrderCode' => $order ? $order->order_sn : '',
  76. 'ShipperCode' => $data['express_code'],
  77. 'LogisticCode' => $data['express_no'],
  78. ];
  79. if ($data['express_code'] == 'JD') {
  80. // 京东青龙配送单号
  81. $requestData['CustomerName'] = $this->config['jd_code'];
  82. } else if ($data['express_code'] == 'SF') {
  83. // 收件人手机号后四位
  84. $requestData['CustomerName'] = substr($order->phone, 7);
  85. }
  86. $requestData = json_encode($requestData);
  87. return $requestData;
  88. }
  89. // 差异更新物流信息
  90. public function checkAndAddTraces ($orderExpress, $express) {
  91. $traces = $express['Traces'];
  92. // 查询现有轨迹记录
  93. $orderExpressLog = \addons\shopro\model\OrderExpressLog::where('order_express_id', $orderExpress->id)->select();
  94. $log_count = count($orderExpressLog);
  95. if ($log_count > 0) {
  96. // 移除已经存在的记录
  97. array_splice($traces, 0, $log_count);
  98. }
  99. // 增加包裹记录
  100. foreach ($traces as $k => $trace) {
  101. $orderExpressLog = new \addons\shopro\model\OrderExpressLog();
  102. $orderExpressLog->user_id = $orderExpress['user_id'];
  103. $orderExpressLog->order_id = $orderExpress['order_id'];
  104. $orderExpressLog->order_express_id = $orderExpress['id'];
  105. $orderExpressLog->status = $trace['Action'] ?? $express['State'];
  106. $orderExpressLog->content = $trace['AcceptStation'];
  107. $orderExpressLog->changedate = substr($trace['AcceptTime'], 0, 19); // 快递鸟测试数据 返回的是个 2020-08-03 16:58:272 格式
  108. $orderExpressLog->location = $trace['Location'] ?? ($express['Location'] ?? null);
  109. $orderExpressLog->save();
  110. }
  111. }
  112. public function eorder($order, $item_lists)
  113. {
  114. if($this->config['type'] !== 'vip') {
  115. throw new \Exception('请使用快递鸟标准版开通此功能');
  116. }
  117. $orderData = [
  118. "OrderCode" => $order->order_sn,
  119. "CustomerName" => $this->config['CustomerName'],
  120. "CustomerPwd" => $this->config['CustomerPwd'],
  121. "ShipperCode" => $this->config['ShipperCode'],
  122. "PayType" => $this->config['PayType'],
  123. "ExpType" => $this->config['ExpType'],
  124. "IsReturnPrintTemplate" => 0, //返回打印面单模板
  125. "TemplateSize" => '130', // 一联单
  126. "Sender" => $this->config['Sender'],
  127. "Volume" => 0,
  128. "Remark" => $order->remark ? $order->remark : "小心轻放"
  129. ];
  130. $totalCount = 0;
  131. $totalWeight = 0;
  132. foreach($item_lists as $k => $item) {
  133. if($item->goods_sku_text) {
  134. $goodsName = $item->goods_title . '-' . $item->goods_sku_text;
  135. }else {
  136. $goodsName = $item->goods_title;
  137. }
  138. $orderData['Commodity'][] = [
  139. "GoodsName" => $goodsName,
  140. "Goodsquantity" => $item->goods_num,
  141. "GoodsWeight" => $item->goods_num * $item->goods_weight
  142. ];
  143. $totalCount += $item->goods_num;
  144. $totalWeight += $item->goods_num * $item->goods_weight;
  145. }
  146. $orderData['Quantity'] = $totalCount; // 商品数量
  147. $orderData['Weight'] = $totalWeight;
  148. $orderData['Receiver'] = [
  149. "Name" => $order->consignee,
  150. "Mobile" => $order->phone,
  151. "ProvinceName" => $order->province_name,
  152. "CityName" => $order->city_name,
  153. "ExpAreaName" => $order->area_name,
  154. "Address" => $order->address
  155. ];
  156. $data = json_encode($orderData, JSON_UNESCAPED_UNICODE);
  157. $datas = [
  158. 'EBusinessID' => $this->config['ebusiness_id'],
  159. 'RequestType' => '1007',
  160. 'RequestData' => urlencode($data),
  161. ];
  162. $datas['DataSign'] = $this->encrypt($data, $this->config['appkey']);
  163. $result = Http::sendRequest(self::API_EORDER, $datas, 'POST', []);
  164. if ($result['ret'] == 1) {
  165. $exResult = json_decode($result['msg'], true);
  166. if (!$exResult['Success']) {
  167. throw new \Exception($exResult['Reason']);
  168. }
  169. return $exResult;
  170. } else {
  171. throw new \Exception($result['msg']);
  172. }
  173. }
  174. // 组装返回结果
  175. public function setPushResult($success = false, $reason = '') {
  176. $result = [
  177. "EBusinessID" => $this->config['ebusiness_id'],
  178. "UpdateTime" => date('Y-m-d H:i:s'),
  179. "Success" => $success,
  180. "Reason" => $reason
  181. ];
  182. return json_encode($result);
  183. }
  184. // 加签
  185. function encrypt($data, $appkey)
  186. {
  187. return urlencode(base64_encode(md5($data . $appkey)));
  188. }
  189. }