forked from fastify/fastify-http-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
410 lines (354 loc) · 11.6 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
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
'use strict'
const From = require('@fastify/reply-from')
const { ServerResponse } = require('node:http')
const WebSocket = require('ws')
const { convertUrlToWebSocket } = require('./utils')
const fp = require('fastify-plugin')
const qs = require('fast-querystring')
const httpMethods = ['DELETE', 'GET', 'HEAD', 'PATCH', 'POST', 'PUT', 'OPTIONS']
const urlPattern = /^https?:\/\//
const kWs = Symbol('ws')
const kWsHead = Symbol('wsHead')
const kWsUpgradeListener = Symbol('wsUpgradeListener')
function liftErrorCode (code) {
/* istanbul ignore next */
if (typeof code !== 'number') {
// Sometimes "close" event emits with a non-numeric value
return 1011
} else if (code === 1004 || code === 1005 || code === 1006) {
// ws module forbid those error codes usage, lift to "application level" (4xxx)
return 3000 + code
} else {
return code
}
}
function closeWebSocket (socket, code, reason) {
if (socket.readyState === WebSocket.OPEN) {
socket.close(liftErrorCode(code), reason)
}
}
function waitConnection (socket, write) {
if (socket.readyState === WebSocket.CONNECTING) {
socket.once('open', write)
} else {
write()
}
}
function isExternalUrl (url) {
return urlPattern.test(url)
}
function noop () {}
function proxyWebSockets (source, target, onConnectVerify) {
function close (code, reason) {
closeWebSocket(source, code, reason)
closeWebSocket(target, code, reason)
}
source.on('message', (data, binary) => {
waitConnection(target, async () => {
if (onConnectVerify) {
const message = JSON.parse(data, binary);
if (message && message.type === 'connection_init') {
const payload = await onConnectVerify(message.payload);
if (payload) {
message.payload = payload;
target.send(JSON.stringify(message));
} else {
source.reject = true;
source.send(
JSON.stringify({
type: 'connection_ack',
}),
);
}
} else if (
message &&
message.type === 'subscribe' &&
source.reject === true
) {
source.send(
JSON.stringify({
type: 'error',
id: message.id,
payload: [{ message: 'Unauthorized' }],
}),
);
source.reject = false;
} else {
target.send(data, { binary });
}
} else {
target.send(data, { binary });
}
});
});
/* istanbul ignore next */
source.on('ping', data => waitConnection(target, () => target.ping(data)))
/* istanbul ignore next */
source.on('pong', data => waitConnection(target, () => target.pong(data)))
source.on('close', close)
/* istanbul ignore next */
source.on('error', error => close(1011, error.message))
/* istanbul ignore next */
source.on('unexpected-response', () => close(1011, 'unexpected response'))
// source WebSocket is already connected because it is created by ws server
target.on('message', (data, binary) => source.send(data, { binary }))
/* istanbul ignore next */
target.on('ping', data => source.ping(data))
/* istanbul ignore next */
target.on('pong', data => source.pong(data))
target.on('close', close)
/* istanbul ignore next */
target.on('error', error => close(1011, error.message))
/* istanbul ignore next */
target.on('unexpected-response', () => close(1011, 'unexpected response'))
}
function handleUpgrade (fastify, rawRequest, socket, head) {
// Save a reference to the socket and then dispatch the request through the normal fastify router so that it will invoke hooks and then eventually a route handler that might upgrade the socket.
rawRequest[kWs] = socket
rawRequest[kWsHead] = head
const rawResponse = new ServerResponse(rawRequest)
rawResponse.assignSocket(socket)
fastify.routing(rawRequest, rawResponse)
rawResponse.on('finish', () => {
socket.destroy()
})
}
class WebSocketProxy {
constructor(
fastify,
{
wsServerOptions,
wsClientOptions,
upstream,
wsUpstream,
replyOptions: { getUpstream } = {},
onConnectVerify,
}
) {
this.logger = fastify.log;
this.wsClientOptions = {
rewriteRequestHeaders: defaultWsHeadersRewrite,
headers: {},
...wsClientOptions,
};
this.upstream = convertUrlToWebSocket(upstream);
this.wsUpstream = wsUpstream ? convertUrlToWebSocket(wsUpstream) : "";
this.getUpstream = getUpstream;
this.onConnectVerify = onConnectVerify;
const wss = new WebSocket.Server({
noServer: true,
...wsServerOptions,
});
if (!fastify.server[kWsUpgradeListener]) {
fastify.server[kWsUpgradeListener] = (rawRequest, socket, head) =>
handleUpgrade(fastify, rawRequest, socket, head);
fastify.server.on("upgrade", fastify.server[kWsUpgradeListener]);
}
this.handleUpgrade = (request, dest, cb) => {
wss.handleUpgrade(
request.raw,
request.raw[kWs],
request.raw[kWsHead],
(socket) => {
this.handleConnection(socket, request, dest);
cb();
}
);
};
// To be able to close the HTTP server,
// all WebSocket clients need to be disconnected.
// Fastify is missing a pre-close event, or the ability to
// add a hook before the server.close call. We need to resort
// to monkeypatching for now.
{
const oldClose = fastify.server.close;
fastify.server.close = function (done) {
wss.close(() => {
oldClose.call(this, (err) => {
/* istanbul ignore next */
done && done(err);
});
});
for (const client of wss.clients) {
client.close();
}
};
}
/* istanbul ignore next */
wss.on("error", (err) => {
/* istanbul ignore next */
this.logger.error(err);
});
this.wss = wss;
this.prefixList = [];
}
findUpstream(request, dest) {
const { search, pathname } = new URL(request.url, "ws://127.0.0.1");
if (typeof this.wsUpstream === "string" && this.wsUpstream !== "") {
const target = new URL(this.wsUpstream);
target.search = search;
target.pathname = target.pathname === "/" ? pathname : target.pathname;
return target;
}
if (typeof this.upstream === "string" && this.upstream !== "") {
const target = new URL(dest, this.upstream);
target.search = search;
return target;
}
const upstream = this.getUpstream(request, "");
const target = new URL(dest, upstream);
/* istanbul ignore next */
target.protocol = upstream.indexOf("http:") === 0 ? "ws:" : "wss";
target.search = search;
return target;
}
handleConnection(source, request, dest) {
const url = this.findUpstream(request, dest);
const queryString = getQueryString(
url.search,
request.url,
this.wsClientOptions,
request
);
url.search = queryString;
const rewriteRequestHeaders = this.wsClientOptions.rewriteRequestHeaders;
const headersToRewrite = this.wsClientOptions.headers;
const subprotocols = [];
if (source.protocol) {
subprotocols.push(source.protocol);
}
const headers = rewriteRequestHeaders(headersToRewrite, request);
const optionsWs = { ...this.wsClientOptions, headers };
const target = new WebSocket(url, subprotocols, optionsWs);
this.logger.debug({ url: url.href }, "proxy websocket");
proxyWebSockets(source, target, this.onConnectVerify);
}
}
function getQueryString (search, reqUrl, opts, request) {
if (typeof opts.queryString === 'function') {
return '?' + opts.queryString(search, reqUrl, request)
}
if (opts.queryString) {
return '?' + qs.stringify(opts.queryString)
}
if (search.length > 0) {
return search
}
return ''
}
function defaultWsHeadersRewrite (headers, request) {
if (request.headers.cookie) {
return { ...headers, cookie: request.headers.cookie }
}
return { ...headers }
}
function generateRewritePrefix (prefix, opts) {
let rewritePrefix = opts.rewritePrefix || (opts.upstream ? new URL(opts.upstream).pathname : '/')
if (!prefix.endsWith('/') && rewritePrefix.endsWith('/')) {
rewritePrefix = rewritePrefix.slice(0, -1)
}
return rewritePrefix
}
async function fastifyHttpProxy (fastify, opts) {
if (!opts.upstream && !(opts.upstream === '' && opts.replyOptions && typeof opts.replyOptions.getUpstream === 'function')) {
throw new Error('upstream must be specified')
}
const preHandler = opts.preHandler || opts.beforeHandler
const rewritePrefix = generateRewritePrefix(fastify.prefix, opts)
const fromOpts = Object.assign({}, opts)
fromOpts.base = opts.upstream
fromOpts.prefix = undefined
const internalRewriteLocationHeader = opts.internalRewriteLocationHeader ?? true
const oldRewriteHeaders = (opts.replyOptions || {}).rewriteHeaders
const replyOpts = Object.assign({}, opts.replyOptions, {
rewriteHeaders
})
fromOpts.rewriteHeaders = rewriteHeaders
fastify.register(From, fromOpts)
if (opts.preValidation) {
fastify.addHook('preValidation', opts.preValidation)
} else if (opts.proxyPayloads !== false) {
fastify.addContentTypeParser('application/json', bodyParser)
fastify.addContentTypeParser('*', bodyParser)
}
function rewriteHeaders (headers, req) {
const location = headers.location
if (location && !isExternalUrl(location) && internalRewriteLocationHeader) {
headers.location = location.replace(rewritePrefix, fastify.prefix)
}
if (oldRewriteHeaders) {
headers = oldRewriteHeaders(headers, req)
}
return headers
}
function bodyParser (req, payload, done) {
done(null, payload)
}
fastify.route({
url: '/',
method: opts.httpMethods || httpMethods,
preHandler,
config: opts.config || {},
constraints: opts.constraints || {},
handler
})
fastify.route({
url: '/*',
method: opts.httpMethods || httpMethods,
preHandler,
config: opts.config || {},
constraints: opts.constraints || {},
handler
})
let wsProxy
if (opts.websocket) {
wsProxy = new WebSocketProxy(fastify, opts)
}
function extractUrlComponents (urlString) {
const [path, queryString] = urlString.split('?', 2)
const components = {
path,
queryParams: null
}
if (queryString) {
components.queryParams = qs.parse(queryString)
}
return components
}
function handler (request, reply) {
const { path, queryParams } = extractUrlComponents(request.url)
let dest = path
if (this.prefix.includes(':')) {
const requestedPathElements = path.split('/')
const prefixPathWithVariables = this.prefix.split('/').map((_, index) => requestedPathElements[index]).join('/')
let rewritePrefixWithVariables = rewritePrefix
for (const [name, value] of Object.entries(request.params)) {
rewritePrefixWithVariables = rewritePrefixWithVariables.replace(`:${name}`, value)
}
dest = dest.replace(prefixPathWithVariables, rewritePrefixWithVariables)
if (queryParams) {
dest += `?${qs.stringify(queryParams)}`
}
} else {
dest = dest.replace(this.prefix, rewritePrefix)
}
if (request.raw[kWs]) {
reply.hijack()
try {
wsProxy.handleUpgrade(request, dest || '/', noop)
} catch (err) {
/* istanbul ignore next */
request.log.warn({ err }, 'websocket proxy error')
}
return
}
reply.from(dest || '/', replyOpts)
}
}
module.exports = fp(fastifyHttpProxy, {
fastify: '4.x',
name: '@fastify/http-proxy',
encapsulate: true
})
module.exports.default = fastifyHttpProxy
module.exports.fastifyHttpProxy = fastifyHttpProxy