Client.php 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. <?php
  2. namespace App\Library\HttpRequest;
  3. /**
  4. * Requests
  5. *
  6. * @author he xiang <ihexiang@163.com>
  7. * @version 1.0.0
  8. */
  9. class Client
  10. {
  11. /**
  12. * GET method
  13. *
  14. * @var string
  15. * */
  16. const GET = 'GET';
  17. /**
  18. * POST method
  19. *
  20. * @var string
  21. * */
  22. const POST = 'POST';
  23. private function __construct()
  24. {
  25. }
  26. /**
  27. * get 请求方法
  28. *
  29. * @param string $url
  30. * @param array $headers
  31. * @param array $options
  32. * @return Response
  33. * */
  34. public static function get(string $url, array $headers = [], array $options = [])
  35. {
  36. return self::request($url,self::GET,$headers,[],$options);
  37. }
  38. /**
  39. * post 请求方法
  40. *
  41. * @param string $url
  42. * @param array $headers
  43. * @param array $data
  44. * @param array $options
  45. * @return Response
  46. * */
  47. public static function post(string $url, array $headers = [], array $data = [], array $options = [])
  48. {
  49. return self::request($url,self::POST,$headers,$data,$options);
  50. }
  51. /**
  52. * 请求方法
  53. *
  54. * @param string $url
  55. * @param string $method
  56. * @param array $headers
  57. * @param array $data
  58. * @param array $options
  59. * @return Response
  60. * */
  61. private static function request(string $url, string $method, array $headers = [], array $data = [], array $options = [])
  62. {
  63. $url_info = parse_url($url);
  64. $domain = $url_info['host'];
  65. $is_https = strtolower($url_info['scheme']) == 'https';
  66. $port = $is_https ? 443 : 80;
  67. $client = new \Swoole\Coroutine\Http\Client($url_info['host'], $port, $is_https);
  68. $sets = [];
  69. $sets['timeout'] = isset($options['timeout']) ? intval($options['timeout']) : -1;
  70. //HTTPS
  71. if($is_https){
  72. $sets['ssl_host_name'] = $domain;
  73. }
  74. $content_type = '';
  75. if($headers){
  76. foreach ($headers as $key=>$val){
  77. $tempKey = strtolower($key);
  78. if($tempKey == 'content-type'){
  79. $content_type = $val;
  80. }
  81. }
  82. }
  83. $client->set($sets);
  84. $client->setHeaders($headers);
  85. //设置cookies
  86. if(isset($options['cookies'])){
  87. $client->setCookies($options['cookies']);
  88. }
  89. //拼装path
  90. $path = isset($url_info['path']) ? strval($url_info['path']) : '';
  91. if(isset($url_info['query'])){
  92. $path .= '?'.$url_info['query'];
  93. }
  94. if(isset($url_info['fragment'])){
  95. $path .= '#'.$url_info['fragment'];
  96. }
  97. if($method == self::GET){
  98. $client->get($path);
  99. }elseif ($method == self::POST){
  100. $postContent = $data;
  101. //json
  102. if(stripos($content_type,'json') !== false){
  103. $postContent = json_encode($data);
  104. }
  105. $client->post($path,$postContent);
  106. }
  107. $response = new Response([
  108. 'errCode'=>$client->errCode,
  109. 'errMsg'=>$client->errMsg,
  110. 'body'=>strval($client->getBody()),
  111. 'statusCode'=>intval($client->getStatusCode()),
  112. 'cookies'=>$client->getCookies(),
  113. 'headers'=>$client->getHeaders(),
  114. ]);
  115. // $response = [
  116. // 'errCode'=>$client->errCode,
  117. // 'errMsg'=>$client->errMsg,
  118. // 'body'=>strval($client->getBody()),
  119. // 'statusCode'=>intval($client->getStatusCode()),
  120. // 'cookies'=>$client->getCookies(),
  121. // 'headers'=>$client->getHeaders(),
  122. // ];
  123. $client->close();
  124. return $response;
  125. }
  126. }