forked from alexscheelmeyer/node-phantom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
node-phantom.js
201 lines (190 loc) · 6.36 KB
/
node-phantom.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
//Released to the public domain.
var http=require('http');
var socketio=require('socket.io');
var child=require('child_process');
function callbackOrDummy(callback){
if(callback===undefined)callback=function(){};
return callback;
}
function unwrapArray(arr) {
return arr && arr.length == 1 ? arr[0] : arr
}
module.exports={
create:function(callback,options){
if(options===undefined)options={};
if(options.phantomPath===undefined)options.phantomPath='phantomjs';
if(options.parameters===undefined)options.parameters={};
function spawnPhantom(port,callback){
var args=[];
for(var parm in options.parameters) {
args.push('--' + parm + '=' + options.parameters[parm]);
}
args=args.concat([__dirname + '/bridge.js', port]);
var phantom=child.spawn(options.phantomPath,args);
phantom.stdout.on('data',function(data){
return console.log('phantom stdout: '+data);
});
phantom.stderr.on('data',function(data){
return console.warn('phantom stderr: '+data);
});
var exitCode=0;
phantom.on('exit',function(code){
exitCode=code;
});
setTimeout(function(){ //wait a bit to see if the spawning of phantomjs immediately fails due to bad path or similar
callback(exitCode!==0,phantom);
},100);
};
var server=http.createServer(function(request,response){
response.writeHead(200,{"Content-Type": "text/html"});
response.end('<html><head><script src="/socket.io/socket.io.js" type="text/javascript"></script><script type="text/javascript">\n\
window.onload=function(){\n\
var socket = new io.connect("http://" + window.location.hostname);\n\
socket.on("cmd", function(msg){\n\
alert(msg);\n\
});\n\
window.socket = socket;\n\
};\n\
</script></head><body></body></html>');
}).listen();
var io=socketio.listen(server,{'log level':1});
var port=server.address().port;
spawnPhantom(port,function(err,phantom){
if(err){
server.close();
callback(true);
return;
}
var pages={};
var cmds={};
var cmdid=0;
function request(socket,args,callback){
args.splice(1,0,cmdid);
// console.log('requesting:'+args);
socket.emit('cmd',JSON.stringify(args));
cmds[cmdid]={cb:callback};
cmdid++;
}
io.sockets.on('connection',function(socket){
socket.on('res',function(response){
// console.log(response);
var id=response[0];
var cmdId=response[1];
switch(response[2]){
case 'pageCreated':
var pageProxy={
open:function(url, callback){
if(callback === undefined){
request(socket, [id, 'pageOpen', url]);
}else{
request(socket, [id, 'pageOpenWithCallback', url], callback);
}
},
close:function(callback){
request(socket,[id,'pageClose'],callbackOrDummy(callback));
},
render:function(filename,callback){
request(socket,[id,'pageRender',filename],callbackOrDummy(callback));
},
renderBase64:function(extension,callback){
request(socket,[id,'pageRenderBase64',extension],callbackOrDummy(callback));
},
injectJs:function(url,callback){
request(socket,[id,'pageInjectJs',url],callbackOrDummy(callback));
},
includeJs:function(url,callback){
request(socket,[id,'pageIncludeJs',url],callbackOrDummy(callback));
},
sendEvent:function(event,x,y,callback){
request(socket,[id,'pageSendEvent',event,x,y],callbackOrDummy(callback));
},
uploadFile:function(selector,filename,callback){
request(socket,[id,'pageUploadFile',selector,filename],callbackOrDummy(callback));
},
evaluate:function(evaluator,callback){
request(socket,[id,'pageEvaluate',evaluator.toString()].concat(Array.prototype.slice.call(arguments,2)),callbackOrDummy(callback));
},
set:function(name,value,callback){
request(socket,[id,'pageSet',name,value],callbackOrDummy(callback));
},
get:function(name,callback){
request(socket,[id,'pageGet',name],callbackOrDummy(callback));
},
setFn: function(pageCallbackName, fn, callback) {
request(socket, [id, 'pageSetFn', pageCallbackName, fn.toString()], callbackOrDummy(callback));
}
};
pages[id] = pageProxy;
cmds[cmdId].cb(null,pageProxy);
delete cmds[cmdId];
break;
case 'phantomExited':
request(socket,[0,'exitAck']);
server.close();
io.set('client store expiration', 0);
cmds[cmdId].cb();
delete cmds[cmdId];
break;
case 'pageJsInjected':
case 'jsInjected':
cmds[cmdId].cb(JSON.parse(response[3])===true ? null : true);
delete cmds[cmdId];
break;
case 'pageOpened':
if(cmds[cmdId]!==undefined){ //if page is redirected, the pageopen event is called again - we do not want that currently.
if(cmds[cmdId].cb !== undefined){
cmds[cmdId].cb(null, response[3]);
}
delete cmds[cmdId];
}
break;
case 'pageRenderBase64Done':
cmds[cmdId].cb(null,response[3]);
delete cmds[cmdId];
break;
case 'pageGetDone':
case 'pageEvaluated':
cmds[cmdId].cb(null,JSON.parse(response[3]));
delete cmds[cmdId];
break;
case 'pageClosed':
delete pages[id]; // fallthru
case 'pageSetDone':
case 'pageJsIncluded':
case 'cookieAdded':
case 'pageRendered':
case 'pageEventSent':
case 'pageFileUploaded':
cmds[cmdId].cb(null);
delete cmds[cmdId];
break;
default:
console.error('got unrecognized response:'+response);
break;
}
});
socket.on('push', function(request) {
var id = request[0];
var cmd = request[1];
var callback = callbackOrDummy(pages[id] ? pages[id][cmd] : undefined);
callback(unwrapArray(request[2]));
});
var proxy={
createPage:function(callback){
request(socket,[0,'createPage'],callbackOrDummy(callback));
},
injectJs:function(filename,callback){
request(socket,[0,'injectJs',filename],callbackOrDummy(callback));
},
addCookie: function(cookie, callback){
request(socket,[0,'addCookie', cookie],callbackOrDummy(callback));
},
exit:function(callback){
request(socket,[0,'exit'],callbackOrDummy(callback));
}
};
callback(null,proxy);
});
});
}
};