This repository has been archived by the owner on Feb 26, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
HttpClient.php
423 lines (377 loc) · 10.3 KB
/
HttpClient.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
<?php
/*
* HttpClient class for making requests over http
*/
namespace Moneybird;
use Moneybird\HttpClient\Exception as GeneralException;
use Moneybird\HttpClient\ConnectionErrorException;
use Moneybird\HttpClient\HttpStatusException;
use Moneybird\HttpClient\UnknownHttpStatusException;
use Moneybird\HttpClient\CurlErrorException;
/**
* Wrapper for curl to create http requests
*/
class HttpClient implements Transport
{
/**
* Curl handler
*
* @access protected
* @var resource
*/
protected $connection;
/**
* Connection defaults
*
* @access protected
* @var array
*/
protected $connectionOptions = array();
/**
* Filehandler for temp file
*
* @access protected
* @var resource
*/
protected $tmpFile;
/**
* Response string
* @access protected
* @var string
*/
protected $response;
/**
* Http Status code
*
* @access protected
* @var int
*/
protected $httpStatus;
/**
* Headers of last request
*
* @access protected
* @var string
*/
protected $lastHeader = '';
/**
* Verify host and peer
*
* @access protected
* @var bool
* @static
*/
public static $verifyHostAndPeer = true;
/**
* Creates connector object
*
* @access public
*/
public function __construct(array $connectionOptions = array())
{
$this->connectionOptions = array(
CURLOPT_RETURNTRANSFER => true,
CURLOPT_SSL_VERIFYHOST => self::$verifyHostAndPeer ? 2 : 0,
CURLOPT_SSL_VERIFYPEER => self::$verifyHostAndPeer,
CURLOPT_HEADER => true,
) +
$connectionOptions;
}
/**
* Clean up
* @access public
*/
public function __destruct()
{
$this->closeConnection();
}
/**
* Set credentials for the connection
*
* @param string $username Username
* @param string $password Password
* @access public
* @return HttpClient
*/
public function setAuth($username, $password)
{
$this->connectionOptions[CURLOPT_USERPWD] = $username . ':' . $password;
$this->connectionOptions[CURLOPT_HTTPAUTH] = CURLAUTH_BASIC;
return $this;
}
/**
* Set useragent
* @param string $userAgent
* @access public
* @return HttpClient
*/
public function setUserAgent($userAgent)
{
$this->connectionOptions[CURLOPT_USERAGENT] = $userAgent;
return $this;
}
/**
* Init connection
*
* @access protected
* @return HttpClient
* @throws ConnectionErrorException
*/
protected function openConnection()
{
$this->response = null;
$this->httpStatus = null;
if (!$this->connection = curl_init()) {
throw new ConnectionErrorException('Unable to open connection');
}
$this->setConnectionOptions($this->connectionOptions);
return $this;
}
/**
* Set connection options
*
* @param array $options
* @throws ConnectionErrorException
* @access protected
* @return HttpClient
*/
protected function setConnectionOptions(Array $options)
{
if (!is_resource($this->connection)) {
throw new ConnectionErrorException('cURL connection has not been set up yet!');
}
if (!curl_setopt_array($this->connection, $options)) {
throw new ConnectionErrorException('Unable to set cURL options' . PHP_EOL . curl_error($this->connection));
}
return $this;
}
/**
* Close connection
*
* @access protected
* @return HttpClient
*/
protected function closeConnection()
{
if (is_resource($this->tmpFile)) {
fclose($this->tmpFile);
}
if (is_resource($this->connection)) {
curl_close($this->connection);
}
return $this;
}
/**
* Prepare GET request
* @return HttpClient
* @access protected
*/
protected function preGetRequest()
{
$this->setConnectionOptions(array(
CURLOPT_HTTPGET => true,
));
return $this;
}
/**
* Prepare POST request
* @return HttpClient
* @access protected
*/
protected function prePostRequest($data)
{
$this->setConnectionOptions(array(
CURLOPT_POST => true,
CURLOPT_POSTFIELDS => $data,
));
return $this;
}
/**
* Prepare PUT request
* @return HttpClient
* @access protected
*/
protected function prePutRequest($data)
{
$this->tmpFile = tmpfile();
fwrite($this->tmpFile, $data);
rewind($this->tmpFile);
$this->setConnectionOptions(array(
CURLOPT_PUT => true,
CURLOPT_INFILE => $this->tmpFile,
CURLOPT_INFILESIZE => strlen($data),
));
return $this;
}
/**
* Prepare DELETE request
* @return HttpClient
* @access protected
*/
protected function preDeleteRequest()
{
$this->setConnectionOptions(array(
CURLOPT_CUSTOMREQUEST => 'DELETE',
));
return $this;
}
/**
* Number of requests left
* @return int
*/
public function requestsLeft()
{
$headers = $this->getHeaders();
if (count($headers) == 0) {
// No requests made yet
return null;
}
return $headers['x-ratelimit-remaining'];
}
/**
* Perform the request
*
* @param string $url URL of request
* @param string $requestMethod (GET|POST|PUT|DELETE)
* @param string $data Data in string format
* @param array $headers
* @return string
* @throws GeneralException
* @throws HttpStatusException
* @throws UnknownHttpStatusException
* @throws ConnectionErrorException
* @access public
*/
public function send($url, $requestMethod, $data = null, Array $headers = null)
{
$method = 'pre' . $requestMethod . 'request';
if (!method_exists($this, $method)) {
throw new GeneralException('Request method not allowed');
}
$this
->openConnection()
->setConnectionOptions(array(
CURLOPT_URL => $url
)
);
if (!is_null($headers)) {
$this->setConnectionOptions(array(
CURLOPT_HTTPHEADER => $headers,
)
);
}
$this
->$method($data)
->exec()
->closeConnection()
;
return $this->response;
}
/**
* Throws exceptions if httpStatus contains error status
* @throws HttpStatusException
* @throws UnknownHttpStatusException
* @access protected
*/
protected function handleError()
{
$okStatus = array(
100, 200, 201,
);
$messages = array(
401 => 'Authorization required',
403 => 'Forbidden request',
404 => 'Not found',
406 => 'Not accepted',
422 => 'Unprocessable entity',
500 => 'Internal server error',
501 => 'Method not implemented',
);
if (isset($messages[$this->httpStatus])) {
throw new HttpStatusException($messages[$this->httpStatus], $this->httpStatus);
}
if (!in_array($this->httpStatus, $okStatus)) {
throw new UnknownHttpStatusException('Unknown http status: ' . $this->httpStatus);
}
}
/**
* Execute request
* Redirects via cURL option CURLOPT_FOLLOWLOCATION won't work if safe mode
* or open basedir is active
*
* @access protected
* @return HttpClient
* @throws HttpStatusException
* @throws UnknownHttpStatusException
* @throws ConnectionErrorException
*/
protected function exec()
{
static $loops = 0;
static $maxLoops = 20;
if ($loops++ >= $maxLoops) {
$loops = 0;
throw new ConnectionErrorException('Too many redirects in request');
}
$curl_return = curl_exec($this->connection);
if ($curl_return === false) {
throw new CurlErrorException(curl_error($this->connection));
}
$response = explode("\r\n\r\n", $curl_return, 2);
$this->httpStatus = curl_getinfo($this->connection, CURLINFO_HTTP_CODE);
$header = isset($response[0]) ? $response[0] : '';
$data = isset($response[1]) ? $response[1] : '';
// Ignore Continue header
if ($header == "HTTP/1.1 100 Continue") {
$response = explode("\r\n\r\n", $data, 2);
$header = isset($response[0]) ? $response[0] : '';
$data = isset($response[1]) ? $response[1] : '';
}
$this->lastHeader = $header;
$this->response = $data;
if ($this->httpStatus == 301 || $this->httpStatus == 302) {
$matches = array();
preg_match('/Location:(.*?)\n/', $header, $matches);
$url = @parse_url(trim(array_pop($matches)));
if (!$url) {
//couldn't process the url to redirect to
$loops = 0;
throw new ConnectionErrorException('Invalid redirect');
}
$this->setConnectionOptions(array(
CURLOPT_URL => $url['scheme'] . '://' . $url['host'] . $url['path'] . (!empty($url['query']) ? '?' . $url['query'] : '')
));
$this->exec();
}
$loops = 0;
$this->handleError();
return $this;
}
/**
* Get last response
*
* @return string
* @access public
*/
public function getLastResponse()
{
return $this->response;
}
/**
* Get headers
*
* @return array
* @access public
*/
public function getHeaders()
{
$headers = array();
$matches = array();
if (preg_match_all('/([\w-]+): (.*)/', $this->lastHeader, $matches)) {
for ($i = count($matches[0]) - 1; $i >= 0; $i--) {
$headers[strtolower($matches[1][$i])] = $matches[2][$i];
}
}
return $headers;
}
}