-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathbindings.js
444 lines (355 loc) · 10.4 KB
/
bindings.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
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
/**
* Sandcrawler Phantom Bothan Bindings
* ====================================
*
* Defines how phantom child processes should behave when controlled by
* a sandcrawler instance.
*/
var webpage = require('webpage'),
helpers = require('../src/helpers.js'),
extend = helpers.extend;
module.exports = function(parent, params) {
// Executing on scrape
parent.on('scrape', function(msg) {
var order = msg.body,
callId = msg.id;
// Order's lifespan
var lifespan = order.timeout || 5000;
// Creating webpage
var page = webpage.create();
// Applying precise page settings
page.settings = extend(order.page, page.settings);
// Checking headers for User-Agent
if (order.headers) {
var values = [],
names = Object.keys(order.headers).map(function(n) {
values.push(order.headers[n]);
return n.toLowerCase();
});
var idx = names.indexOf('user-agent');
if (~idx)
page.settings.userAgent = values[idx];
}
if (order.cookies)
order.cookies.forEach(function(cookie) {
phantom.addCookie(cookie);
});
/**
* Utilities
*/
// Fallback response object
var pageInformation = {
status: null,
response: {},
error: {},
isOpened: false
};
function injectArtoo() {
// Backup of local jQuery
page.evaluate(function() {
if (window.jQuery)
window.artooBackupJQuery = window.jQuery;
});
// Injecting ours
page.injectJs(params.paths.jquery);
// Cleaning up
page.evaluate(function() {
window.artooPhantomJQuery = window.jQuery.noConflict();
if (window.artooBackupJQuery) {
window.jQuery = window.artooBackupJQuery;
delete window.artooBackupJQuery;
}
});
// Artoo settings
page.evaluate(function(jsonSettings) {
var settings = document.createElement('div');
settings.setAttribute('id', 'artoo_injected_script');
settings.setAttribute('settings', jsonSettings);
document.documentElement.appendChild(settings);
}, JSON.stringify(order.artoo));
// Main script (this will eradicate our jQuery version from window)
page.injectJs(params.paths.artoo);
}
// Kill
function cleanup() {
// Cleaning timeout and interval
if (damocles)
clearTimeout(damocles);
if (sisyphus)
clearInterval(sisyphus);
// Deleting data
pageInformation = null;
// Shunting some callbacks
[
'onNavigationRequested',
'onResourceReceived',
'onResourceError',
'onUrlChanged',
'onCallback',
'onLoadFinished'
].forEach(function(n) {
page[n] = Function.prototype;
});
// Cleaning page to force garbage collection
page.evaluate(function() {
// Cleaning timeouts and intervals
var t = setTimeout(Function.prototype, 0),
i = setInterval(Function.prototype, 100);
while (t--) clearTimeout(t);
while (i--) clearInterval(i);
// Deleting current document
document.open();
document.close();
// Deleting every variables belonging to the global scope
Object.keys(window).forEach(function(k) {
delete window[k];
});
});
page.open('about:blank', function() {
// Closing page
page.close();
// Annihilating page
page = null;
// Cleaning order
order = null;
msg = null;
});
}
// Creating timeout
var damocles = setTimeout(cleanup, lifespan),
sisyphus;
/**
* Helpers
*/
// Get correct page content
function getContent() {
var h = pageInformation.response.headers || {};
if (/json/.test(h['content-type'])) {
try {
return JSON.parse(page.plainText);
}
catch (e) {
return page.content;
}
}
else {
return page.content;
}
}
// Wrapping response helper
function wrapFailure(reason) {
var res = {
fail: true,
url: page.url,
body: getContent(),
headers: pageInformation.response.headers,
status: pageInformation.response.status
};
if (reason)
res.reason = reason;
if (pageInformation.error)
res.error = pageInformation.error;
return res;
}
// Wrapping success helper
function wrapSuccess(result) {
return {
url: page.url,
body: getContent(),
headers: pageInformation.response.headers,
status: pageInformation.response.status,
error: result.error ? helpers.serializeError(result.error) : null,
data: result.data
};
}
// Wrapping data helper
function wrapData(o) {
return {
data: o,
callId: callId
};
}
/**
* Registering global page callbacks
*/
// On url changed, we track it
// TODO: track redirects
page.onUrlChanged = function(targetUrl) {
order.url = targetUrl;
};
// On resource received
page.onResourceReceived = function(response) {
// Is the resource matching the page's url?
if (pageInformation.isOpened || response.url !== order.url)
return;
// Formatting headers
if (response.headers) {
var headers = {};
response.headers.forEach(function(h) {
headers[h.name.toLowerCase()] = h.value;
});
response.headers = headers;
}
pageInformation.response = response;
};
// On resource error
page.onResourceError = function(error) {
if (error.url === order.url || !!~error.url.search(order.url))
pageInformation.error = error;
};
// On page callback
page.onCallback = function(msg) {
msg = msg || {};
// If the passphrase is wrong, we break
if (typeof msg !== 'object' || msg.passphrase !== 'detoo')
return;
// Body is now loaded
if (msg.head === 'documentReady' && page.onDocumentReady)
return page.onDocumentReady();
// Page is trying to close phantom
// NOTE: cleanup is async here to avoid page log generated by
// phantomjs pages teardown process.
if (msg.head === 'exit') {
cleanup();
return setTimeout(function() {
phantom.exit(msg.body || 0);
}, 0);
}
// Page is returning control
if (msg.head === 'done') {
// On retrieve data, we send back to parent
parent.replyTo(callId, wrapSuccess(msg.body));
// Closing
return cleanup();
}
};
// On body loaded
page.onDocumentReady = function() {
// Injecting necessary javascript
injectArtoo();
// If no scraper was supplied
if (!order.script)
return parent.replyTo(callId, wrapSuccess({data: null}));
// Evaluating scraper
if (order.synchronousScript) {
var data = page.evaluate(order.script);
// Replying to parent
parent.replyTo(callId, wrapSuccess({data: data}));
// Closing
return cleanup();
}
else {
page.evaluateAsync(order.script);
}
};
// On page console message
page.onConsoleMessage = function(message, lineNum, sourceId) {
// Sending back to parent
parent.send('page:log', wrapData({
message: message,
line: lineNum,
source: sourceId
}));
};
// On page error
page.onError = function(message, trace) {
// Sending back to parent
parent.send('page:error', wrapData({
message: message,
trace: trace
}));
};
// On page alert
page.onAlert = function(message) {
// Sending back to parent
parent.send('page:alert', wrapData({
message: message
}));
};
// On navigation
var firstTime = true;
page.onNavigationRequested = function(url, type, willNavigate, main) {
// We only want the main frame
if (!main)
return;
if (firstTime)
return (firstTime = false);
if (!willNavigate)
return;
// Page is no longer opened
pageInformation.isOpened = false;
pageInformation.status = null;
// Caching the callback
page.onLoadFinished = function(status) {
pageInformation.isOpened = true;
pageInformation.status = status;
};
parent.request(
// Notifying navigation
'page:navigation',
// Message body
wrapData({
to: url,
type: type
}),
// On answer
function(err, msg) {
if (err)
return;
// Setting new scraper
order.script = msg.body;
// Waiting for the page to open
// NOTE: dirty hack because of a phantomjs bug messing with the
// onLoadFinished callback.
sisyphus = setInterval(function() {
if (!pageInformation.isOpened)
return;
clearInterval(sisyphus);
onLoadFinished(pageInformation.status);
}, 30);
}
);
};
// When page load is finished
var onLoadFinished = function(status) {
// Page is now opened
pageInformation.isOpened = true;
pageInformation.status = status;
// Failing
if (status !== 'success') {
parent.replyTo(callId, wrapFailure('fail'));
return cleanup();
}
// Wrong status code
if (!pageInformation.response.status || pageInformation.response.status >= 400) {
parent.replyTo(callId, wrapFailure('status'));
return cleanup();
}
// Waiting for body to load
page.evaluateAsync(function() {
var interval = setInterval(function() {
if (document.readyState === 'complete' || document.readyState === 'interactive') {
clearInterval(interval);
window.callPhantom({
head: 'documentReady',
body: true,
passphrase: 'detoo'
});
}
}, 30);
});
};
/**
* Opening url
*/
var request = {
encoding: order.encoding || 'utf-8',
operation: order.method || 'GET'
};
if (order.headers)
request.headers = order.headers;
if (order.body)
request.data = order.body;
page.open(order.url, request, onLoadFinished);
});
};