Kuaishou.php 8.6 KB

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