-
Notifications
You must be signed in to change notification settings - Fork 529
/
Copy pathsandboxApi.ts
416 lines (363 loc) · 9.68 KB
/
sandboxApi.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
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
411
412
413
414
415
416
import { compareVersions } from 'compare-versions'
import { ApiClient, components, handleApiError } from '../api'
import { ConnectionConfig, ConnectionOpts } from '../connectionConfig'
import { NotFoundError, TemplateError } from '../errors'
/**
* Options for request to the Sandbox API.
*/
export interface SandboxApiOpts
extends Partial<
Pick<ConnectionOpts, 'apiKey' | 'debug' | 'domain' | 'requestTimeoutMs'>
> { }
export interface SandboxListOpts extends SandboxApiOpts {
/**
* Filter the list of sandboxes by metadata, e.g. `{"key": "value"}`, if there are multiple filters they are combined with AND.
*/
filters?: Record<string, string>
/**
* Filter the list of sandboxes by state.
*/
state?: Array<'running' | 'paused'> | undefined
/**
* Number of sandboxes to return.
*/
limit?: number
/**
* Token to the next page.
*/
nextToken?: string
}
/**
* Information about a sandbox.
*/
export interface SandboxInfo {
/**
* Sandbox ID.
*/
sandboxId: string
/**
* Template ID.
*/
templateId: string
/**
* Template name.
*/
name?: string
/**
* Saved sandbox metadata.
*/
metadata: Record<string, string>
/**
* Sandbox start time.
*/
startedAt: Date
/**
* Sandbox state.
*/
state: 'running' | 'paused'
}
export class SandboxApi {
protected constructor() { }
/**
* Kill the sandbox specified by sandbox ID.
*
* @param sandboxId sandbox ID.
* @param opts connection options.
*
* @returns `true` if the sandbox was found and killed, `false` otherwise.
*/
static async kill(
sandboxId: string,
opts?: SandboxApiOpts
): Promise<boolean> {
const config = new ConnectionConfig(opts)
const client = new ApiClient(config)
const res = await client.api.DELETE('/sandboxes/{sandboxID}', {
params: {
path: {
sandboxID: sandboxId,
},
},
signal: config.getSignal(opts?.requestTimeoutMs),
})
if (res.error?.code === 404) {
return false
}
const err = handleApiError(res)
if (err) {
throw err
}
return true
}
/**
* List all running sandboxes.
*
* @param opts connection options.
*
* @returns list of running sandboxes.
*/
static async list(opts: SandboxListOpts = {}): Promise<{
sandboxes: SandboxInfo[],
hasMoreItems: boolean,
nextToken: string | undefined,
iterator: AsyncGenerator<SandboxInfo>
}> {
const { filters, state, limit, nextToken, requestTimeoutMs } = opts
const config = new ConnectionConfig({ requestTimeoutMs })
const client = new ApiClient(config)
let query = undefined
if (filters) {
const encodedPairs: Record<string, string> = Object.fromEntries(
Object.entries(filters).map(([key, value]) => [
encodeURIComponent(key),
encodeURIComponent(value),
])
)
query = new URLSearchParams(encodedPairs).toString()
}
const res = await client.api.GET('/sandboxes', {
params: {
query: {
query,
state,
limit,
nextToken,
},
},
signal: config.getSignal(requestTimeoutMs),
})
const err = handleApiError(res)
if (err) {
throw err
}
const nextPageToken = res.response.headers.get('x-next-token') || undefined
const hasMoreItems = !!nextPageToken
const sandboxes = (res.data ?? []).map(sandbox => ({
sandboxId: this.getSandboxId({
sandboxId: sandbox.sandboxID,
clientId: sandbox.clientID,
}),
templateId: sandbox.templateID,
...(sandbox.alias && { name: sandbox.alias }),
metadata: sandbox.metadata ?? {},
startedAt: new Date(sandbox.startedAt),
state: sandbox.state,
}))
return {
sandboxes,
hasMoreItems,
nextToken: nextPageToken,
iterator: this.listIterator({ limit, nextToken: nextPageToken, filters, state, requestTimeoutMs })
}
}
private static async *listIterator(options: SandboxListOpts = {}): AsyncGenerator<SandboxInfo> {
let nextPage = true
let token = options.nextToken
while (nextPage) {
const { sandboxes, hasMoreItems, nextToken } = await this.list({
...options,
nextToken: token,
})
nextPage = hasMoreItems
token = nextToken
for (const sandbox of sandboxes) {
yield sandbox
}
}
}
/**
* Get the metrics of the sandbox.
*
* @param sandboxId sandbox ID.
* @param opts connection options.
*
* @returns metrics of the sandbox.
*/
static async getMetrics(
sandboxId: string,
opts?: SandboxApiOpts
): Promise<components['schemas']['SandboxMetric'][]> {
const config = new ConnectionConfig(opts)
const client = new ApiClient(config)
const res = await client.api.GET('/sandboxes/{sandboxID}/metrics', {
params: {
path: {
sandboxID: sandboxId,
},
},
signal: config.getSignal(opts?.requestTimeoutMs),
})
const err = handleApiError(res)
if (err) {
throw err
}
return (
res.data?.map((metric: components['schemas']['SandboxMetric']) => ({
...metric,
timestamp: new Date(metric.timestamp).toISOString(),
})) ?? []
)
}
/**
* Set the timeout of the specified sandbox.
* After the timeout expires the sandbox will be automatically killed.
*
* This method can extend or reduce the sandbox timeout set when creating the sandbox or from the last call to {@link Sandbox.setTimeout}.
*
* Maximum time a sandbox can be kept alive is 24 hours (86_400_000 milliseconds) for Pro users and 1 hour (3_600_000 milliseconds) for Hobby users.
*
* @param sandboxId sandbox ID.
* @param timeoutMs timeout in **milliseconds**.
* @param opts connection options.
*/
static async setTimeout(
sandboxId: string,
timeoutMs: number,
opts?: SandboxApiOpts
): Promise<void> {
const config = new ConnectionConfig(opts)
const client = new ApiClient(config)
const res = await client.api.POST('/sandboxes/{sandboxID}/timeout', {
params: {
path: {
sandboxID: sandboxId,
},
},
body: {
timeout: this.timeoutToSeconds(timeoutMs),
},
signal: config.getSignal(opts?.requestTimeoutMs),
})
const err = handleApiError(res)
if (err) {
throw err
}
}
/**
* Pause the sandbox specified by sandbox ID.
*
* @param sandboxId sandbox ID.
* @param opts connection options.
*
* @returns `true` if the sandbox got paused, `false` if the sandbox was already paused.
*/
protected static async pauseSandbox(
sandboxId: string,
opts?: SandboxApiOpts
): Promise<boolean> {
const config = new ConnectionConfig(opts)
const client = new ApiClient(config)
const res = await client.api.POST('/sandboxes/{sandboxID}/pause', {
params: {
path: {
sandboxID: sandboxId,
},
},
signal: config.getSignal(opts?.requestTimeoutMs),
})
if (res.error?.code === 404) {
throw new NotFoundError(`Sandbox ${sandboxId} not found`)
}
if (res.error?.code === 409) {
// Sandbox is already paused
return false
}
const err = handleApiError(res)
if (err) {
throw err
}
return true
}
protected static async resumeSandbox(
sandboxId: string,
timeoutMs: number,
opts?: SandboxApiOpts
): Promise<boolean> {
const config = new ConnectionConfig(opts)
const client = new ApiClient(config)
const res = await client.api.POST('/sandboxes/{sandboxID}/resume', {
params: {
path: {
sandboxID: sandboxId,
},
},
body: {
timeout: this.timeoutToSeconds(timeoutMs),
autoPause: false,
},
signal: config.getSignal(opts?.requestTimeoutMs),
})
if (res.error?.code === 404) {
throw new NotFoundError(`Paused sandbox ${sandboxId} not found`)
}
if (res.error?.code === 409) {
// Sandbox is already running
return false
}
const err = handleApiError(res)
if (err) {
throw err
}
return true
}
protected static async createSandbox(
template: string,
timeoutMs: number,
opts?: SandboxApiOpts & {
metadata?: Record<string, string>
envs?: Record<string, string>
}
): Promise<{
sandboxId: string
envdVersion: string
}> {
const config = new ConnectionConfig(opts)
const client = new ApiClient(config)
const res = await client.api.POST('/sandboxes', {
body: {
templateID: template,
metadata: opts?.metadata,
envVars: opts?.envs,
timeout: this.timeoutToSeconds(timeoutMs),
autoPause: false,
},
signal: config.getSignal(opts?.requestTimeoutMs),
})
const err = handleApiError(res)
if (err) {
throw err
}
if (compareVersions(res.data!.envdVersion, '0.1.0') < 0) {
await this.kill(
this.getSandboxId({
sandboxId: res.data!.sandboxID,
clientId: res.data!.clientID,
}),
opts
)
throw new TemplateError(
'You need to update the template to use the new SDK. ' +
'You can do this by running `e2b template build` in the directory with the template.'
)
}
return {
sandboxId: this.getSandboxId({
sandboxId: res.data!.sandboxID,
clientId: res.data!.clientID,
}),
envdVersion: res.data!.envdVersion,
}
}
private static timeoutToSeconds(timeout: number): number {
return Math.ceil(timeout / 1000)
}
private static getSandboxId({
sandboxId,
clientId,
}: {
sandboxId: string
clientId: string
}): string {
return `${sandboxId}-${clientId}`
}
}