GantanhaoService.php 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278
  1. <?php
  2. namespace app\service;
  3. use app\common\model\Mobile;
  4. use app\common\model\MobileOrder;
  5. use think\App;
  6. use think\helper\Str;
  7. use fast\Http;
  8. use GuzzleHttp\Client;
  9. class GantanhaoService{
  10. static $shareId = 310481;
  11. static $apiToken = 'emNApNcAmvGJu6H7HkWBD8OkmelQ4IgiLDLHqFDk8nHyr26Jah';
  12. /**
  13. * 订单同步
  14. */
  15. public static function orderPurchase(MobileOrder $order){
  16. // $url = 'http://notify.91haoka.cn/api/plan-market/order/purchase';
  17. //敢探号提单V2
  18. $url = 'https://notify.91haoka.cn/api/plan-market/order/purchase/v2';
  19. $mobile = $order['info']['mobile'];
  20. // $data = [
  21. // 'sku' => $mobile['product_no'],
  22. // 'source_id' => $order['order_no'],
  23. // 'share_id' => self::$shareId,
  24. // 'id_name' => $order['name'],
  25. // 'id_num' => $order['id_no'],
  26. // 'mobile' => $order['phone'],
  27. // 'name' => $order['name'],
  28. // 'address' => $order['address'],
  29. // 'sign' => self::orderSign($mobile['product_no'], $order['order_no'])
  30. // ];
  31. // if($mobile['card_status']){
  32. // $open_idcard_face_img = parse_url($order['open_idcard_face_img']);
  33. // $open_idcard_back_img = parse_url($order['open_idcard_back_img']);
  34. // $open_face_img = parse_url($order['open_face_img']);
  35. // $data['pic']['face'] = '@'.ROOT_PATH . 'public' .$open_idcard_face_img['path'];
  36. // $data['pic']['back'] = '@'.ROOT_PATH . 'public' .$open_idcard_back_img['path'];
  37. // $data['pic']['hand'] = '@'.ROOT_PATH . 'public' .$open_face_img['path'];
  38. // }
  39. $data = [
  40. 'multipart' => [
  41. [
  42. 'name' => 'sku',
  43. 'contents' => $mobile['product_no']
  44. ],
  45. [
  46. 'name' => 'source_id',
  47. 'contents' => $order['order_no']
  48. ],
  49. [
  50. 'name' => 'share_id',
  51. 'contents' => self::$shareId
  52. ],
  53. [
  54. 'name' => 'id_name',
  55. 'contents' => self::encrypt($order['name'])
  56. ],
  57. [
  58. 'name' => 'id_num',
  59. 'contents' => self::encrypt($order['id_no'])
  60. ],
  61. [
  62. 'name' => 'mobile',
  63. 'contents' => self::encrypt($order['phone'])
  64. ],
  65. [
  66. 'name' => 'name',
  67. 'contents' => self::encrypt($order['name'])
  68. ],
  69. [
  70. 'name' => 'address',
  71. 'contents' => self::encrypt($order['address'])
  72. ],
  73. [
  74. 'name' => 'pretty_number',
  75. 'contents' => $order['no']
  76. ],
  77. [
  78. 'name' => 'sign',
  79. 'contents' => self::orderSign($mobile['product_no'], $order['order_no'])
  80. ],
  81. ]
  82. ];
  83. if($mobile['card_status']){
  84. $i = 10;
  85. $open_idcard_face_img = parse_url($order['open_idcard_face_img']);
  86. $open_idcard_back_img = parse_url($order['open_idcard_back_img']);
  87. $open_face_img = parse_url($order['open_face_img']);
  88. // $data['multipart'][9]['name'] = 'pic';
  89. // $data['multipart'][9]['contents'] = [
  90. // 'face' => fopen(ROOT_PATH . 'public' .$open_idcard_face_img['path'], 'r'),
  91. // 'back' => fopen(ROOT_PATH . 'public' .$open_idcard_back_img['path'], 'r'),
  92. // 'hand' => fopen(ROOT_PATH . 'public' .$open_face_img['path'], 'r'),
  93. // ];
  94. $data['multipart'][$i]['name'] = 'pic[face]';
  95. $data['multipart'][$i]['contents'] = fopen(ROOT_PATH . 'public' .$open_idcard_face_img['path'], 'r');
  96. $data['multipart'][$i+1]['name'] = 'pic[back]';
  97. $data['multipart'][$i+1]['contents'] = fopen(ROOT_PATH . 'public' .$open_idcard_back_img['path'], 'r');
  98. $data['multipart'][$i+2]['name'] = 'pic[hand]';
  99. $data['multipart'][$i+2]['contents'] = fopen(ROOT_PATH . 'public' .$open_face_img['path'], 'r');
  100. }
  101. user_log('gantanhaoService', $data);
  102. try{
  103. // $result = Http::post($url, http_build_query($data));
  104. $result = (new Client())->request('post', $url, $data);
  105. $rs = json_decode($result->getBody()->getContents(), true);
  106. user_log('gantanhaoService', '订单推送结果:'.json_encode($rs));
  107. if(is_null($rs) || $rs['msg']['code'] != 0) throw new \Exception($rs['msg']['info'] ?? '订单推送错误');
  108. $order['gantanhao_data'] = json_encode($rs['data']);
  109. if($rs['data']['status'] == 120){
  110. $order['status'] = 20;
  111. }
  112. $order->save();
  113. }
  114. catch(\Exception $e){
  115. user_log('gantanhaoService', '订单推送:'.$e->getMessage());
  116. throw new \Exception($e->getMessage());
  117. }
  118. }
  119. /**
  120. * 重传身份证
  121. */
  122. public static function orderPhotos($str_rand, $data){
  123. $url = 'http://notify.91haoka.cn/api/plan-market/order/photos';
  124. $open_idcard_face_img = parse_url($data['idcard_face_img']);
  125. $open_idcard_back_img = parse_url($data['idcard_back_img']);
  126. $open_face_img = parse_url($data['face_img']);
  127. $body = [
  128. 'multipart' => [
  129. [
  130. 'name' => 'str_rand',
  131. 'contents' => $str_rand
  132. ],
  133. [
  134. 'name' => 'pic[face]',
  135. 'contents' => fopen(ROOT_PATH . 'public' .$open_idcard_face_img['path'], 'r')
  136. ],
  137. [
  138. 'name' => 'pic[back]',
  139. 'contents' => fopen(ROOT_PATH . 'public' .$open_idcard_back_img['path'], 'r')
  140. ],
  141. [
  142. 'name' => 'pic[hand]',
  143. 'contents' => fopen(ROOT_PATH . 'public' .$open_face_img['path'], 'r')
  144. ],
  145. ]
  146. ];
  147. try{
  148. // $result = Http::post($url, http_build_query($data));
  149. $result = (new Client())->request('post', $url, $body);
  150. $rs = json_decode($result->getBody()->getContents(), true);
  151. if(is_null($rs) || $rs['msg']['code'] != 0) throw new \Exception($rs['msg']['info'] ?? '身份证推送错误');
  152. return true;
  153. }
  154. catch(\Exception $e){
  155. user_log('gantanhaoService', '身份证推送:'.$e->getMessage());
  156. throw new \Exception($e->getMessage());
  157. }
  158. }
  159. /**
  160. * 获取上传照片密钥
  161. */
  162. public static function orderPhotoEncryption(MobileOrder $order){
  163. $url = 'http://notify.91haoka.cn/api/plan-market/order/photo/encryption';
  164. try{
  165. $sign = md5('order_id='.$order['order_no'].'&share_id='.self::$shareId .self::$apiToken);
  166. if(!$order['gantanhao_data']) throw new \Exception('订单未提单');
  167. $gantanhao = json_decode($order['gantanhao_data'], true);
  168. $data = [
  169. 'share_id' => self::$shareId,
  170. 'order_id' => $gantanhao['data']['id'],
  171. 'sign' => $sign
  172. ];
  173. $result = Http::post($url, http_build_query($data));
  174. $rs = json_decode($result, true);
  175. if(is_null($rs) || $rs['msg']['code'] != 0) throw new \Exception($rs['msg']['info'] ?? '获取上传照片密钥错误');
  176. return $rs['data']['str_rand'];
  177. }
  178. catch(\Exception $e){
  179. user_log('gantanhaoService', '获取上传照片密钥推送:'.$e->getMessage());
  180. throw new \Exception($e->getMessage());
  181. }
  182. }
  183. /**
  184. * 生成签名
  185. */
  186. public static function orderSign($sku = '', $sourceId = ''){
  187. if(!$sku || !$sourceId) return false;
  188. $str = 'share_id='.self::$shareId .'&sku='.$sku.'&source_id='.$sourceId.self::$apiToken;
  189. return md5($str);
  190. }
  191. /**
  192. * 回调验签
  193. */
  194. public static function checkSignNotify($data = []){
  195. if(!$data) return false;
  196. $str = 'outer_id='.$data['outer_id'].'&plan_mobile_produced='.$data['plan_mobile_produced'].'&status='.$data['status'].self::$apiToken;
  197. if(md5($str) != $data['sign']){
  198. return false;
  199. }
  200. return true;
  201. }
  202. /**
  203. * 获取选号信息
  204. */
  205. public static function getSelectNum($product_sku){
  206. $url = 'http://notify.91haoka.cn/api/plan-market/upstream/num/select';
  207. try{
  208. $data = [
  209. 'product_sku' => $product_sku
  210. ];
  211. $result = Http::post($url, http_build_query($data));
  212. $rs = json_decode($result, true);
  213. if(is_null($rs) || $rs['msg']['code'] != 0) throw new \Exception($rs['msg']['info'] ?? '获取选号信息错误');
  214. return $rs['data'];
  215. }
  216. catch(\Exception $e){
  217. user_log('gantanhaoService', '获取选号信息:'.$e->getMessage());
  218. throw new \Exception($e->getMessage());
  219. }
  220. }
  221. /**
  222. *敢探号提单V2
  223. */
  224. public static function encrypt($data)
  225. {
  226. $aes_key = '121';
  227. return base64_encode(openssl_encrypt($data, 'aes-256-ecb', $aes_key, OPENSSL_RAW_DATA));
  228. }
  229. /**
  230. * 解密
  231. */
  232. public static function jiemi($data){
  233. $aes_key = '121';
  234. $data = base64_decode($data);
  235. $data = openssl_decrypt($data, 'aes-256-ecb', $aes_key, OPENSSL_RAW_DATA);
  236. return $data;
  237. }
  238. }