-
Notifications
You must be signed in to change notification settings - Fork 1
/
server.ts
234 lines (226 loc) · 7.38 KB
/
server.ts
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
import { link, makeChan, makeChanStream, makeWebSocket } from "./channel.ts";
import { CLIENT_VERSION_QUERY_STRING } from "./client.ts";
import { handleClientMessage } from "./handlers.server.ts";
import type {
ClientMessage,
ServerConnectionState,
ServerMessage,
} from "./messages.ts";
import { dataViewerSerializer, jsonSerializer } from "./serializers.ts";
/**
* Ensures that the given chunk is in the form of a Uint8Array.
* If it's not already an array, it converts the provided object into a Uint8Array.
* @param {Uint8Array | Record<string, Uint8Array[number]>} chunk - The input chunk, which can be either a Uint8Array or an object.
* @returns {Uint8Array} The chunk converted into a Uint8Array.
*/
export const ensureChunked = (
chunk: Uint8Array | Record<string, Uint8Array[number]> & { length: number },
): Uint8Array => {
if (Array.isArray(chunk)) {
return chunk as Uint8Array;
}
(chunk as { length: number }).length = Object.keys(chunk).length;
const arr = Uint8Array.from(
chunk,
);
return arr;
};
const serverStates: Record<string, ServerConnectionState> = {};
const hostToClientId: Record<string, string> = {};
/**
* Represents options for configuring the server.
* @typedef {Object} ServerOptions
* @property {number} port - The port number where the server will listen for connections.
*/
export interface ServeOptions extends HandlerOptions {
port?: number;
}
/**
* Represents options for configuring the server handler.
* @typedef {Object} HandlerOptions
* @property {string[]} apiKeys - An array of API keys for authentication.
* @property {string} connectPath - A path for connecting to the server.
*/
export interface HandlerOptions {
apiKeys: string[];
connectPath?: string;
}
/**
* Starts the Warp server.
* @param {ServeOptions} [options] - Optional configurations for the server.
* @returns {Deno.HttpServer<Deno.NetAddr>} An instance of Deno HTTP server.
*/
export const serve = (options: ServeOptions): Deno.HttpServer<Deno.NetAddr> => {
const port = options?.port ?? 8000;
return Deno.serve({
handler: serveHandler(options),
port,
});
};
const CONNECTED_HOSTS_PATH = "/_hosts";
/**
* Creates a handler function for serving requests, with support for WebSocket connections
* and forwarding requests to registered domains.
*
* @param {HandlerOptions} [options] - Optional configuration for the handler.
* @param {string[]} [options.apiKeys] - An array of API keys used for authentication.
* @param {string} [options.connectPath] - The path for WebSocket connection upgrades.
* @returns {(request: Request) => Response | Promise<Response>} - The request handler function.
*/
export const serveHandler = (
options: HandlerOptions,
): (request: Request) => Response | Promise<Response> => {
const apiKeys = options.apiKeys; // array of api keys (random strings)
const connectPath = options?.connectPath ?? "/_connect";
return async (req) => {
const url = new URL(req.url);
if (url.pathname === CONNECTED_HOSTS_PATH) {
return new Response(JSON.stringify(hostToClientId), {
headers: {
"content-type": "application/json",
},
});
}
if (url.pathname === connectPath) {
const { socket, response } = Deno.upgradeWebSocket(req);
const clientVersion = url.searchParams.get(CLIENT_VERSION_QUERY_STRING);
const chPromise = clientVersion === null
? makeWebSocket<ServerMessage, ClientMessage, string>(
socket,
jsonSerializer(),
)
: makeWebSocket<ServerMessage, ClientMessage, ArrayBuffer>(
socket,
dataViewerSerializer(),
);
(async () => {
const ch = await chPromise;
const clientId = crypto.randomUUID();
const hosts: string[] = [];
const state: ServerConnectionState = {
clientId,
socket,
ch,
controller: {
link: (host) => {
hosts.push(host);
hostToClientId[host] = clientId;
},
},
ongoingRequests: {},
apiKeys,
};
serverStates[state.clientId] = state;
try {
for await (const message of ch.in.recv(req.signal)) {
await handleClientMessage(state, message);
}
} catch (_err) {
// ignore
} finally {
delete serverStates[clientId];
for (const host of hosts) {
if (hostToClientId[host] === clientId) {
delete hostToClientId[host];
}
}
}
})();
return response;
}
const host = req.headers.get("host");
if (host && host in hostToClientId) {
const serverState = serverStates[hostToClientId[host]];
if (!serverState) {
return new Response(
"No registration for domain and/or remote service not available",
{ status: 503 },
);
}
const { ch, ongoingRequests } = serverState;
const messageId = crypto.randomUUID();
const hasBody = !!req.body;
const url = new URL(req.url);
const requestForward: ServerMessage = {
type: "request-start",
domain: host,
id: messageId,
method: req.method,
hasBody,
url: (url.pathname + url.search),
headers: [...req.headers.entries()].reduce((acc, [key, value]) => {
acc[key] = value;
return acc;
}, {} as Record<string, string>),
};
// Create a writable stream using TransformStream
const responseObject = Promise.withResolvers<Response>();
ongoingRequests[messageId] = {
id: messageId,
requestObject: req,
responseObject,
responseBodyChan: makeChan(),
};
try {
await ch.out.send(requestForward);
const dataChan = req.body ? makeChanStream(req.body) : undefined;
const linked = link(ch.out.signal, req.signal);
req.signal.addEventListener("abort", () => {
if (!ch.out.signal.aborted) {
ch.out.send({
type: "request-aborted",
id: messageId,
}).catch(() => {});
}
});
(async () => {
try {
for await (const chunk of dataChan?.recv(linked) ?? []) {
await ch.out.send({
type: "request-data",
id: messageId,
chunk,
});
}
if (linked.aborted) {
return;
}
await ch.out.send({
type: "request-end",
id: messageId,
});
} catch (err) {
responseObject.resolve(
new Response("Error sending request to remote client", {
status: 503,
}),
);
if (linked.aborted) {
return;
}
console.log(
`unexpected error when sending request`,
err,
req,
messageId,
);
}
})();
return responseObject.promise;
} catch (err) {
console.error(
new Date(),
"Error sending request to remote client",
err,
);
return new Response("Error sending request to remote client", {
status: 503,
});
}
}
return new Response(
"No registration for domain and/or remote service not available",
{ status: 503 },
);
};
};