AipHttpClient.php 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267
  1. <?php
  2. namespace App\Services;
  3. class AipHttpClient
  4. {
  5. protected $headers;
  6. protected $connectTimeout;
  7. protected $socketTimeout;
  8. protected $conf;
  9. /**
  10. * HttpClient
  11. * @param array $headers HTTP header
  12. */
  13. public function __construct($headers = array())
  14. {
  15. $this->headers = $this->buildHeaders($headers);
  16. $this->connectTimeout = 60000;
  17. $this->socketTimeout = 60000;
  18. $this->conf = array();
  19. }
  20. /**
  21. * 连接超时
  22. * @param int $ms 毫秒
  23. */
  24. public function setConnectionTimeoutInMillis($ms)
  25. {
  26. $this->connectTimeout = $ms;
  27. }
  28. /**
  29. * 响应超时
  30. * @param int $ms 毫秒
  31. */
  32. public function setSocketTimeoutInMillis($ms)
  33. {
  34. $this->socketTimeout = $ms;
  35. }
  36. /**
  37. * 配置
  38. * @param array $conf
  39. */
  40. public function setConf($conf)
  41. {
  42. $this->conf = $conf;
  43. }
  44. /**
  45. * 请求预处理
  46. * @param resource $ch
  47. */
  48. public function prepare($ch)
  49. {
  50. foreach ($this->conf as $key => $value) {
  51. curl_setopt($ch, $key, $value);
  52. }
  53. }
  54. /**
  55. * @param string $url
  56. * @param array $data HTTP POST BODY
  57. * @param array $param HTTP URL
  58. * @param array $headers HTTP header
  59. * @return array
  60. */
  61. public function post($url, $data = array(), $params = array(), $headers = array())
  62. {
  63. $url = $this->buildUrl($url, $params);
  64. $headers = array_merge($this->headers, $this->buildHeaders($headers));
  65. $ch = curl_init();
  66. $this->prepare($ch);
  67. curl_setopt($ch, CURLOPT_URL, $url);
  68. curl_setopt($ch, CURLOPT_POST, 1);
  69. curl_setopt($ch, CURLOPT_HEADER, false);
  70. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  71. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  72. curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
  73. curl_setopt($ch, CURLOPT_POSTFIELDS, is_array($data) ? http_build_query($data) : $data);
  74. curl_setopt($ch, CURLOPT_TIMEOUT_MS, $this->socketTimeout);
  75. curl_setopt($ch, CURLOPT_CONNECTTIMEOUT_MS, $this->connectTimeout);
  76. $content = curl_exec($ch);
  77. $code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
  78. if ($code === 0) {
  79. throw new Exception(curl_error($ch));
  80. }
  81. curl_close($ch);
  82. return array(
  83. 'code' => $code,
  84. 'content' => $content,
  85. );
  86. }
  87. /**
  88. * @param string $url
  89. * @param array $datas HTTP POST BODY
  90. * @param array $param HTTP URL
  91. * @param array $headers HTTP header
  92. * @return array
  93. */
  94. public function multi_post($url, $datas = array(), $params = array(), $headers = array())
  95. {
  96. $url = $this->buildUrl($url, $params);
  97. $headers = array_merge($this->headers, $this->buildHeaders($headers));
  98. $chs = array();
  99. $result = array();
  100. $mh = curl_multi_init();
  101. foreach ($datas as $data) {
  102. $ch = curl_init();
  103. $chs[] = $ch;
  104. $this->prepare($ch);
  105. curl_setopt($ch, CURLOPT_URL, $url);
  106. curl_setopt($ch, CURLOPT_POST, 1);
  107. curl_setopt($ch, CURLOPT_HEADER, false);
  108. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  109. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  110. curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
  111. curl_setopt($ch, CURLOPT_POSTFIELDS, is_array($data) ? http_build_query($data) : $data);
  112. curl_setopt($ch, CURLOPT_TIMEOUT_MS, $this->socketTimeout);
  113. curl_setopt($ch, CURLOPT_CONNECTTIMEOUT_MS, $this->connectTimeout);
  114. curl_multi_add_handle($mh, $ch);
  115. }
  116. $running = null;
  117. do {
  118. curl_multi_exec($mh, $running);
  119. usleep(100);
  120. } while ($running);
  121. foreach ($chs as $ch) {
  122. $content = curl_multi_getcontent($ch);
  123. $code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
  124. $result[] = array(
  125. 'code' => $code,
  126. 'content' => $content,
  127. );
  128. curl_multi_remove_handle($mh, $ch);
  129. }
  130. curl_multi_close($mh);
  131. return $result;
  132. }
  133. /**
  134. * @param string $url
  135. * @param array $param HTTP URL
  136. * @param array $headers HTTP header
  137. * @return array
  138. */
  139. public function get($url, $params = array(), $headers = array())
  140. {
  141. $url = $this->buildUrl($url, $params);
  142. $headers = array_merge($this->headers, $this->buildHeaders($headers));
  143. $ch = curl_init();
  144. $this->prepare($ch);
  145. curl_setopt($ch, CURLOPT_URL, $url);
  146. curl_setopt($ch, CURLOPT_HEADER, false);
  147. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  148. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  149. curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
  150. curl_setopt($ch, CURLOPT_TIMEOUT_MS, $this->socketTimeout);
  151. curl_setopt($ch, CURLOPT_CONNECTTIMEOUT_MS, $this->connectTimeout);
  152. $content = curl_exec($ch);
  153. $code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
  154. if ($code === 0) {
  155. throw new Exception(curl_error($ch));
  156. }
  157. curl_close($ch);
  158. return array(
  159. 'code' => $code,
  160. 'content' => $content,
  161. );
  162. }
  163. /**
  164. * @param string $url
  165. * @param array $param HTTP URL
  166. * @param array $headers HTTP header
  167. * @return array
  168. */
  169. public function getnew($url, $params = array(), $headers = array())
  170. {
  171. $url = $this->buildUrl($url, $params);
  172. $headers = array_merge($this->headers, $this->buildHeaders($headers));
  173. $ch = curl_init();
  174. $this->prepare($ch);
  175. curl_setopt($ch, CURLOPT_URL, $url);
  176. curl_setopt($ch, CURLOPT_HEADER, false);
  177. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  178. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  179. curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
  180. curl_setopt($ch, CURLOPT_TIMEOUT_MS, $this->socketTimeout);
  181. curl_setopt($ch, CURLOPT_CONNECTTIMEOUT_MS, $this->connectTimeout);
  182. $content = curl_exec($ch);
  183. $code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
  184. if ($code === 0) {
  185. throw new Exception(curl_error($ch));
  186. }
  187. curl_close($ch);
  188. return $content;
  189. }
  190. /**
  191. * API请求
  192. * @param $url 链接
  193. * @param $data 参数
  194. */
  195. public function postnew($url, $data = null, $time=0)
  196. {
  197. $ch = curl_init();
  198. curl_setopt($ch, CURLOPT_URL, $url);
  199. curl_setopt($ch, CURLOPT_HEADER, 0);
  200. curl_setopt($ch, CURLOPT_POST, 1);
  201. curl_setopt($ch, CURLOPT_TIMEOUT, $time); //单位秒,也可以使用
  202. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  203. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); //这个是重点,规避ssl的证书检查。
  204. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE); // 跳过host验证
  205. if(!empty($data)){
  206. curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
  207. }
  208. $content = curl_exec($ch);
  209. curl_close($ch);
  210. return $content;
  211. }
  212. /**
  213. * 构造 header
  214. * @param array $headers
  215. * @return array
  216. */
  217. private function buildHeaders($headers)
  218. {
  219. $result = array();
  220. foreach ($headers as $k => $v) {
  221. $result[] = sprintf('%s:%s', $k, $v);
  222. }
  223. return $result;
  224. }
  225. /**
  226. *
  227. * @param string $url
  228. * @param array $params 参数
  229. * @return string
  230. */
  231. private function buildUrl($url, $params)
  232. {
  233. if (!empty($params)) {
  234. $str = http_build_query($params);
  235. return $url . (strpos($url, '?') === false ? '?' : '&') . $str;
  236. } else {
  237. return $url;
  238. }
  239. }
  240. }