forked from louislam/demo-kuma
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpool.ts
More file actions
291 lines (236 loc) · 7.84 KB
/
pool.ts
File metadata and controls
291 lines (236 loc) · 7.84 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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
import childProcessAsync from "promisify-child-process";
import { sleep } from "./util";
import crypto from "crypto";
import {
sessionTime,
sessionIdleTimeout,
stackPrefix,
startTimeout,
servicePort,
healthPath,
dockerNetwork,
serviceName,
} from "./config";
interface SessionCredentials {
username: string;
password: string;
}
interface SessionInfo {
baseURL: string;
endSessionTime: number;
credentials: SessionCredentials;
timeout: NodeJS.Timeout;
idleTimeout: NodeJS.Timeout;
}
export class Pool {
/**
* sessionList[sessionID] = session metadata
*/
sessionList: Record<string, SessionInfo> = {};
async startInstance() {
let sessionID : string = "";
while (true) {
sessionID = crypto.randomUUID().substring(0, 8);
if (this.sessionList[sessionID] === undefined) {
break;
}
}
let timeout : NodeJS.Timeout;
let idleTimeout : NodeJS.Timeout;
let credentials = this.generateCredentials(sessionID);
console.log(`[${sessionID}] Start a session`);
try {
await this.runDockerCompose(sessionID, [
"up",
"-d",
]);
let startStackTime = Date.now();
let baseURL = "";
// Wait until the service is opened
while (true) {
try {
let ip = await this.getServiceIP(sessionID);
baseURL = `http://${ip}:${servicePort}`;
let entryURL = baseURL + healthPath;
console.log("Checking entry: " + entryURL);
let res = await fetch(entryURL);
await res.text();
if (res.status === 200) {
break;
}
} catch (e) {
}
await sleep(2000);
if (Date.now() - startStackTime > startTimeout * 1000) {
throw new Error("Start instance timeout");
}
}
await this.bootstrapArcaneInstance(baseURL, credentials);
let endSessionTime = Date.now() + sessionTime * 1000;
// Timer for closing the session
timeout = setTimeout(async () => {
console.log(`[${sessionID}] Time's up`);
await this.stopInstance(sessionID);
}, (sessionTime) * 1000);
idleTimeout = this.createIdleTimeout(sessionID);
this.sessionList[sessionID] = {
baseURL,
endSessionTime,
credentials,
timeout,
idleTimeout,
};
console.log(`[${sessionID}] Session started`);
return {
sessionID,
endSessionTime,
credentials,
};
} catch (error) {
await this.stopComposeProject(sessionID);
throw error;
}
}
async stopInstance(sessionID : string) {
let session = this.sessionList[sessionID];
if (session?.timeout) {
clearTimeout(session.timeout);
}
if (session?.idleTimeout) {
clearTimeout(session.idleTimeout);
}
await this.stopComposeProject(sessionID);
delete this.sessionList[sessionID];
}
getServiceURL(sessionID : string) : string | undefined {
return this.sessionList[sessionID]?.baseURL;
}
getSession(sessionID : string) {
return this.sessionList[sessionID];
}
touchSession(sessionID : string) {
let session = this.sessionList[sessionID];
if (!session) {
return false;
}
clearTimeout(session.idleTimeout);
session.idleTimeout = this.createIdleTimeout(sessionID);
return true;
}
async getServiceIP(sessionID : string) : Promise<string> {
let response = await childProcessAsync.spawn("docker", [
"inspect",
`${stackPrefix}-${sessionID}-${serviceName}-1`,
], {
encoding: "utf-8",
});
if (typeof response.stdout !== "string") {
throw new Error("No output");
}
let array = JSON.parse(response.stdout);
if (!Array.isArray(array)) {
throw new Error("Not an array");
}
if (array.length === 0) {
throw new Error("Array is empty");
}
let obj = array[0];
// Check if the object is valid
if (!obj || typeof obj !== "object") {
throw new Error("Not an object");
}
let networkSettings = obj.NetworkSettings;
if (!networkSettings) {
throw new Error("No network settings");
}
let networks = obj.NetworkSettings.Networks;
if (!networks) {
throw new Error("No networks");
}
// Find the target network
let network = networks[dockerNetwork];
if (!network) {
throw new Error("Network not found");
}
let ip = network.IPAddress;
if (!ip) {
throw new Error("IP not found");
}
return ip;
}
async clearInstance() {
let result = await childProcessAsync.spawn("docker", [
"compose",
"ls",
"--format", "json",
], {
encoding: "utf-8",
});
if (typeof result.stdout === "string") {
let list = JSON.parse(result.stdout);
for (let stack of list) {
if (stack.Name?.startsWith(stackPrefix + "-")) {
console.log(`Clearing ${stack.Name}`);
let sessionID = stack.Name.replace(`${stackPrefix}-`, "");
let result = await this.stopComposeProject(sessionID);
console.log(result.stdout, result.stderr);
}
}
}
this.sessionList = {};
}
private generateCredentials(sessionID : string) : SessionCredentials {
return {
username: `demo-${sessionID}-${crypto.randomBytes(2).toString("hex")}`,
password: `arc-${crypto.randomBytes(9).toString("base64url")}`,
};
}
private async bootstrapArcaneInstance(baseURL : string, credentials : SessionCredentials) {
await childProcessAsync.spawn("node", [
"./scripts/bootstrap-arcane-instance.mjs",
baseURL,
credentials.username,
credentials.password,
], {
encoding: "utf-8",
});
}
private async runDockerCompose(sessionID : string, args : string[]) {
if (!process.env.ENCRYPTION_KEY || !process.env.JWT_SECRET) {
throw new Error("ENCRYPTION_KEY and JWT_SECRET must be set");
}
return childProcessAsync.spawn("docker", [
"compose",
"--file", "compose-demo.yaml",
"-p", `${stackPrefix}-${sessionID}`,
...args,
], {
encoding: "utf-8",
env: {
...process.env,
DOCKER_NETWORK_NAME: dockerNetwork,
},
});
}
private async stopComposeProject(sessionID : string) {
try {
return await this.runDockerCompose(sessionID, [
"down",
"--volumes",
"--remove-orphans",
]);
} catch (error) {
console.warn(`[${sessionID}] Failed to stop compose project`, error);
return {
stdout: "",
stderr: "",
};
}
}
private createIdleTimeout(sessionID : string) {
return setTimeout(async () => {
console.log(`[${sessionID}] Idle timeout reached`);
await this.stopInstance(sessionID);
}, sessionIdleTimeout * 1000);
}
}