Kuaishou.php 8.0 KB

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