Kuaishou.php 10 KB

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