forked from juyal-ahmed/web-scraper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scraper.php
299 lines (251 loc) · 10.5 KB
/
scraper.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
<?php
/*
*
* File: PHP Web Scraping Class
* By: Jewel Ahmed<[email protected]>
* Date: 28-05-2013
*
*/
class Scraper {
/*
* @ param boolean if you need to use cookie for language support or authentication support
*/
var $useCookie = false;
/*
* @ param string directory/path of cache contents to be stored
*/
var $cacheLocation = "./cache/";
function __construct(){
}
/*
*
* @ param string $url as 'http://maps.google.com'; Page url location which you want to fetch
* @ param array $data
* @ return a url page html content
* */
function aspFormPost($url, $data = array()){
$regexViewstate = '/__VIEWSTATE\" value=\"(.*)\"/i';
$regexEventVal = '/__EVENTVALIDATION\" value=\"(.*)\"/i';
$regs = array();
$this->ckfile = tempnam ("/tmp", "CURLCOOKIE");
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
$gcontent=curl_exec($ch);
$viewstate = $this->regexExtract($gcontent,$regexViewstate,$regs,1);
$eventval = $this->regexExtract($gcontent, $regexEventVal,$regs,1);
$data['__VIEWSTATE']=$viewstate;
$data['__EVENTVALIDATION']=$eventval;
curl_setOpt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_COOKIEJAR, $this->ckfile);
$content = curl_exec($ch);
if($content === false) {
$content = curl_error($ch);
}
curl_close($ch);
return $content;
}
/*
*
* @ param string $url as 'http://maps.google.com'; Page url location which you want to fetch
* @ param array $data
* @ param string $proxy [optional] as '[proxy IP]:[port]'; Proxy address and port number
* which you want to use
* @ param string $userpass [optional] as '[username]:[password]'; Proxy authentication
* username and password
* @ return a url page html content
* @ access private
* */
function getPagePost($url, $data = array(), $proxy='', $userpass='', $header = array()) {
$ch = curl_init();
if(!empty($header)){
curl_setopt($ch, CURLOPT_HTTPHEADER, $header );
curl_setopt($ch,CURLOPT_ENCODING , "gzip");
}
curl_setopt($ch, CURLOPT_URL, $url);
if($this->useCookie)
curl_setopt ($ch, CURLOPT_COOKIEJAR, $this->ckfile);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE);
if(!empty($proxy))
curl_setopt($ch, CURLOPT_PROXY, $proxy);
if(!empty($userpass))
curl_setopt($ch, CURLOPT_PROXYUSERPWD, $userpass);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
$result = curl_exec($ch);
if($result === false) {
$result = curl_error($ch);
}
curl_close($ch);
return $result;
}
/*
*
* @ param string $url as 'http://maps.google.com'; Page url location which you want to fetch
* @ param string $proxy [optional] as '[proxy IP]:[port]'; Proxy address and port number
* which you want to use
* @ param string $userpass [optional] as '[username]:[password]'; Proxy authentication
* username and password
* @ return a url page html content
*
* */
function curl($url, $proxy='', $userpass='') {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
if($this->useCookie)
curl_setopt ($ch, CURLOPT_COOKIEFILE, $this->ckfile);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
if(!empty($proxy))
curl_setopt($ch, CURLOPT_PROXY, $proxy);
if(!empty($userpass))
curl_setopt($ch, CURLOPT_PROXYUSERPWD, $userpass);
$result = curl_exec($ch);
curl_close($ch);
return $result;
}
/*
*
* @ param string $url as 'http://maps.google.com'; Page url location which you want to fetch
* @ param string $proxy [optional] as '[proxy IP]:[port]'; Proxy address and port number
* which you want to use
* @ param string $userpass [optional] as '[username]:[password]'; Proxy authentication
* username and password
* @ return a url page html content
*
* */
function curlWithCookie($url, $proxy='', $userpass='') {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_COOKIEJAR, $this->ckfile);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
if(!empty($proxy))
curl_setopt($ch, CURLOPT_PROXY, $proxy);
if(!empty($userpass))
curl_setopt($ch, CURLOPT_PROXYUSERPWD, $userpass);
$result = curl_exec($ch);
curl_close($ch);
return $result;
}
/*
*
* @ param string $data Full html content which you want to parse
* @ param string $s_tag Start tag of html content
* @ param string $e_tag End tag of html content
* @ return middle html content from given start tag and end tag of $data
* */
function getValueByTagName( $data, $s_tag, $e_tag) {
$pos = strpos($data, $s_tag);
if ($pos === false) {
return '';
} else {
$s = strpos( $data,$s_tag) + strlen( $s_tag);
$e = strlen( $data);
$data= substr($data, $s, $e);
$s = 0;
$e = strpos( $data,$e_tag);
$data= substr($data, $s, $e);
$data= substr($data, $s, $e);
return $data;
}
}
/*
*
* @ param string $text Full html content which you want to parse
* @ param string $regex rgx
* @ param string $regs will be set to an array of all group values (assuming a match)
* @ param string $nthValue nth number value example where n= 1,2,3,4
* @ return a value of matched string
* */
function regexExtract($text, $regex, $regs, $nthValue) {
if (preg_match($regex, $text, $regs)) {
$result = $regs[$nthValue];
} else {
$result = "";
}
return $result;
}
/*
*
* Creating an array of label and value pair from a table which has only 2 td
* @ param string $content full html content which you want to parse
* @ param boolean $label_strip is the label allowed to be striped for html tags
* @ param boolean $value_strip is the value allowed to be striped for html tags
* $ return an array of label value pair
*
*/
function table2td2array($content, $label_strip=true, $value_strip=false){
$rowArr = explode('<tr>', $content);
array_shift($rowArr);
$tmp_ret_arr = array();
if (!empty($rowArr) && is_array($rowArr)) {
foreach ($rowArr as $key => $value) {
$tmpRowArr = explode('<td', $value);
array_shift($tmpRowArr);
$tmpLabel = strip_tags($this->getValueByTagName($tmpRowArr[0], '>', '</td>'));
if($label_strip){
$tmpLabel = strip_tags($tmpLabel);
}
$tmpValue = strip_tags($this->getValueByTagName($tmpRowArr[1], '>', '</td>'));
if($value_strip){
$tmpValue = strip_tags($tmpValue);
}
$tmpLabel = trim($tmpLabel);
$tmpValue = trim($tmpValue);
if(!empty($tmpLabel)){
$tmp_ret_arr[$tmpLabel] = $tmpValue;
}
}
}
return $tmp_ret_arr;
}
/*
*
* Checking if cache file exist
* @ param string $name cache file name
*
*/
public function checkCacheAvailable($name){
if($this->enableCache){
$cachefile = $this->cacheLocation . $name;
$cachetime = 5 * 60; //5 min
if (file_exists($cachefile) && (time() - $cachetime < filemtime($cachefile))) {
return true;
} else {
return false;
}
} else {
return false;
}
}
/*
*
* Reading cache file
* @ param string $name cache file name
*
*/
public function readCache($name){
$cachefile = $this->cacheLocation . $name;
$output = file_get_contents($cachefile, FILE_USE_INCLUDE_PATH);
return $output;
}
/*
*
* Writing cache file with contents
* @ param string $name cache file name
* @ param string $content cache content to write on cache file
*
*/
public function writeCache($name, $content){
if($this->enableCache){
$cachefile = $this->cacheLocation . $name;
$fp = fopen($cachefile, 'w');
fwrite($fp, $content);
fclose($fp);
}
}
}