forked from chill117/proxy-lists
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
347 lines (248 loc) · 7.97 KB
/
index.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
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
'use strict';
var _ = require('underscore');
var async = require('async');
var colors = require('colors');
var EventEmitter = require('events').EventEmitter || require('events');
var GeoIpNativeLite = require('geoip-native-lite');
var net = require('net');
colors.setTheme({
info: 'green',
warn: 'yellow',
error: 'red'
});
// Prepare the GeoIp data so that we can perform GeoIp look-ups later.
GeoIpNativeLite.loadDataSync({
ipv4: true,
ipv6: false,
cache: true
});
var ProxyLists = module.exports = {
defaultOptions: {
/*
Get proxies for the specified countries.
To get all proxies, regardless of country, set this option to NULL.
See:
https://en.wikipedia.org/wiki/ISO_3166-1
Only USA and Canada:
['us', 'ca']
*/
countries: null,
/*
Get proxies that use the specified protocols.
To get all proxies, regardless of protocol, set this option to NULL.
*/
protocols: ['http', 'https'],
/*
Anonymity level.
To get all proxies, regardless of anonymity level, set this option to NULL.
*/
anonymityLevels: ['anonymous', 'elite'],
/*
Include proxy sources by name.
Only 'freeproxylists':
['freeproxylists']
*/
sourcesWhiteList: null,
/*
Exclude proxy sources by name.
All proxy sources except 'freeproxylists':
['freeproxylists']
*/
sourcesBlackList: null,
/*
Set to TRUE to have all asynchronous operations run in series.
*/
series: false
},
_protocols: ['http', 'https', 'socks4', 'socks5'],
_anonymityLevels: ['transparent', 'anonymous', 'elite'],
_countries: require('./countries'),
_sources: require('./sources'),
// Get proxies from all sources.
getProxies: function(options) {
options = this.prepareOptions(options || {});
var emitter = new EventEmitter();
var sources = this.listSources(options);
var asyncMethod = options.series === true ? 'eachSeries' : 'each';
var onData = _.bind(emitter.emit, emitter, 'data');
var onError = _.bind(emitter.emit, emitter, 'error');
var onEnd = _.once(_.bind(emitter.emit, emitter, 'end'));
async[asyncMethod](sources, _.bind(function(source, next) {
try {
var gettingProxies = this.getProxiesFromSource(source.name, options);
} catch (error) {
// Print the error as a warning, but continue getting proxies.
console.warn(error.toString().warn);
return next();
}
gettingProxies.on('data', onData);
gettingProxies.on('error', onError);
gettingProxies.on('end', _.once(_.bind(next, undefined, null)));
}, this), onEnd);
return emitter;
},
// Get proxies from a single source.
getProxiesFromSource: function(name, options) {
if (!this.sourceExists(name)) {
throw new Error('Proxy source does not exist: "' + name + '"');
}
options = this.prepareOptions(options || {});
var source = this._sources[name];
if (source.requiredOptions) {
_.each(source.requiredOptions, function(message, key) {
if (!options[name] || !_.isObject(options[name]) || !options[name][key]) {
throw new Error('Missing required option (`option.' + name + '.' + key + '`): ' + message);
}
});
}
var emitter = new EventEmitter();
var gettingProxies = source.getProxies(options);
gettingProxies.on('data', function(proxies) {
proxies || (proxies = []);
// Add the 'source' attribute to every proxy.
proxies = _.map(proxies, function(proxy) {
proxy.source = name;
proxy.country = GeoIpNativeLite.lookup(proxy.ipAddress);
return proxy;
});
proxies = ProxyLists.filterProxies(proxies, options);
emitter.emit('data', proxies);
});
gettingProxies.on('error', _.bind(emitter.emit, emitter, 'error'));
gettingProxies.once('end', _.bind(emitter.emit, emitter, 'end'));
return emitter;
},
addSource: function(name, source) {
if (!_.isString(name) || name.length === 0) {
throw new Error('Invalid source name.');
}
if (this.sourceExists(name)) {
throw new Error('Source already exists: "' + name + '"');
}
if (!_.isObject(source) || _.isNull(source)) {
throw new Error('Expected "source" to be an object.');
}
if (!_.isFunction(source.getProxies)) {
throw new Error('Source missing required "getProxies" method.');
}
this._sources[name] = source;
},
sourceExists: function(name) {
return _.has(this._sources, name);
},
listSources: function(options) {
options || (options = {});
var sourcesWhiteList = options.sourcesWhiteList && arrayToHash(options.sourcesWhiteList);
var sourcesBlackList = options.sourcesBlackList && arrayToHash(options.sourcesBlackList);
// Get an array of source names filtered by the options.
var sourceNames = _.filter(_.keys(this._sources), function(name) {
if (sourcesWhiteList) {
return sourcesWhiteList[name];
}
if (sourcesBlackList) {
return !sourcesBlackList[name];
}
return true;
});
return _.map(sourceNames, function(name) {
var source = this._sources[name];
return {
name: name,
homeUrl: source.homeUrl || '',
requiredOptions: source.requiredOptions || {}
};
}, this);
},
filterProxies: function(proxies, options) {
options || (options = {});
var countriesTest;
var protocolsTest;
var anonymityLevelsTest;
if (options.countries) {
if (_.isArray(options.countries) || !_.isObject(options.countries)) {
throw new Error('Invalid option "countries": Object expected.');
}
countriesTest = options.countries;
}
if (options.protocols) {
protocolsTest = arrayToHash(options.protocols);
}
if (options.anonymityLevels) {
anonymityLevelsTest = arrayToHash(options.anonymityLevels);
}
return _.filter(proxies, function(proxy) {
if (countriesTest && !countriesTest[proxy.country]) {
return false;
}
if (anonymityLevelsTest && !anonymityLevelsTest[proxy.anonymityLevel]) {
return false;
}
if (protocolsTest) {
var hasAtLeastOnePassingProtocol = _.some(proxy.protocols, function(protocol) {
return protocolsTest[protocol];
});
if (!hasAtLeastOnePassingProtocol) {
return false;
}
}
return true;
});
},
prepareOptions: function(options) {
options = _.extend({}, this.defaultOptions, options || {});
if (_.isNull(options.countries)) {
// Use all countries.
options.countries = _.keys(this._countries);
}
if (_.isNull(options.protocols)) {
// Use all protocols.
options.protocols = _.values(this._protocols);
}
if (_.isNull(options.anonymityLevels)) {
// Use all anonymity levels.
options.anonymityLevels = _.values(this._anonymityLevels);
}
if (!_.isArray(options.countries) && !_.isObject(options.countries)) {
throw new Error('Invalid option "countries": Array or object expected.');
}
if (!_.isArray(options.protocols)) {
throw new Error('Invalid option "protocols": Array expected.');
}
if (!_.isArray(options.anonymityLevels)) {
throw new Error('Invalid option "anonymityLevels": Array expected.');
}
if (options.countries && _.isArray(options.countries)) {
options.countries = _.object(_.map(options.countries, function(code) {
return [code, this._countries[code]];
}, this));
}
return options;
},
isValidProxy: function(proxy, options) {
options = _.defaults(options || {}, {
validateIp: true
});
return !!proxy.ipAddress && (!options.validateIp || this.isValidIpAddress(proxy.ipAddress)) &&
!!proxy.port && this.isValidPort(proxy.port) &&
!!proxy.protocols && this.isValidProxyProtocols(proxy.protocols);
},
isValidPort: function(port) {
return _.isNumber(port) && parseInt(port).toString() === port.toString();
},
isValidProxyProtocols: function(protocols) {
return _.isArray(protocols) && protocols.length > 0 && _.every(protocols, function(protocol) {
return ProxyLists.isValidProxyProtocol(protocol);
});
},
isValidProxyProtocol: function(protocol) {
return _.contains(this._protocols, protocol);
},
isValidIpAddress: function(ipAddress) {
return net.isIP(ipAddress) !== 0;
}
};
var arrayToHash = function(array) {
return _.object(_.map(array, function(value) {
return [value, true];
}));
};