-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmycurl.php
More file actions
executable file
·370 lines (316 loc) · 8.68 KB
/
mycurl.php
File metadata and controls
executable file
·370 lines (316 loc) · 8.68 KB
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
<?php
class curl {
/**
* holding default user agent
* @var string $_useragent
*/
protected $_useragent = 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1';
/**
* var holding URL to curl
* @var string $_url
*/
protected $_url;
/**
* var holding flag indicating if we follow urls or not
* @var boolean $_followlocation
*/
protected $_followlocation;
/**
* var setting timeout in secs
* @var int $_timeout
*/
protected $_timeout;
/**
* var setting max redirects
* @var int $_maxRedirects
*/
protected $_maxRedirects;
/**
* var setting cooke jar
* @var string $_cookieFileLocation
*/
protected $_cookieFileLocation = '/tmp/cookie.txt';
/**
* flag indication if we are doing any post
* @var boolean $_post
*/
protected $_post;
/**
* var setting vars to post
* @var array $_postFields
*/
protected $_postFields;
/**
* var setting referer
* @var string $_referer
*/
protected $_referer ="http://www.google.com";
/**
* @ignore
*/
protected $_session;
/**
* var holding the curled webpage
* @var string $_webpage
*/
public $_webpage;
/**
* flag indicating if we want to include headers
* @var boolean $_includeHeader
*/
protected $_includeHeader;
/**
* flag indicating if we ignore body of webpage
* @var boolean $_noBody
*/
protected $_noBody;
/**
* var indicating the status of the webpage, e.g. 200
* @var int $_status
*/
protected $_status;
/**
* flag indicating if this is a binary transfer
* @var boolean $_binaryTransfer
*/
protected $_binaryTransfer;
/**
* var indicating if we use basic auth
* @var boolean $authentication
*/
public $authentication = 0;
/**
* var holding basic auth username
* @var string $auth_name
*/
public $auth_name = '';
/**
* var holding basic auth password
* @var string $auth_pass
*/
public $auth_pass = '';
/**
* specify a request method other than GET or POST, e.g .DELETE or
* PATCH
* @var string $_request
*/
public $_request = null;
/**
* method setting use auth
* @param boolean $use 1 or 0
*/
public function useAuth($use)
{
$this->authentication = 0;
if($use == true) $this->authentication = 1;
}
/**
* set auth name
* @param string $name
*/
public function setName($name)
{
$this->auth_name = $name;
}
/**
* set auth pass
* @param string $pass
*/
public function setPass($pass)
{
$this->auth_pass = $pass;
}
/**
* sets referer
* @param string $referer
*/
public function setReferer($referer)
{
$this->_referer = $referer;
}
/**
* sets cookie jar
* @param string $path
*/
public function setCookiFileLocation($path)
{
$this->_cookieFileLocation = $path;
}
/**
* sets post fields
* @param array $postFields
*/
public function setPost ($postFields)
{
$this->_post = true;
$this->_postFields = $postFields;
}
/**
* sets useragent
* @param string $userAgent
*/
public function setUserAgent($userAgent)
{
$this->_useragent = $userAgent;
}
/**
* sets request
* @param string $request
*/
public function setRequest($request)
{
$this->_request = $request;
}
/**
* return headers when returning web page
* @param boolean $bool
*/
public function includeHeader ($bool)
{
$this->_includeHeader = $bool;
}
/**
* constructor. Sets up curl object
* @param string $url
* @param boolean $followlocation
* @param int $timeOut
* @param int $maxRedirecs
* @param boolean $binaryTransfer
* @param boolean $includeHeader
* @param boolean $noBody
*/
public function __construct(
$url,
$followlocation = true,
$timeOut = 30,
$maxRedirecs = 4,
$binaryTransfer = false,
$includeHeader = false,
$noBody = false)
{
$this->_url = $url;
$this->_followlocation = $followlocation;
$this->_timeout = $timeOut;
$this->_maxRedirects = $maxRedirecs;
$this->_noBody = $noBody;
$this->_includeHeader = $includeHeader;
$this->_binaryTransfer = $binaryTransfer;
//$this->_cookieFileLocation = dirname(__FILE__).'/cookie.txt';
}
/**
* create curl
* @param string $url = 'nul'
*/
public function createCurl($url = 'nul')
{
if ($url != 'nul') {
$this->_url = $url;
}
$s = curl_init();
curl_setopt($s,CURLOPT_URL,$this->_url);
curl_setopt($s,CURLOPT_HTTPHEADER,array('Expect:'));
curl_setopt($s,CURLOPT_TIMEOUT,$this->_timeout);
curl_setopt($s,CURLOPT_MAXREDIRS,$this->_maxRedirects);
curl_setopt($s,CURLOPT_RETURNTRANSFER,true);
curl_setopt($s,CURLOPT_FOLLOWLOCATION,$this->_followlocation);
curl_setopt($s,CURLOPT_COOKIEJAR,$this->_cookieFileLocation);
curl_setopt($s,CURLOPT_COOKIEFILE,$this->_cookieFileLocation);
if ($this->_request) {
curl_setopt($s, CURLOPT_CUSTOMREQUEST, $this->_request);
}
if ($this->authentication == 1) {
curl_setopt($s, CURLOPT_USERPWD, $this->auth_name.':'.$this->auth_pass);
}
if ($this->_post) {
// only set CURLOPT_POST is _request is empty or 'POST'
if ($this->_request == 'POST' || !isset($this->_request)) {
curl_setopt($s,CURLOPT_POST,true);
}
curl_setopt($s, CURLOPT_POSTFIELDS, $this->_postFields);
}
if ($this->_includeHeader) {
curl_setopt($s,CURLOPT_HEADER,true);
}
if ($this->_noBody) {
curl_setopt($s,CURLOPT_NOBODY,true);
}
if ($this->_binaryTransfer) {
curl_setopt($s,CURLOPT_BINARYTRANSFER,true);
}
curl_setopt($s,CURLOPT_USERAGENT,$this->_useragent);
curl_setopt($s,CURLOPT_REFERER,$this->_referer);
$this->_webpage = curl_exec($s);
$this->_status = curl_getinfo($s,CURLINFO_HTTP_CODE);
curl_close($s);
}
/**
* get http status of curl operation
*/
public function getHttpStatus()
{
return $this->_status;
}
/**
* magic method. returns webpage as string
*/
public function __tostring()
{
return $this->_webpage;
}
/**
* return webpage from curl operation
*/
public function getWebPage()
{
return $this->_webpage;
}
}
/**
*
* From: http://www.php.net/manual/de/book.curl.php#102885
* checks if we get an pre defined http response
* @param string $url
* @param int $status e.g. 404
* @param int $wait time to wait
* @return boolean $res
*/
function http_response($url, $status = null, $wait = 10)
{
$time = microtime(true);
$expire = $time + $wait;
// we fork the process so we don't have to wait for a timeout
$pid = pcntl_fork();
if ($pid == -1) {
die('could not fork');
} else if ($pid) {
// we are the parent
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, TRUE);
curl_setopt($ch, CURLOPT_NOBODY, TRUE); // remove body
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
$head = curl_exec($ch);
$httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);
if (!$head) {
return FALSE;
}
if ($status === null) {
if ($httpCode < 400) {
return TRUE;
} else {
return FALSE;
}
} elseif ($status == $httpCode) {
return TRUE;
}
return FALSE;
pcntl_wait($status); //Protect against Zombie children
} else {
// we are the child
while (microtime(true) < $expire) {
sleep(0.5);
}
return FALSE;
}
}