Http.php 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426
  1. <?php
  2. declare(strict_types=1);
  3. namespace catcher\library\client;
  4. use catcher\exceptions\FailedException;
  5. use GuzzleHttp\Client;
  6. use GuzzleHttp\Promise\Promise;
  7. use GuzzleHttp\TransferStats;
  8. use Psr\Http\Message\ResponseInterface;
  9. use function GuzzleHttp\Psr7\stream_for;
  10. class Http
  11. {
  12. /**
  13. * @var Client $client
  14. */
  15. protected $client = null;
  16. /**
  17. * auth
  18. *
  19. * @var array
  20. */
  21. protected $auth = [];
  22. /**
  23. * 代理
  24. *
  25. * @var array
  26. */
  27. protected $proxy = [];
  28. /**
  29. * body
  30. *
  31. * @var array
  32. */
  33. protected $body = [];
  34. /**
  35. * header
  36. *
  37. * @var array
  38. */
  39. protected $header = [];
  40. /**
  41. * form params
  42. *
  43. * @var array
  44. */
  45. protected $formParams = [];
  46. /**
  47. * query set
  48. *
  49. * @var array
  50. */
  51. protected $query = [];
  52. /**
  53. * json set
  54. *
  55. * @var array
  56. */
  57. protected $json = [];
  58. /**
  59. * 可选参数
  60. * @var array
  61. */
  62. protected $options = [];
  63. /**
  64. * 异步请求
  65. *
  66. * @var bool
  67. */
  68. protected $async = false;
  69. /**
  70. * @var array
  71. */
  72. protected $timeout = [];
  73. /**
  74. * @var string
  75. */
  76. protected $token = '';
  77. protected $multipart = [];
  78. /**
  79. * 忽略证书
  80. *
  81. * @var array
  82. */
  83. protected $ignoreSsl = [];
  84. /**
  85. * 获取 Guzzle 客户端
  86. *
  87. * @time 2020年05月21日
  88. * @return Client
  89. */
  90. public function getClient()
  91. {
  92. if (!$this->client) {
  93. $this->client = new Client;
  94. }
  95. return $this->client;
  96. }
  97. /**
  98. * headers
  99. *
  100. * @time 2020年05月21日
  101. * @param array $headers
  102. * @return $this
  103. */
  104. public function headers(array $headers)
  105. {
  106. $this->header = isset($this->header['headers']) ?
  107. array_merge($this->header['headers'], $headers) :
  108. [ 'headers' => $headers ];
  109. return $this;
  110. }
  111. /**
  112. * set bearer token
  113. *
  114. * @time 2020年05月22日
  115. * @param string $token
  116. * @return $this
  117. */
  118. public function token(string $token)
  119. {
  120. $this->header['headers']['authorization'] = 'Bearer '. $token;
  121. return $this;
  122. }
  123. /**
  124. * body
  125. *
  126. * @time 2020年05月21日
  127. * @param $body
  128. * @return $this
  129. */
  130. public function body($body)
  131. {
  132. $this->body = [
  133. 'body' => $body
  134. ];
  135. return $this;
  136. }
  137. /**
  138. * json
  139. *
  140. * @time 2020年05月21日
  141. * @param array $data
  142. * @return $this
  143. */
  144. public function json(array $data)
  145. {
  146. $this->json = [
  147. 'json' => $data
  148. ];
  149. return $this;
  150. }
  151. /**
  152. * query
  153. *
  154. * @time 2020年05月21日
  155. * @param array $query
  156. * @return $this
  157. */
  158. public function query(array $query)
  159. {
  160. $this->query = [
  161. 'query' => $query,
  162. ];
  163. return $this;
  164. }
  165. /**
  166. * form params
  167. *
  168. * @time 2020年05月21日
  169. * @param $params
  170. * @return $this
  171. */
  172. public function form(array $params)
  173. {
  174. $this->formParams = [
  175. 'form_params' => array_merge($this->multipart, $params)
  176. ];
  177. return $this;
  178. }
  179. /**
  180. * timeout
  181. *
  182. * @time 2020年05月21日
  183. * @param $timeout
  184. * @return $this
  185. */
  186. public function timeout($timeout)
  187. {
  188. $this->timeout = [
  189. 'connect_timeout' => $timeout
  190. ];
  191. return $this;
  192. }
  193. /**
  194. * 忽略 ssl 证书
  195. *
  196. * @return $this
  197. */
  198. public function ignoreSsl()
  199. {
  200. $this->ignoreSsl = [
  201. 'verify' => false,
  202. ];
  203. return $this;
  204. }
  205. /**
  206. * 可选参数
  207. *
  208. * @time 2020年05月22日
  209. * @param array $options
  210. * @return $this
  211. */
  212. public function options(array $options)
  213. {
  214. $this->options = $options;
  215. return $this;
  216. }
  217. /**
  218. * Request get
  219. *
  220. * @time 2020年05月21日
  221. * @param string $url
  222. * @return Response
  223. */
  224. public function get(string $url)
  225. {
  226. return new Response($this->getClient()->{$this->asyncMethod(__FUNCTION__)}($url, $this->merge()));
  227. }
  228. /**
  229. * Request post
  230. *
  231. * @time 2020年05月21日
  232. * @param $url
  233. * @return mixed
  234. */
  235. public function post(string $url)
  236. {
  237. return new Response($this->getClient()->{$this->asyncMethod(__FUNCTION__)}($url, $this->merge()));
  238. }
  239. /**
  240. * Request put
  241. *
  242. * @time 2020年05月21日
  243. * @param $url
  244. * @return mixed
  245. */
  246. public function put(string $url)
  247. {
  248. return new Response($this->getClient()->{$this->asyncMethod(__FUNCTION__)}($url, $this->merge()));
  249. }
  250. /**
  251. * Request delete
  252. *
  253. * @time 2020年05月21日
  254. * @param $url
  255. * @return mixed
  256. */
  257. public function delete(string $url)
  258. {
  259. return new Response($this->getClient()->{$this->asyncMethod(__FUNCTION__)}($url, $this->merge()));
  260. }
  261. /**
  262. * request params merge
  263. *
  264. * @time 2020年05月22日
  265. * @return array
  266. */
  267. protected function merge()
  268. {
  269. return array_merge($this->header, $this->query, $this->timeout,
  270. $this->options, $this->body, $this->auth, $this->multipart, $this->formParams,
  271. $this->ignoreSsl
  272. );
  273. }
  274. /**
  275. * 异步请求
  276. *
  277. * @time 2020年05月21日
  278. * @return $this
  279. */
  280. public function async()
  281. {
  282. $this->async = true;
  283. return $this;
  284. }
  285. /**
  286. * 附件
  287. *
  288. * @time 2020年05月22日
  289. * @param $name
  290. * @param $resource
  291. * @param $filename
  292. * @return $this
  293. */
  294. public function attach(string $name, $resource, string $filename)
  295. {
  296. $this->multipart = [
  297. 'multipart' => [
  298. [
  299. 'name' => $name,
  300. 'contents' => $resource,
  301. 'filename' => $filename,
  302. ]
  303. ]
  304. ];
  305. return $this;
  306. }
  307. /**
  308. * 异步方法
  309. *
  310. * @time 2020年05月21日
  311. * @param $method
  312. * @return string
  313. */
  314. protected function asyncMethod($method)
  315. {
  316. return $this->async ? $method . 'Async' : $method;
  317. }
  318. /**
  319. * onHeaders
  320. *
  321. * @time 2020年05月22日
  322. * @param callable $callable
  323. * @return mixed
  324. */
  325. public function onHeaders(callable $callable)
  326. {
  327. $this->options['on_headers'] = $callable;
  328. return $this;
  329. }
  330. /**
  331. * onStats
  332. *
  333. * @time 2020年05月22日
  334. * @param callable $callable
  335. * @return mixed
  336. */
  337. public function onStats(callable $callable)
  338. {
  339. $this->options['on_stats'] = $callable;
  340. return $this;
  341. }
  342. /**
  343. * 认证
  344. *
  345. * @time 2020年04月30日
  346. * @param $username
  347. * @param $password
  348. * @return $this
  349. */
  350. public function auth($username, $password)
  351. {
  352. $this->options = [
  353. 'auth' => $username, $password
  354. ];
  355. return $this;
  356. }
  357. /**
  358. * proxy
  359. *
  360. * @time 2020年05月21日
  361. * @param array $proxy
  362. * @return $this
  363. */
  364. public function proxy(array $proxy)
  365. {
  366. $this->proxy = $proxy;
  367. return $this;
  368. }
  369. }