Kuaishou.php 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  1. <?php
  2. namespace app\api\controller;
  3. class Kuaishou extends Base
  4. {
  5. public $appKey = 'ks698620896473026758';
  6. public $appSecret = 'cvbOgiVC6rSvPs0sBASfkg';
  7. public $signSecret = '71443462ca217e1c29425e7aabc257cc';
  8. public $msgSecret = '4fxDQv7tJKzIc1D7CNNe6A==';
  9. public $syncAPIClient;
  10. public $serverHost = "https://openapi.kwaixiaodian.com/";
  11. public $webSite = '1688';
  12. // public $access_token = 'ChFvYXV0aC5hY2Nlc3NUb2tlbhJwoKoSq1Hr4odNgoU9P9bwE23fS9T_KUXue57LmD9Nks584givB9Tqi_z05o7KDDvwj3ZAIBzly56LPLr-bekP61JOxIt8lMmuaOEODBndmTz5CrYQfiRIn-mbKwTYDPIXeJZLWN5nwwmaUP-G85DF7xoSOYuaoIMQQbq8-XpVu7XiJ6dNIiBtFILUcnKsia-OUP2G6Xja4G2Ub9uR4rKP7YVWTVe1BCgFMAE';
  13. public $access_token = 'ChFvYXV0aC5hY2Nlc3NUb2tlbhJwJsfgEcw8cYbOARym_nQvgdOKc9-8eKn_0pLGJ5VMMOdq7ql_yEETn74H-BFNDeSPq1ujcKxf55SaRrJ4O0WfT86MY-oqzU79eysFt2AcgOOXc49AcscyjKm3I8RTjzC1CIBTmaNdrtYxDTyc_kjjNxoSIEH75Kg-RaqlrUNstFhsUg4wIiDQ_BkNN4qQCet_XmgzWrAJmuoISlLGlgM6WJh5djxTpigFMAE';
  14. public $debug = false;
  15. public $code = "ae727ca7a93aa4434335c4d3e9a1773d169a36f6c65b965a726a1d3c8b85699e62cfd671";
  16. public function notify()
  17. {
  18. $data = $this->request->param();
  19. $url = $this->serverHost . "oauth2/access_token?app_id={$this->appKey}&app_secret={$this->appSecret}&code={$data['code']}&grant_type=authorization_code";
  20. $s = $this->curl_https_get($url);
  21. $s = json_decode($s, true);
  22. var_dump($data,$s);
  23. // return isset($s['access_token']) ? $s['access_token'] : '';
  24. }
  25. public function getAccessToken()
  26. {
  27. // $url = $this->serverHost . "oauth2/access_token?app_id={$this->appKey}&app_secret={$this->appSecret}&code={$this->code}&grant_type=authorization_code";
  28. $url = $this->serverHost . "oauth2/access_token?app_id={$this->appKey}&app_secret={$this->appSecret}&grant_type=client_credentials";
  29. $s = $this->curl_https_get($url);
  30. $s = json_decode($s, true);
  31. return isset($s['access_token']) ? $s['access_token'] : '';
  32. }
  33. /**
  34. * @title 获取订单详情【商家自己的】
  35. * @desc 获取商家视角的订单详情
  36. * @author qc
  37. * @url /api/Kuaishou/getOrderDetail
  38. * @method GET
  39. * @header name:Authorization require:1 desc:Token
  40. * @param name:oid type:int request:1 default:0 desc:id
  41. */
  42. public function getOrderDetail()
  43. {
  44. $apiType = "open.order.detail";
  45. $method = 'get';
  46. $param = ['oid'=>input('oid')];
  47. $arr['appkey'] = $this->appKey;
  48. $arr['version'] = 1;
  49. $arr['access_token'] = $this->access_token;
  50. $arr['timestamp'] = $this->getMillisecond();
  51. $arr['method'] = trim($apiType);
  52. $arr['param'] = $param ? json_encode($param) : '{}';
  53. $arr['signMethod'] = 'MD5';
  54. ksort($arr); // 排序
  55. $arr['sign'] = $this->getSign($arr, $this->signSecret);
  56. $apiInfo = str_replace('.', '/', $arr['method']);
  57. $url = $this->serverHost . $apiInfo;
  58. $s = static::apiSend($url,$arr,$method);
  59. $this->success('ok',[
  60. 'res'=>$s,
  61. 'token'=>$arr['access_token'],
  62. 'param'=>$param,
  63. 'api'=>$apiType ]);
  64. }
  65. /**
  66. * @title 获取订单费用详情【商家自己的】
  67. * @desc 获取订单费用详情
  68. * @author qc
  69. * @url /api/Kuaishou/getOrderFee
  70. * @method GET
  71. * @header name:Authorization require:1 desc:Token
  72. * @param name:oid type:int request:1 default:0 desc:id
  73. */
  74. public function getOrderFee()
  75. {
  76. $apiType = "open.seller.order.fee.detail";
  77. $method = 'get';
  78. $param = ['orderId'=>input('oid')];
  79. $arr['appkey'] = $this->appKey;
  80. $arr['version'] = 1;
  81. $arr['access_token'] = $this->access_token;
  82. $arr['timestamp'] = $this->getMillisecond();
  83. $arr['method'] = trim($apiType);
  84. $arr['param'] = $param ? json_encode($param) : '{}';
  85. $arr['signMethod'] = 'MD5';
  86. ksort($arr); // 排序
  87. $arr['sign'] = $this->getSign($arr, $this->signSecret);
  88. $apiInfo = str_replace('.', '/', $arr['method']);
  89. $url = $this->serverHost . $apiInfo;
  90. $s = static::apiSend($url,$arr,$method);
  91. $this->success('ok',[
  92. 'res'=>$s,
  93. 'token'=>$arr['access_token'],
  94. 'param'=>$param,
  95. 'api'=>$apiType ]);
  96. }
  97. /**
  98. * @title 获取分销订单详情
  99. * @desc 获取分销订单详情
  100. * @author qc
  101. * @url /api/Kuaishou/getFxInfo
  102. * @method GET
  103. * @header name:Authorization require:1 desc:Token
  104. * @param name:oid type:int request:1 default:0 desc:id
  105. */
  106. public function getFxInfo()
  107. {
  108. $apiType = "open.seller.order.cps.detail";
  109. $method = 'get';
  110. $param = ['oid'=>[input('oid')]];
  111. $arr['appkey'] = $this->appKey;
  112. $arr['version'] = 1;
  113. $arr['access_token'] = $this->access_token;
  114. $arr['timestamp'] = $this->getMillisecond();
  115. $arr['method'] = trim($apiType);
  116. $arr['param'] = $param ? json_encode($param) : '{}';
  117. $arr['signMethod'] = 'MD5';
  118. ksort($arr); // 排序
  119. $arr['sign'] = $this->getSign($arr, $this->signSecret);
  120. $apiInfo = str_replace('.', '/', $arr['method']);
  121. $url = $this->serverHost . $apiInfo;
  122. $s = static::apiSend($url,$arr,$method);
  123. $this->success('ok',[
  124. 'res'=>$s,
  125. 'token'=>$arr['access_token'],
  126. 'param'=>$param,
  127. 'api'=>$apiType ]);
  128. }
  129. /**
  130. * @title 获取卖家对应买家的订单列表
  131. * @desc 获取分销订单详情
  132. * @author qc
  133. * @url /api/Kuaishou/getOrderList
  134. * @method GET
  135. * @header name:Authorization require:1 desc:Token
  136. * @param name:buyerOpenId type:string request:1 default:0 desc:buyerOpenId
  137. * @param name:cursor type:string request:1 default:0 desc:游标
  138. * @param name:orderStatus type:int request:1 default:0 desc:[0,10,30,40,50,70,80]
  139. */
  140. public function getOrderList()
  141. {
  142. $apiType = "open.order.buyer.order.list";
  143. $method = 'get';
  144. $param = [
  145. 'buyerOpenId'=>input('buyerOpenId'),
  146. 'cursor'=>input('cursor',''),
  147. 'limit'=> 20,
  148. 'orderStatus'=> [],
  149. 'orderSourceType'=> [],
  150. ];
  151. $arr['appkey'] = $this->appKey;
  152. $arr['version'] = 1;
  153. $arr['access_token'] = $this->access_token;
  154. $arr['timestamp'] = $this->getMillisecond();
  155. $arr['method'] = trim($apiType);
  156. $arr['param'] = $param ? json_encode($param) : '{}';
  157. $arr['signMethod'] = 'MD5';
  158. ksort($arr); // 排序
  159. $arr['sign'] = $this->getSign($arr, $this->signSecret);
  160. $apiInfo = str_replace('.', '/', $arr['method']);
  161. $url = $this->serverHost . $apiInfo;
  162. $s = static::apiSend($url,$arr,$method);
  163. $this->success('ok',['res'=>$s]);
  164. }
  165. private function apiSend($url,$arr,$method)
  166. {
  167. if ($method == 'get') {
  168. $s = $this->curl_https_get($url. '?' . http_build_query($arr, '', '&'), array());
  169. } else {
  170. $s = $this->curl_https_post($url, $arr);
  171. }
  172. return json_decode($s, true);
  173. }
  174. public function getSign($params, $key) {
  175. $unSignParaString = $this->formatQueryParaMap($params, false);
  176. $signStr = (md5($unSignParaString . "&signSecret=" . $this->signSecret));
  177. return $signStr;
  178. }
  179. public function formatQueryParaMap(array $paraMap, $urlEncode = false) {
  180. $buff = "";
  181. ksort($paraMap);
  182. foreach ($paraMap as $k => $v) {
  183. if (null != $v && "null" != $v) {
  184. if ($urlEncode) {
  185. $v = urlencode($v);
  186. }
  187. $buff.= $k . "=" . $v . "&";
  188. }
  189. }
  190. $reqPar = '';
  191. if (strlen($buff) > 0) {
  192. $reqPar = substr($buff, 0, strlen($buff) - 1);
  193. }
  194. return $reqPar;
  195. }
  196. /*获取13位时间戳*/
  197. private static function getMillisecond() {
  198. list($t1, $t2) = explode(' ', microtime());
  199. return sprintf('%.0f', (floatval($t1) + floatval($t2)) * 1000);
  200. }
  201. private function curl_get_contents($url, $data = array(), $https = false) {
  202. $results['error'] = '';
  203. $results['status'] = 0;
  204. $results['data'] = array();
  205. $user_agent = $_SERVER['HTTP_USER_AGENT'];
  206. $curl = curl_init(); // 启动一个CURL会话
  207. if (!empty($data) && is_array($data)) {
  208. curl_setopt($curl, CURLOPT_POST, TRUE);
  209. curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query($data));
  210. curl_setopt($curl, CURLOPT_HTTPHEADER, array('Content-Type: application/x-www-form-urlencoded'));
  211. }
  212. if ($https) {
  213. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, 0); // 对认证证书来源的检查
  214. curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, 2); // 从证书中检查SSL加密算法是否存在
  215. curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1); // 使用自动跳转
  216. }
  217. curl_setopt($curl, CURLOPT_URL, $url); // 要访问的地址
  218. curl_setopt($curl, CURLOPT_TIMEOUT, 30); // 设置超时限制防止死循环
  219. curl_setopt($curl, CURLOPT_HEADER, 0); // 显示返回的Header区域内容
  220. curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); // 获取的信息以文件流的形式返回
  221. curl_setopt($curl, CURLOPT_USERAGENT, $user_agent); // 模拟用户使用的浏览器
  222. curl_setopt($curl, CURLOPT_AUTOREFERER, 1); // 自动设置Referer
  223. $results['data'] = curl_exec($curl); // 执行操作
  224. if (curl_errno($curl)) {
  225. $results['error'] = curl_error($curl); //捕抓异常
  226. }
  227. curl_close($curl); // 关闭CURL会话
  228. return $results['data']; // 返回数据
  229. }
  230. private function curl_https_post($url, $data) {
  231. return $this->curl_get_contents($url, $data, true);
  232. }
  233. private function curl_https_get($url) {
  234. return $this->curl_get_contents($url, array(), true);
  235. }
  236. }