@@ -8,130 +8,130 @@ |
||
8 | 8 | |
9 | 9 | class GuzzleHttpClient implements HttpClient |
10 | 10 | { |
11 | - /** |
|
12 | - * @var ClientInterface |
|
13 | - */ |
|
14 | - protected $client; |
|
15 | - |
|
16 | - /** |
|
17 | - * @var array |
|
18 | - */ |
|
19 | - protected $responseHeaders; |
|
20 | - |
|
21 | - /** |
|
22 | - * @param ClientInterface $client |
|
23 | - */ |
|
24 | - public function __construct(ClientInterface $client) |
|
25 | - { |
|
26 | - $this->client = $client; |
|
27 | - } |
|
28 | - |
|
29 | - /** |
|
30 | - * @param string $uri |
|
31 | - * @param array $params |
|
32 | - * @param array $headers |
|
33 | - * @return string |
|
34 | - */ |
|
35 | - public function get($uri, $params = [], $headers = []) |
|
36 | - { |
|
37 | - if (!empty($params)) { |
|
38 | - $uri .= '?' . http_build_query($params); |
|
39 | - } |
|
40 | - |
|
41 | - $response = $this |
|
42 | - ->client |
|
43 | - ->get($uri, ['headers' => $headers]); |
|
44 | - |
|
45 | - return $this->parseResponse($response); |
|
46 | - } |
|
47 | - |
|
48 | - /** |
|
49 | - * @param string $uri |
|
50 | - * @param array $body |
|
51 | - * @param array $headers |
|
52 | - * @return string |
|
53 | - */ |
|
54 | - public function post($uri, $body = [], $headers = []) |
|
55 | - { |
|
56 | - $response = $this |
|
57 | - ->client |
|
58 | - ->post( |
|
59 | - $uri, [ |
|
60 | - 'headers' => $headers, |
|
61 | - 'form_params' => $body, |
|
62 | - ] |
|
63 | - ); |
|
64 | - |
|
65 | - return $this->parseResponse($response); |
|
66 | - } |
|
67 | - |
|
68 | - /** |
|
69 | - * @param string $uri |
|
70 | - * @param array $body |
|
71 | - * @param array $headers |
|
72 | - * @return mixed |
|
73 | - */ |
|
74 | - public function put($uri, $body = [], $headers = []) |
|
75 | - { |
|
76 | - $response = $this |
|
77 | - ->client |
|
78 | - ->put( |
|
79 | - $uri, [ |
|
80 | - 'headers' => $headers, |
|
81 | - 'form_params' => $body, |
|
82 | - ] |
|
83 | - ); |
|
84 | - |
|
85 | - return $this->parseResponse($response); |
|
86 | - } |
|
87 | - |
|
88 | - /** |
|
89 | - * @param string $uri |
|
90 | - * @param array $body |
|
91 | - * @param array $headers |
|
92 | - * @return mixed |
|
93 | - */ |
|
94 | - public function delete($uri, $body = [], $headers = []) |
|
95 | - { |
|
96 | - $response = $this |
|
97 | - ->client |
|
98 | - ->delete($uri, [ |
|
99 | - 'headers' => $headers, |
|
100 | - 'form_params' => $body, |
|
101 | - ]); |
|
102 | - |
|
103 | - return $this->parseResponse($response); |
|
104 | - } |
|
105 | - |
|
106 | - /** |
|
107 | - * @param string $url |
|
108 | - * @return $this |
|
109 | - */ |
|
110 | - public function setBaseUrl($url) |
|
111 | - { |
|
112 | - $this->client->setBaseUrl($url); |
|
113 | - |
|
114 | - return $this; |
|
115 | - } |
|
116 | - |
|
117 | - /** |
|
118 | - * @param ResponseInterface $response |
|
119 | - * @return array|null |
|
120 | - */ |
|
121 | - protected function parseResponse(ResponseInterface $response) |
|
122 | - { |
|
123 | - $responseContents = $response->getBody()->getContents(); |
|
124 | - |
|
125 | - $this->responseHeaders = $response->getHeaders(); |
|
126 | - |
|
127 | - return json_decode($responseContents, true); |
|
128 | - } |
|
129 | - |
|
130 | - /** |
|
131 | - * @return array |
|
132 | - */ |
|
133 | - public function getResponseHeaders() |
|
134 | - { |
|
135 | - return $this->responseHeaders; |
|
136 | - } |
|
11 | + /** |
|
12 | + * @var ClientInterface |
|
13 | + */ |
|
14 | + protected $client; |
|
15 | + |
|
16 | + /** |
|
17 | + * @var array |
|
18 | + */ |
|
19 | + protected $responseHeaders; |
|
20 | + |
|
21 | + /** |
|
22 | + * @param ClientInterface $client |
|
23 | + */ |
|
24 | + public function __construct(ClientInterface $client) |
|
25 | + { |
|
26 | + $this->client = $client; |
|
27 | + } |
|
28 | + |
|
29 | + /** |
|
30 | + * @param string $uri |
|
31 | + * @param array $params |
|
32 | + * @param array $headers |
|
33 | + * @return string |
|
34 | + */ |
|
35 | + public function get($uri, $params = [], $headers = []) |
|
36 | + { |
|
37 | + if (!empty($params)) { |
|
38 | + $uri .= '?' . http_build_query($params); |
|
39 | + } |
|
40 | + |
|
41 | + $response = $this |
|
42 | + ->client |
|
43 | + ->get($uri, ['headers' => $headers]); |
|
44 | + |
|
45 | + return $this->parseResponse($response); |
|
46 | + } |
|
47 | + |
|
48 | + /** |
|
49 | + * @param string $uri |
|
50 | + * @param array $body |
|
51 | + * @param array $headers |
|
52 | + * @return string |
|
53 | + */ |
|
54 | + public function post($uri, $body = [], $headers = []) |
|
55 | + { |
|
56 | + $response = $this |
|
57 | + ->client |
|
58 | + ->post( |
|
59 | + $uri, [ |
|
60 | + 'headers' => $headers, |
|
61 | + 'form_params' => $body, |
|
62 | + ] |
|
63 | + ); |
|
64 | + |
|
65 | + return $this->parseResponse($response); |
|
66 | + } |
|
67 | + |
|
68 | + /** |
|
69 | + * @param string $uri |
|
70 | + * @param array $body |
|
71 | + * @param array $headers |
|
72 | + * @return mixed |
|
73 | + */ |
|
74 | + public function put($uri, $body = [], $headers = []) |
|
75 | + { |
|
76 | + $response = $this |
|
77 | + ->client |
|
78 | + ->put( |
|
79 | + $uri, [ |
|
80 | + 'headers' => $headers, |
|
81 | + 'form_params' => $body, |
|
82 | + ] |
|
83 | + ); |
|
84 | + |
|
85 | + return $this->parseResponse($response); |
|
86 | + } |
|
87 | + |
|
88 | + /** |
|
89 | + * @param string $uri |
|
90 | + * @param array $body |
|
91 | + * @param array $headers |
|
92 | + * @return mixed |
|
93 | + */ |
|
94 | + public function delete($uri, $body = [], $headers = []) |
|
95 | + { |
|
96 | + $response = $this |
|
97 | + ->client |
|
98 | + ->delete($uri, [ |
|
99 | + 'headers' => $headers, |
|
100 | + 'form_params' => $body, |
|
101 | + ]); |
|
102 | + |
|
103 | + return $this->parseResponse($response); |
|
104 | + } |
|
105 | + |
|
106 | + /** |
|
107 | + * @param string $url |
|
108 | + * @return $this |
|
109 | + */ |
|
110 | + public function setBaseUrl($url) |
|
111 | + { |
|
112 | + $this->client->setBaseUrl($url); |
|
113 | + |
|
114 | + return $this; |
|
115 | + } |
|
116 | + |
|
117 | + /** |
|
118 | + * @param ResponseInterface $response |
|
119 | + * @return array|null |
|
120 | + */ |
|
121 | + protected function parseResponse(ResponseInterface $response) |
|
122 | + { |
|
123 | + $responseContents = $response->getBody()->getContents(); |
|
124 | + |
|
125 | + $this->responseHeaders = $response->getHeaders(); |
|
126 | + |
|
127 | + return json_decode($responseContents, true); |
|
128 | + } |
|
129 | + |
|
130 | + /** |
|
131 | + * @return array |
|
132 | + */ |
|
133 | + public function getResponseHeaders() |
|
134 | + { |
|
135 | + return $this->responseHeaders; |
|
136 | + } |
|
137 | 137 | } |
138 | 138 | \ No newline at end of file |