Kuaishou.php 9.6 KB

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