-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCurlWrapper.class.php
499 lines (467 loc) · 13.6 KB
/
CurlWrapper.class.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
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
<?php
final class CurlWrapper
{
// {{{ properties
/**
* @var object CurlWrapper instance
* @access private
*/
private static $_Instance = NULL;
/**
* @var string cUrl instance
* @access private
*/
private $_curlInstance = NULL;
/**
* @var string GET handler
* @access private
*/
private $_GETHandler;
/**
* @var array all curl_opt's handler
* @access private
*/
private $_genOptsHandler = array();
/**
* @var array all request/response log handler
* @access private
*/
private $_logHandler = array();
/**
* @var integer
* @access private
*/
private $_reqCounter = 0;
// }}}
// {{{ Owerride magic methods, construct, clone
/**
*
*/
private function __clone()
{}
private function __construct()
{
$this->_curlInstance = curl_init();
$this->_restoreToFactory();
}
// }}}
/**
* Singleton meth
*/
public static function getInstance()
{
if (is_null(self::$_Instance)) {
self::$_Instance = new CurlWrapper();
}
return self::$_Instance;
}
/**
* Set url to request
* @access public
* @param string url - decoded url to resource
* @return CurlWrapper object
* @throws Exception
*/
public function setUrl($url ='')
{
if (empty($url)) {
throw new Exception('Empty URL');
}
$this->_setOpt(CURLOPT_URL, trim($url));
return $this;
}
/**
* Set login / pass (IF NEEDED)
* @access public
* @param string login
* @param string pass
* @return CurlWrapper object
* @throws Exception
*/
public function setAuth($login ='', $passwd ='')
{
if (empty($login)) {
throw new Exception(
'Invalid user/pass pair. Login empty'
);
}
$this->_setOpt(
CURLOPT_USERPWD,
"{$login}:{$passwd}"
);
return $this;
}
/**
* GET container
* @access public
* @param array getParams key => 'value'
* @return CurlWrapper object
* @throws Exception
*/
public function setGet($getParams =array())
{
if (!is_array($getParams)) {
throw new Exception(
'Invalid get params, expecting array'
);
}
$getTail = '';
foreach($getParams as $param => $value) {
if (!empty($param)) {
$getTail .= urlencode($param)
. '='
. urlencode($value)
. '&';
}
}
if (!empty($getTail)) {
if (!empty($this->_GETHandler)) {
$getTail = $this->_GETHandler
. '&'
. $getTail;
}
$this->_GETHandler =
substr($getTail, 0, strlen($getTail) -1);
}
return $this;
}
/**
* POST container
* @access public
* @param array postParams key => 'value'
* @return CurlWrapper object
* @throws Exception
*/
public function setPost($postParams =array())
{
if (isset($this->_genOptsHandler[CURLOPT_POSTFIELDS]) &&
!is_array($this->_genOptsHandler[CURLOPT_POSTFIELDS])
) {
throw new Exception(
'Please assign the POST parameters one of the methods: setPost()'
. ' or by setAdditionalOpts(). Do not use both to one request'
);
}
if (!is_array($postParams)) {
throw new Exception(
'Invalid post params, expecting array'
);
}
$postTail = array();
foreach ($postParams as $param => $value) {
if (!empty($param)) {
$postTail[$param] = $value;
}
}
if (!empty($postTail)) {
if (isset($this->_genOptsHandler[CURLOPT_POSTFIELDS])) {
$postTail = array_merge(
$this->_genOptsHandler[CURLOPT_POSTFIELDS],
$postTail
);
}
$this->_setOpt(CURLOPT_POST, TRUE);
$this->_setOpt(CURLOPT_POSTFIELDS, $postTail);
}
return $this;
}
/**
* COOKIE container
* @access public
* @param array cookiesParams key => 'value'
* @return CurlWrapper object
* @throws Exception
*/
public function setCookie($cookiesParams =array())
{
if (!is_array($cookiesParams)) {
throw new Exception(
'Invalid cookies params, expecting array!'
);
}
if (count($cookiesParams)) {
$cookiesTail = '';
foreach ($cookiesParams as $param => $value) {
$cookiesTail .= $param
. '=' . $value
. '; ';
}
if (!empty($cookiesTail)) {
if (!empty($this->_genOptsHandler[CURLOPT_COOKIE])) {
$cookiesTail = $this->_genOptsHandler[CURLOPT_COOKIE]
. $cookiesTail;
}
$this->_setOpt(CURLOPT_COOKIE, $cookiesTail);
}
}
return $this;
}
/**
* Set file to save & get cookies.
* File saved in tmp directory of system
* @access public
* @param string fileName
* @return CurlWrapper object
*/
public function cookieFile($fileName)
{
$file = sys_get_temp_dir() . $fileName;
$this->_setOpt(CURLOPT_COOKIEFILE, $file);
$this->_setOpt(CURLOPT_COOKIEJAR, $file);
return $this;
}
/**
* Set timeout to current request
* @access public
* @param integer timeout timeout in seconds
* @return CurlWrapper object
*/
public function setTimeout($timeout)
{
if ($timeout) {
$this->_setOpt(CURLOPT_TIMEOUT, $timeout);
}
return $this;
}
/**
* Add some headers to request
* @access public
* @param array headerParams 'key' => 'value' container
* @return CurlWrapper object
* @throws Exception
*/
public function setHeaderFields($headerParams =array())
{
if (isset($this->_genOptsHandler[CURLOPT_HTTPHEADER])
&& !is_array($this->_genOptsHandler[CURLOPT_HTTPHEADER])
) {
throw new Exception(
'You must pass either an array to CURLOPT_HTTPHEADER parameter!'
);
}
if (!is_array($headerParams)) {
throw new Exception(
'Wrong headers param, expecting array'
);
}
$headers = array();
foreach ($headerParams as $param => $value) {
$headers[] = $param . ':' . $value;
}
if (count($headers)) {
if (!empty($this->_genOptsHandler[CURLOPT_HTTPHEADER])) {
$headers = array_merge(
$this->_genOptsHandler[CURLOPT_HTTPHEADER],
$headers
);
}
$this->_setOpt(CURLOPT_HTTPHEADER, $headers);
}
return $this;
}
/**
* Send file by request
* @access public
* @param string full filePath path to sended file
* @param string post variable name
* @return CurlWrapper object
* @throws Exception
*/
public function setFile($filePath ='', $headerFileName ='')
{
if (!strlen($filePath)) {
throw new Exception(
'Empty argument given, filePath must be non-empty!'
);
}
if (!file_exists($filePath)) {
throw new Exception(
'Error! File ' . $filePath . ' not exists!'
);
}
if (strlen($headerFileName) == 0) {
throw new Exception(
'Error! You need to specify header name of file to send file by POST'
);
}
if (!is_readable($filePath)) {
throw new Exception(
'Error! File ' . $filePath . ' is not readable! Permission deny'
);
}
$this->setPost(array(
$headerFileName => "@{$filePath}",
));
return $this;
}
/**
* Set additional fields
* @access public
* @param array key => 'value'
* @return CurlWrapper object
* @throws Exception
*/
public function setAdditionalOpts($options =array())
{
if (!is_array($options)) {
throw new Exception(
'Invalid argument options - [array] expected!'
);
}
foreach($options as $param => $value) {
$this->_setOpt($param, $value);
}
return $this;
}
/**
* Allow cUrl follow by 'Location' header
* @access public
* @param bool allowRedirect
* @param int maxRedirectCount
* @return CurlWrapper object
* @throws Exception
*/
public function allowRedirect($allowRedirect =TRUE, $maxRedirectCount =0)
{
if (!is_bool($allowRedirect)) {
throw new Exception(
'Invalid argument given, allowRedirect - [bool] expected!'
);
}
if (!is_int($maxRedirectCount)) {
throw new Exception(
'Invalid argument given, maxRedirectCount - [integer] expected!'
);
}
$this->_setOpt(CURLOPT_FOLLOWLOCATION, $allowRedirect);
if ($allowRedirect && $maxRedirectCount > 0) {
$this->_setOpt(CURLOPT_MAXREDIRS, (int)$maxRedirectCount);
}
return $this;
}
/**
* Set 'Referer' header
* @access public
* @param string referer
* @return CurlWrapper object
* @throws Exception
*/
public function setReferer($referer ='')
{
if (!strlen($referer)) {
throw new Exception(
'Empty argument given, referer must be non-empty!'
);
}
$this->_setOpt(CURLOPT_REFERER, $referer);
return $this;
}
/**
* Run current request,
* after run add request and respond
* @access public
* @param string reqSignature some custom signature to requests (optional)
* @param bool isDisplayed return respond to STDOUT
* @return CurlWrapper object
* @throws Exception
*/
public function run($reqSignature ='', $isDisplayed =TRUE)
{
if (empty($this->_genOptsHandler[CURLOPT_URL])) {
throw new Exception(
'URL not set, or previous request executed, and URL cleaned'
);
}
if (!empty($this->_GETHandler)) {
$this->_genOptsHandler[CURLOPT_URL] .= '?' . $this->_GETHandler;
}
curl_setopt_array(
$this->_curlInstance,
$this->_genOptsHandler
);
$errorExec = NULL;
try {
$response = curl_exec($this->_curlInstance);
} catch (Exception $e) {
$errorExec = $e->getMessage();
}
$this->_setLog($reqSignature, $response,
curl_getinfo($this->_curlInstance), $errorExec
);
if ($isDisplayed) {
echo $response;
}
$this->_restoreToFactory();
return $this;
}
/**
* Get log by current signature or
* all request/ response
* @access public
* @param string reqSignature signature of returned log
* @return CurlWrapper object
*/
public function getLog($requestSignature ='')
{
// foreach if not unique signature => add to stack
$logResponse = array();
foreach($this->_logHandler as $logItem) {
if (!empty($requestSignature)) {
if ($logItem['requestSignature'] == $requestSignature) {
print_r($logItem);
}
} else {
print_r($logItem);
}
}
return $this;
}
/**
* Save log of current request
* @access private
* @param string reqSignature set signature to current log
* @param string responseStr response
* @param array requestInfo
* @param string errorMess error message
*/
private function _setLog($reqSignature ='', $responseStr ='',
$requestInfo = '', $errorMess =''
) {
$this->_logHandler[] = array(
'requestSignature' => (empty($reqSignature)) ? 'UNSIGNED_' . ++$this->_reqCounter : $reqSignature,
'response' => $responseStr,
'requestInfo' => $requestInfo,
'errorMessage' => $errorMess,
);
}
/**
* Class main method to add some option to request
* @access public
* @param string optKey option key
* @param string valueContainer option value
* @throws Exception
*/
private function _setOpt($optKey ='', $valueContainer)
{
if (empty($optKey)) {
throw new Exception('Trying to set empty opt key');
}
$this->_genOptsHandler[$optKey] = $valueContainer;
}
/**
* Set default opts per req/resp
* @access private
*/
private function _restoreToFactory()
{
$this->_genOptsHandler = array(
CURLOPT_RETURNTRANSFER => TRUE,
CURLOPT_AUTOREFERER => TRUE,
CURLOPT_FOLLOWLOCATION => TRUE,
CURLINFO_HEADER_OUT => TRUE,
CURLOPT_TIMEOUT => 60,
);
$this->_GETHandler = '';
$this->_curlInstance = curl_init();
}
}