This repository has been archived by the owner on Feb 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.js
318 lines (280 loc) · 8.75 KB
/
settings.js
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
'use strict'
var proxy_pattern = /\b(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\b:\d{2,5}/g
var currentDatabase = 0;
var redis = require('redis');
var redis_client = redis.createClient();
var parsingProxySite = 0;
var request = require('request');
var ObjectId = require('mongodb').ObjectID;
var debug = true;
var debugFail = false;
var db = null;
var settings = {};
settings.debug = debug;
settings.debugFail = debugFail;
redis_client.on("error", function (err) {
console.log("Error " + err);
process.exit();
});
var goodProxyLists = {
pop: function() {
throw 'No pop for bad proxies';
},
push: function(el, callback) {
return redis_command(1, redis_client.set, el, 1, function(err, res) {
if(err) throw err;
return res;
});
},
get: function(el, callback) {
return redis_command(1, redis_client.exists, el, function(err, res) {
if(err) throw err;
callback(res);
});
},
random: function(callback) {
return redis_command(1, redis_client.randomkey, function(err, res) {
if(err) throw err;
callback(res);
/*
ToDo
Delete good proxy only after N failed times
redis_client.del(res, function(err, result) {
if(err) throw err;
callback(res);
})
*/
});
},
}
var badProxyLists = {
pop: function() {
throw 'No pop for bad proxies';
},
push: function(el, callback) {
return redis_command(2, redis_client.setex, el, 1, 60*60*300, function(err, res) {
if(err) throw err;
return res;
});
},
get: function(callback) {
return redis_command(2, redis_client.randomkey, function(err, res) {
if(err) throw err;
callback(res);
});
},
exists: function(el, callback) {
return redis_command(2, redis_client.exists, el, function(err, res) {
if(err) throw err;
callback(res);
});
}
}
var notCheckedLists = {
pop: function() {
throw 'No pop for not checked proxies';
},
push: function(el) {
return redis_command(5, redis_client.set, el, 1, function(err, res) {
if(err) throw err;
return res;
});
},
random: function(callback) {
return redis_command(5, redis_client.randomkey, function(err, res) {
if(err) throw err;
if(res !== null) {
redis_client.del(res, function(err, result) {
if(err) throw err;
callback(res);
})
}
else {
if(settings.debug == true) {
//console.log('Not found any proxy for check')
}
callback(null);
}
});
},
get: function(callback) {
return redis_command(5, redis_client.randomkey, function(err, res) {
if(err) throw err;
callback(res);
});
}
}
var secondaryProxyLists = {
pop: function() {
throw 'No pop for not checked proxies';
},
push: function(el) {
return redis_command(3, redis_client.set, el, 1, function(err, res) {
if(err) throw err;
return res;
});
},
random: function(callback) {
return redis_command(3, redis_client.randomkey, function(err, res) {
if(err) throw err;
redis_client.del(res, function(err, result) {
if(err) throw err;
callback(res);
})
});
},
get: function(callback) {
return redis_command(3, redis_client.randomkey, function(err, res) {
if(err) throw err;
callback(res);
});
}
}
var redis_command = function(database_number, callback) {
var args = [];
for(var i = 2; i < arguments.length; i++)
args.push(arguments[i])
if(database_number != currentDatabase) {
redis_client.select(database_number, function(error, response) {
if(error) throw error;
currentDatabase = database_number;
return callback.apply(redis_client, args);
})
}
else {
return callback.apply(redis_client, args);
}
}
var getSecondaryProxy = function(callback, proxysite_url, attemps, service) {
secondaryProxyLists.random(function(result) {
if(result === null) {
notCheckedLists.random(function(result) {
if(result === null) {
if(attemps == 50) { throw 'No secondary proxies'; process.exit(); }
setTimeout(function() {
getSecondaryProxy(callback, proxysite_url, ++attemps, service);
}, 1000)
return 0;
} else {
callback(proxysite_url, result, service);
}
})
}
else {
callback(proxysite_url, result, service);
}
})
}
var getAvailableProxy = function(res, service) { //domainInProgress, get_more_domains, parsing_function) {
goodProxyLists.random(function(proxy) {
if(proxy === null) {
notCheckedLists.random(function(proxy) {
if(proxy !== null) {
//if(settings.debug == true)
// console.log('Found proxy in new proxy list ', proxy);
service.getDomainInfo(res, proxy, -1);
//parsing_function(res, proxy, -1);
} else {
service.domainInProgress.push(res);
parseProxySite(service) //get_more_domains, parsing_function);
setTimeout(function() {
getAvailableProxy(res, service) //domainInProgress, get_more_domains, parsing_function);
}, 3000);
//domainInProgress.push(res);
}
})
}
else {
if(settings.debug == true)
console.log('Found proxy in good proxy list', proxy);
service.getDomainInfo(res, proxy, 0);
}
})
}
var parseProxySite = function(service) {
// Will get proxy site url from database and will try
// to parse it with parsing_function
// in success will run service get more domains function
// otherwise will try other proxy url after 2500 milseconds
if(parsingProxySite < 1) {
parsingProxySite = 1;
(function(parsingProxySite) {
var d = new Date();
d.setTime(d - 60000);
db.collection('proxylist').find({'last_grabbed': {'$lte': d}}, {}, {sort: {'last_grabbed': 1}, limit: 10}, function(err, cursor) {
if(err) throw err;
cursor.each(function(err, el) {
if(err) throw err;
if(el) {
if(settings.debug == true)
console.log('get proxy for parsing', el.proxy_url, el.last_grabbed);
db.collection('proxylist').update({'_id': ObjectId(el['_id'])}, {'$set': {'last_grabbed': new Date()}}, function(err, res) {
setTimeout(function() { parsingProxySite --;}, 2500);
parseProxyUrlPage(el.proxy_url, '', service);
});
}
else {
}
})
})
})(parsingProxySite)
}
}
var parseProxyUrlPage = function (page_url, secondary_proxy, service) {
var proxy_array = secondary_proxy.split(':')
if(settings.debug == true)
console.log('request proxysite ', page_url, ' ', secondary_proxy);
request.get({
method: 'GET',
gzip : true,
uri : page_url,
//proxy: {protocol: proxy_array[0] + ':', hostname: proxy_array[1], 'port': proxy_array[2]},
}, function(error, response, body) {
if(error) {
getSecondaryProxy(parseProxyUrlPage, page_url, 1, service);
return 0;
} else {
secondaryProxyLists.push(secondary_proxy);
var ips = body.match(proxy_pattern);
if(settings.debut == true) {
if(ips)
console.log(page_url, ' ips count: ', ips.length);
else console.log(page_url, 'ips count:', 0);
}
for(var index in ips) {
var proxy = 'http:' + ips[index];
(function(proxy) {
// If proxy are not in bad proxy list
// Add that proxy to new proxy list
badProxyLists.exists(proxy, function(result) {
if(result == false) {
notCheckedLists.push(proxy);
service.getMoreDomains();
/*
var res = settings.domainInProgress.pop();
if(typeof res !== 'undefined') {
(function(res) {
callback(res, proxy, -1);
})(res);
}
*/
} else {
}
})
})(proxy);
}
}
});
}
exports.goodProxyLists = goodProxyLists
exports.notCheckedLists = notCheckedLists
exports.badProxyLists = badProxyLists
exports.secondaryProxyLists = secondaryProxyLists
exports.redis_command = redis_command
exports.parseProxySite = parseProxySite
exports.parseProxyUrlPage = parseProxyUrlPage
exports.getAvailableProxy = getAvailableProxy
exports.debug = debug
exports.setMainDatabase = function(mdb) {
db = mdb;
}