Kuaishou.php 12 KB

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