-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathproxy.js
More file actions
277 lines (209 loc) · 6.15 KB
/
proxy.js
File metadata and controls
277 lines (209 loc) · 6.15 KB
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
// Total.js client for Proxy
// The MIT License
// Copyright 2017-2026 (c) Peter Širka <petersirka@gmail.com>
// Client implementation
(function() {
const BUFFER_INIT = Buffer.alloc(1);
BUFFER_INIT.writeUInt8(0);
const BUFFER_DATA = Buffer.alloc(1);
BUFFER_DATA.writeUInt8(1);
const BUFFER_END = Buffer.alloc(1);
BUFFER_END.writeUInt8(2);
const BUFFER_ERROR = Buffer.alloc(1);
BUFFER_END.writeUInt8(3);
const BUFFER_ABORT = Buffer.alloc(1);
BUFFER_END.writeUInt8(4);
const REG_ANSI = /\x1B\[[0-?]*[ -/]*[@-~]/g;
const Pending = {};
const EnabledColors = process.stdout.isTTY && process.stdout.hasColors();
function help() {
console.log('Proxy client arguments:');
console.log('client [WSS proxy server] [port or ip:port]');
}
function log() {
let arr = [new Date().format('yyyy-MM-dd HH:mm:ss')];
for (let index in arguments)
arr.push(arguments[index]);
console.log.apply(console, arr);
}
function connect(Source, Target, logger) {
let client = F.websocketclient();
client.options.type = 'binary';
client.connect(Target.replace(/^http/i, 'ws'));
client.on('open', function() {
logger && logger('[OK]', 'Proxy client successfully connected to ' + Target);
});
client.on('close', function() {
logger && logger('[NO]', 'Proxy client is disconnected.');
});
client.on('message', function(msg) {
let type = msg.readInt8(0);
let id = msg.readInt32BE(1);
let data = msg.slice(5);
let req = Pending[id];
switch (type) {
case 0: // init
let tmp = JSON.parse(data.toString('utf8'));
let opt = {};
opt.hostname = Source[0];
opt.port = Source[1];
opt.headers = tmp.headers;
opt.headers['x-proxy'] = 'Total.js';
opt.headers.host = Source[0] + ':' + Source[1];
opt.method = tmp.method;
opt.path = tmp.url;
logger && logger('[' + opt.method + ']',tmp.ip, opt.path);
req = Total.Http.request(opt);
req.ID = Buffer.alloc(4);
req.ID.writeUInt32BE(id);
Pending[id] = req;
req.on('error', function(err) {
delete Pending[id];
client.send(Buffer.concat([BUFFER_ERROR, req.ID, Buffer.from(err.toString(), 'utf8')]));
});
req.on('abort', function() {
delete Pending[id];
client.send(Buffer.concat([BUFFER_ABORT, req.ID]));
});
req.on('response', function(res) {
let obj = {};
obj.status = res.statusCode;
obj.headers = res.headers;
delete Pending[id];
res.req = req;
client.send(Buffer.concat([BUFFER_INIT, req.ID, Buffer.from(JSON.stringify(obj))]));
res.on('data', chunk => client.send(Buffer.concat([BUFFER_DATA, req.ID, chunk])));
res.on('error', function(err) {
delete Pending[id];
client.send(Buffer.concat([BUFFER_ERROR, req.ID, Buffer.from(err.toString(), 'utf8')]));
});
res.on('abort', function() {
delete Pending[id];
client.send(Buffer.concat([BUFFER_ABORT, req.ID]));
});
res.on('end', () => client.send(Buffer.concat([BUFFER_END, req.ID])));
});
break;
case 1: // data
req && req.write(data);
break;
case 2: // end
req && req.end();
break;
}
});
return client;
}
exports.client = function (proxyserver, port, logger = log) {
let Target = proxyserver;
let Source = port;
if (!Target || !Source) {
help();
return;
}
Source = Source.split(':');
if (!Source[1]) {
Source[1] = +Source[0];
Source[0] = '127.0.0.1';
}
return connect(Source, Target, logger);
};
})();
// Server implementation
(function() {
const BUFFER_INIT = Buffer.alloc(1);
BUFFER_INIT.writeUInt8(0);
const BUFFER_DATA = Buffer.alloc(1);
BUFFER_DATA.writeUInt8(1);
const BUFFER_END = Buffer.alloc(1);
BUFFER_END.writeUInt8(2);
var Messages = 0;
var Client = null;
var Pending = {};
var Logger = null;
function log() {
let arr = [new Date().format('yyyy-MM-dd HH:mm:ss')];
for (let index in arguments)
arr.push(arguments[index]);
console.log.apply(console, arr);
}
// Handles communication between the server and proxy client
function socket($) {
$.autodestroy();
$.on('open', function(client) {
if (Client) {
let err = 'Proxy client is already in use';
Logger && Logger('[OK]', err);
Client.close(4001, err);
} else {
Logger && Logger('[OK]', 'Proxy client is connected');
Client = client;
}
});
$.on('close', function(client) {
if (Client == client) {
Client = null;
Logger && Logger('[NO]', 'Proxy client is disconnected.');
}
});
$.on('message', function(client, msg) {
let id = msg.readInt32BE(1);
let type = msg.readInt8(0);
let data = msg.slice(5);
let ctrl = Pending[id];
switch (type) {
case 0: // init
let tmp = JSON.parse(data.toString('utf8'));
delete tmp.headers.connection;
delete tmp.headers['content-length'];
ctrl.res.writeHead(tmp.status, tmp.headers);
break;
case 1: // data
ctrl.res.write(data);
break;
case 2: // end
delete Pending[id];
ctrl.res.end();
break;
case 3: // error
delete Pending[id];
ctrl.res.end();
break;
case 4: // abort
delete Pending[id];
ctrl.res.end();
break;
}
});
}
// Handles communication between the client and server
function proxy(ctrl) {
if (!Client) {
ctrl.invalid('Not yet available.');
return;
}
var obj = {};
obj.headers = ctrl.req.headers;
obj.url = ctrl.req.url;
obj.method = ctrl.req.method;
obj.ip = ctrl.ip;
let buffer = Buffer.from(JSON.stringify(obj), 'utf8');
let id = Buffer.alloc(4);
let index = Messages++;
// For answer
Pending[index] = ctrl;
// Write request id
id.writeUInt32BE(index);
// Sent initial data
Client.send(Buffer.concat([BUFFER_INIT, id, buffer]));
// Send data
ctrl.req.on('data', chunk => Client.send(Buffer.concat([BUFFER_DATA, id, chunk])));
// Send empty buffer
ctrl.req.on('end', () => Client.send(Buffer.concat([BUFFER_END, id])));
}
exports.server = function(endpoint = '/', socketendpoint = '/', logger = log) {
PROXY(endpoint, proxy).check(ctrl => ctrl.method !== 'SOCKET');
ROUTE('SOCKET {0} @binary <100MB'.format(socketendpoint), socket);
Logger = logger;
};
})();