Kuaishou.php 10 KB

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