-
Notifications
You must be signed in to change notification settings - Fork 3
/
ws2http.js
72 lines (59 loc) · 1.83 KB
/
ws2http.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
// ws2http
// WebSocketでリクエストを受け、HttpPorxyに送信する。
// HttpPorxyからの応答をWebSocketで送信する
// 例外が発生してもサービスを停止しないようにする
process.on('uncaughtException', function(err) {
console.log(err.stack);
});
var app = require('http').createServer(handler),
io = require('socket.io')
.listen(app), fs = require('fs');
var net = require('net');
app.listen(8123);
function handler(req, res) {
fs.readFile(__dirname + '/index.html', function(err, data) {
if (err) {
res.writeHead(500);
return res.end('Error loading index.html');
}
res.writeHead(200);
res.end(data);
});
}
io.sockets.on('connection', function(socket) {
var isProxyClose = true;
// HTTP Proxyサーバへ接続する。
var proxy = doProxyProc(socket, isProxyClose);
});
function doProxyProc(wsclient, isProxyClose) {
var proxy = "";
console.log('server connected');
wsclient.on('wstohttp', function(data) {
// WebSocketでデータを受けたらHttpProxyに接続する
proxy = net.createConnection(8080, '127.0.0.1', function() {
console.log("from client : " + data);
// base64デコードしてproxyサーバに送る
var a = new Buffer(data['httpdata'], 'base64');
proxy.write(a);
proxy.on('close', function() {
console.log("proxy close.")
wsclient.emit("httpend","end");
});
proxy.on('data', function(data) {
// WebSocketでHttpProxyからの応答をBase64エンコードして返す。
var a = new Buffer(data);
wsclient.emit('httptows', {httpdata:a.toString('base64')});
console.log('from server : ' + a.toString('base64'));
});
proxy.on('end', function() {
console.log('server disconnected');
wsclient.emit('httpend', 'end');
//socket.end();
});
});
});
wsclient.on('end', function() {
console.log('client disconnected');
});
return proxy;
}