1 | <?php namespace Stevenmaguire\Services\Trello; |
||
10 | class Http |
||
11 | { |
||
12 | const HTTP_DELETE = 'DELETE'; |
||
13 | const HTTP_GET = 'GET'; |
||
14 | const HTTP_POST = 'POST'; |
||
15 | const HTTP_PUT = 'PUT'; |
||
16 | |||
17 | /** |
||
18 | * Multipart resources to include in next request. |
||
19 | * |
||
20 | * @var array |
||
21 | */ |
||
22 | protected $multipartResources = []; |
||
23 | |||
24 | /** |
||
25 | * Http client |
||
26 | * |
||
27 | * @var HttpClientInterface |
||
28 | */ |
||
29 | protected $httpClient; |
||
30 | |||
31 | /** |
||
32 | * Creates a new http broker. |
||
33 | */ |
||
34 | 702 | public function __construct() |
|
38 | |||
39 | /** |
||
40 | * Adds authentication credentials to given request. |
||
41 | * |
||
42 | * @param RequestInterface $request |
||
43 | * |
||
44 | * @return RequestInterface |
||
45 | */ |
||
46 | 682 | protected function authenticateRequest(RequestInterface $request) |
|
58 | |||
59 | /** |
||
60 | * Creates a request. |
||
61 | * |
||
62 | * @param string $verb |
||
63 | * @param string $path |
||
64 | * @param array $parameters |
||
65 | * |
||
66 | * @return Request |
||
67 | */ |
||
68 | 684 | protected function createRequest($verb, $path, $parameters = []) |
|
90 | |||
91 | /** |
||
92 | * Retrieves http response for a request with the delete method. |
||
93 | * |
||
94 | * @param string $path |
||
95 | * @param array $parameters |
||
96 | * |
||
97 | * @return object |
||
98 | */ |
||
99 | 62 | public function delete($path, $parameters = []) |
|
105 | |||
106 | /** |
||
107 | * Retrieves http response for a request with the get method. |
||
108 | * |
||
109 | * @param string $path |
||
110 | * @param array $parameters |
||
111 | * |
||
112 | * @return object |
||
113 | */ |
||
114 | 312 | public function get($path, $parameters = []) |
|
120 | |||
121 | /** |
||
122 | * Creates and returns a request. |
||
123 | * |
||
124 | * @param string $method |
||
125 | * @param string $path |
||
126 | * @param array $parameters |
||
127 | * |
||
128 | * @return RequestInterface |
||
129 | */ |
||
130 | 684 | public function getRequest($method, $path, $parameters = [], $authenticated = true) |
|
140 | |||
141 | /** |
||
142 | * Retrieves default headers. |
||
143 | * |
||
144 | * @return array |
||
145 | */ |
||
146 | 684 | protected function getHeaders() |
|
150 | |||
151 | /** |
||
152 | * Prepares an array of important exception parts based on composition of a |
||
153 | * given exception. |
||
154 | * |
||
155 | * @param RequestException $requestException |
||
156 | * |
||
157 | * @return array |
||
158 | */ |
||
159 | 8 | private function getRequestExceptionParts(RequestException $requestException) |
|
169 | |||
170 | /** |
||
171 | * Creates an array of request options based on the current status of the |
||
172 | * http client. |
||
173 | * |
||
174 | * @return array |
||
175 | */ |
||
176 | 680 | protected function getRequestOptions() |
|
188 | |||
189 | /** |
||
190 | * Creates fully qualified domain from given path. |
||
191 | * |
||
192 | * @param string $path |
||
193 | * |
||
194 | * @return string |
||
195 | */ |
||
196 | 684 | protected function getUrlFromPath($path = '/') |
|
200 | |||
201 | /** |
||
202 | * Retrieves http response for a request with the post method. |
||
203 | * |
||
204 | * @param string $path |
||
205 | * @param array $parameters |
||
206 | * |
||
207 | * @return object |
||
208 | */ |
||
209 | 86 | public function post($path, $parameters) |
|
215 | |||
216 | /** |
||
217 | * Retrieves http response for a request with the put method, |
||
218 | * ensuring parameters are passed as body. |
||
219 | * |
||
220 | * @param string $path |
||
221 | * @param array $parameters |
||
222 | * |
||
223 | * @return object |
||
224 | 218 | */ |
|
225 | public function postAsBody($path, $parameters) |
||
233 | |||
234 | /** |
||
235 | * Retrieves http response for a request with the put method. |
||
236 | * |
||
237 | * @param string $path |
||
238 | * @param array $parameters |
||
239 | * |
||
240 | 2 | * @return object |
|
241 | */ |
||
242 | 2 | public function put($path, $parameters) |
|
248 | |||
249 | /** |
||
250 | * Retrieves http response for a request with the put method, |
||
251 | * ensuring parameters are passed as body. |
||
252 | * |
||
253 | * @param string $path |
||
254 | * @param array $parameters |
||
255 | * |
||
256 | * @return object |
||
257 | 2 | */ |
|
258 | public function putAsBody($path, $parameters) |
||
266 | |||
267 | /** |
||
268 | * Adds a given resource to multipart stream collection, to be processed by next request. |
||
269 | * |
||
270 | * @param string $name |
||
271 | * @param resource|string|Psr\Http\Message\StreamInterface $resource |
||
272 | * |
||
273 | 680 | * @return void |
|
274 | */ |
||
275 | protected function queueResourceAs($name, $resource) |
||
282 | |||
283 | 672 | /** |
|
284 | 8 | * Retrieves http response for a given request. |
|
285 | 8 | * |
|
286 | * @param RequestInterface $request |
||
287 | * |
||
288 | * @return object |
||
289 | * @throws Exceptions\Exception |
||
290 | */ |
||
291 | protected function sendRequest(RequestInterface $request) |
||
306 | |||
307 | /** |
||
308 | * Updates the http client. |
||
309 | * |
||
310 | * @param HttpClientInterface $httpClient |
||
311 | * |
||
312 | 8 | * @return Http |
|
313 | */ |
||
314 | 8 | public function setClient(HttpClientInterface $httpClient) |
|
320 | 4 | ||
321 | /** |
||
322 | 8 | * Creates local exception from guzzle request exception, which includes |
|
323 | 8 | * response body. |
|
324 | * |
||
325 | 8 | * @param RequestException $requestException |
|
326 | 5 | * |
|
327 | * @return void |
||
328 | * @throws Exceptions\Exception |
||
329 | 3 | */ |
|
330 | protected function throwRequestException(RequestException $requestException) |
||
349 | } |
||
350 |