forked from villadora/express-http-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
344 lines (268 loc) · 8.33 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
'use strict';
var assert = require('assert');
var url = require('url');
var http = require('http');
var https = require('https');
var getRawBody = require('raw-body');
var zlib = require('zlib');
function unset(val) {
return (typeof val === 'undefined' || val === '' || val === null);
}
module.exports = function proxy(host, options) {
assert(host, 'Host should not be empty');
options = options || {};
var parsedHost;
/**
* Function :: intercept(targetResponse, data, res, req, function(err, json, sent));
*/
var intercept = options.intercept;
var decorateRequest = options.decorateRequest;
var forwardPath = options.forwardPath || defaultForwardPath;
var resolveProxyPathAsync = options.forwardPathAsync || defaultForwardPathAsync(forwardPath);
var filter = options.filter || defaultFilter;
var limit = options.limit || '1mb';
var preserveReqSession = options.preserveReqSession;
var memoizeHost = unset(options.memoizeHost) ? true : options.memoizeHost;
return function handleProxy(req, res, next) {
if (!filter(req, res)) { return next(); }
var resolvePath = resolveProxyPathAsync(req, res);
var parseBody = maybeParseBody(req, limit);
var prepareRequest = Promise.all([resolvePath, parseBody]);
prepareRequest.then(function(results) {
var path = results[0];
var bodyContent = results[1];
sendProxyRequest(req, res, next, path, bodyContent);
});
};
function sendProxyRequest(req, res, next, path, bodyContent) {
parsedHost = (memoizeHost && parsedHost) ? parsedHost : parseHost(host, req, options);
var reqOpt = {
hostname: parsedHost.host,
port: options.port || parsedHost.port,
headers: reqHeaders(req, options),
method: req.method,
path: path,
bodyContent: bodyContent,
params: req.params,
};
if (preserveReqSession) {
reqOpt.session = req.session;
}
if (decorateRequest) {
reqOpt = decorateRequest(reqOpt, req) || reqOpt;
}
bodyContent = reqOpt.bodyContent;
delete reqOpt.bodyContent;
delete reqOpt.params;
bodyContent = options.reqAsBuffer ?
asBuffer(bodyContent, options) :
asBufferOrString(bodyContent);
if (reqOpt.method !== 'GET' && reqOpt.headers['transfer-encoding'] !== 'chunked') {
reqOpt.headers['content-length'] = getContentLength(bodyContent);
}
if (bodyEncoding(options)) {
reqOpt.headers['Accept-Charset'] = bodyEncoding(options);
}
function postIntercept(res, next, rspData) {
return function(err, rspd, sent) {
if (err) {
return next(err);
}
rspd = asBuffer(rspd, options);
rspd = maybeZipResponse(rspd, res);
if (!Buffer.isBuffer(rspd)) {
next(new Error('intercept should return string or' +
'buffer as data'));
}
if (!res.headersSent) {
res.set('content-length', rspd.length);
} else if (rspd.length !== rspData.length) {
var error = '"Content-Length" is already sent,' +
'the length of response data can not be changed';
next(new Error(error));
}
if (!sent) {
res.send(rspd);
}
};
}
var proxyTargetRequest = parsedHost.module.request(reqOpt, function(rsp) {
var chunks = [];
rsp.on('data', function(chunk) {
chunks.push(chunk);
});
rsp.on('end', function() {
var rspData = Buffer.concat(chunks, chunkLength(chunks));
if (intercept) {
rspData = maybeUnzipResponse(rspData, res);
var callback = postIntercept(res, next, rspData);
intercept(rsp, rspData, req, res, callback);
} else {
// see issue https://github.com/villadora/express-http-proxy/issues/104
// Not sure how to automate tests on this line, so be careful when changing.
if (!res.headersSent) {
res.send(rspData);
}
}
});
rsp.on('error', function(err) {
next(err);
});
if (!res.headersSent) {
res.status(rsp.statusCode);
Object.keys(rsp.headers)
.filter(function(item) { return item !== 'transfer-encoding'; })
.forEach(function(item) {
res.set(item, rsp.headers[item]);
});
}
});
proxyTargetRequest.on('socket', function(socket) {
if (options.timeout) {
socket.setTimeout(options.timeout, function() {
proxyTargetRequest.abort();
});
}
});
proxyTargetRequest.on('error', function(err) {
if (err.code === 'ECONNRESET') {
res.setHeader('X-Timout-Reason',
'express-http-proxy timed out your request after ' +
options.timeout + 'ms.');
res.writeHead(504, {'Content-Type': 'text/plain'});
res.end();
} else {
next(err);
}
});
if (bodyContent.length) {
proxyTargetRequest.write(bodyContent);
}
proxyTargetRequest.end();
req.on('aborted', function() {
proxyTargetRequest.abort();
});
}
};
function extend(obj, source, skips) {
if (!source) {
return obj;
}
for (var prop in source) {
if (!skips || skips.indexOf(prop) === -1) {
obj[prop] = source[prop];
}
}
return obj;
}
function parseHost(host, req, options) {
host = (typeof host === 'function') ? host(req) : host.toString();
if (!host) {
return new Error('Empty host parameter');
}
if (!/http(s)?:\/\//.test(host)) {
host = 'http://' + host;
}
var parsed = url.parse(host);
if (!parsed.hostname) {
return new Error('Unable to parse hostname, possibly missing protocol://?');
}
var ishttps = options.https || parsed.protocol === 'https:';
return {
host: parsed.hostname,
port: parsed.port || (ishttps ? 443 : 80),
module: ishttps ? https : http,
};
}
function reqHeaders(req, options) {
var headers = options.headers || {};
var skipHdrs = [ 'connection', 'content-length' ];
if (!options.preserveHostHdr) {
skipHdrs.push('host');
}
var hds = extend(headers, req.headers, skipHdrs);
hds.connection = 'close';
return hds;
}
function defaultFilter() {
// No-op version of filter. Allows everything!
return true;
}
function defaultForwardPath(req) {
return url.parse(req.url).path;
}
function bodyEncoding(options) {
/* For reqBodyEncoding, these is a meaningful difference between null and
* undefined. null should be passed forward as the value of reqBodyEncoding,
* and undefined should result in utf-8.
*/
return options.reqBodyEncoding !== undefined ? options.reqBodyEncoding: 'utf-8';
}
function chunkLength(chunks) {
return chunks.reduce(function(len, buf) {
return len + buf.length;
}, 0);
}
function defaultForwardPathAsync(forwardPath) {
return function(req, res) {
return new Promise(function(resolve) {
resolve(forwardPath(req, res));
});
};
}
function asBuffer(body, options) {
var ret;
if (Buffer.isBuffer(body)) {
ret = body;
} else if (typeof body === 'object') {
ret = new Buffer(JSON.stringify(body), bodyEncoding(options));
} else if (typeof body === 'string') {
ret = new Buffer(body, bodyEncoding(options));
}
return ret;
}
function asBufferOrString(body) {
var ret;
if (Buffer.isBuffer(body)) {
ret = body;
} else if (typeof body === 'object') {
ret = JSON.stringify(body);
} else if (typeof body === 'string') {
ret = body;
}
return ret;
}
function getContentLength(body) {
var result;
if (Buffer.isBuffer(body)) { // Buffer
result = body.length;
} else if (typeof body === 'string') {
result = Buffer.byteLength(body);
}
return result;
}
function isResGzipped(res) {
return res._headers['content-encoding'] === 'gzip';
}
function zipOrUnzip(method) {
return function(rspData, res) {
return (isResGzipped(res)) ? zlib[method](rspData) : rspData;
};
}
function maybeParseBody(req, limit) {
var promise;
if (req.body) {
promise = new Promise(function(resolve) {
resolve(req.body);
});
} else {
// Returns a promise if no callback specified and global Promise exists.
promise = getRawBody(req, {
length: req.headers['content-length'] ? req.headers['content-length'] : 0,
limit: limit,
});
}
return promise;
}
var maybeUnzipResponse = zipOrUnzip('gunzipSync');
var maybeZipResponse = zipOrUnzip('gzipSync');