Kuaishou.php 9.6 KB

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