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
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
|
import { and, eq, lt } from "drizzle-orm";
import { db } from "../db";
import { prSandboxes, pullRequests, repositories, users } from "../db/schema";
import type { PrSandbox } from "../db/schema";
import { slugifyForUrl } from "./branch-previews";
import { getBlob } from "../git/repository";
import { getAnthropic, isAiAvailable, MODEL_HAIKU, extractText } from "./ai-client";
export const SANDBOX_TTL_MS = 4 * 60 * 60 * 1000;
const ERROR_MESSAGE_CAP = 2_000;
const DEFAULT_PLAYGROUND_YML = `# .gluecron/playground.yml — auto-generated default.
# Customize and commit this file under .gluecron/playground.yml on your
# repo to control how PR sandboxes are provisioned.
runtime: docker
image: node:20-alpine
ports: [3000]
seed:
- "npm install"
command: "npm start"
env:
NODE_ENV: development
`;
export function buildSandboxUrl(
prNumber: number,
ownerName: string,
repoName: string
): string {
const domain = (
process.env.PR_SANDBOX_DOMAIN || "sandbox.gluecron.com"
).replace(/^https?:\/\//, "");
const repoSlug = slugifyForUrl(`${ownerName}-${repoName}`);
const n = Number.isFinite(prNumber) ? Math.max(0, Math.floor(prNumber)) : 0;
return `https://pr-${n}-${repoSlug}.${domain}`;
}
export function sandboxStatusLabel(status: string): string {
switch (status) {
case "provisioning":
return "Provisioning";
case "ready":
return "Ready";
case "failed":
return "Failed";
case "destroyed":
return "Destroyed";
default:
return status;
}
}
export function formatSandboxExpiresIn(
expiresAt: Date | null | undefined,
now: Date = new Date()
): string {
if (!expiresAt) return "—";
const ms = expiresAt.getTime() - now.getTime();
if (ms <= 0) return "expired";
const minutes = Math.floor(ms / 60_000);
if (minutes < 1) return "less than a minute";
const hours = Math.floor(minutes / 60);
const mins = minutes % 60;
if (hours <= 0) return `${minutes}m`;
return `${hours}h ${mins}m`;
}
export async function readPlaygroundYml(
ownerName: string,
repoName: string,
ref: string
): Promise<string | null> {
if (!ownerName || !repoName || !ref) return null;
try {
const blob = await getBlob(
ownerName,
repoName,
ref,
".gluecron/playground.yml"
);
if (!blob || blob.isBinary) return null;
const content = (blob.content || "").trim();
if (!content) return null;
return blob.content;
} catch {
return null;
}
}
export async function generatePlaygroundYml(
repoHint: string
): Promise<string> {
if (!isAiAvailable()) return DEFAULT_PLAYGROUND_YML;
try {
const client = getAnthropic();
const message = await client.messages.create({
model: MODEL_SONNET,
max_tokens: 800,
messages: [
{
role: "user",
content:
"Generate a `playground.yml` for the following repo so PR " +
"reviewers can try the change live in a sandbox container. " +
"Output ONLY YAML — no prose, no code fences. Required keys: " +
"`runtime` (docker), `image`, `ports` (array), `seed` " +
"(array of shell commands run once at startup), `command` " +
"(the long-running process), `env` (map). Pick conservative " +
"defaults if unsure.\n\nRepo: " +
repoHint,
},
],
});
const text = extractText(message).trim();
if (!text) return DEFAULT_PLAYGROUND_YML;
const cleaned = text
.replace(/^```(?:yaml|yml)?\s*/i, "")
.replace(/```\s*$/i, "")
.trim();
return cleaned || DEFAULT_PLAYGROUND_YML;
} catch (err) {
console.warn(
"[pr-sandbox] generatePlaygroundYml failed; using default:",
err instanceof Error ? err.message : err
);
return DEFAULT_PLAYGROUND_YML;
}
}
export interface ProvisionArgs {
prId: string;
now?: () => Date;
sandboxUrl?: string;
playgroundYml?: string;
}
export async function provisionSandbox(
args: ProvisionArgs
): Promise<PrSandbox | null> {
if (!args.prId) return null;
const now = (args.now ?? (() => new Date()))();
const expiresAt = new Date(now.getTime() + SANDBOX_TTL_MS);
let resolved: {
prNumber: number;
headBranch: string;
ownerName: string;
repoName: string;
} | null = null;
try {
const [row] = await db
.select({
prNumber: pullRequests.number,
headBranch: pullRequests.headBranch,
ownerId: repositories.ownerId,
repoName: repositories.name,
})
.from(pullRequests)
.innerJoin(
repositories,
eq(pullRequests.repositoryId, repositories.id)
)
.where(eq(pullRequests.id, args.prId))
.limit(1);
if (!row) return null;
const [owner] = await db
.select({ username: users.username })
.from(users)
.where(eq(users.id, row.ownerId))
.limit(1);
if (!owner) return null;
resolved = {
prNumber: row.prNumber,
headBranch: row.headBranch,
ownerName: owner.username,
repoName: row.repoName,
};
} catch (err) {
console.warn(
"[pr-sandbox] resolve PR failed:",
err instanceof Error ? err.message : err
);
return null;
}
const url =
args.sandboxUrl ??
buildSandboxUrl(resolved.prNumber, resolved.ownerName, resolved.repoName);
let yml = args.playgroundYml;
if (yml === undefined) {
const fromGit = await readPlaygroundYml(
resolved.ownerName,
resolved.repoName,
resolved.headBranch
);
yml =
fromGit ??
(await generatePlaygroundYml(
`${resolved.ownerName}/${resolved.repoName} (PR #${resolved.prNumber})`
));
}
try {
const [row] = await db
.insert(prSandboxes)
.values({
prId: args.prId,
status: "provisioning",
sandboxUrl: url,
playgroundYml: yml,
provisionedAt: now,
expiresAt,
destroyedAt: null,
errorMessage: null,
})
.onConflictDoUpdate({
target: prSandboxes.prId,
set: {
status: "provisioning",
sandboxUrl: url,
playgroundYml: yml,
provisionedAt: now,
expiresAt,
destroyedAt: null,
errorMessage: null,
},
})
.returning();
return row ?? null;
} catch (err) {
console.warn(
"[pr-sandbox] upsert failed:",
err instanceof Error ? err.message : err
);
return null;
}
}
export async function markSandboxReady(
id: string,
containerId?: string
): Promise<void> {
if (!id) return;
try {
await db
.update(prSandboxes)
.set({
status: "ready",
errorMessage: null,
...(containerId ? { containerId } : {}),
})
.where(eq(prSandboxes.id, id));
} catch (err) {
console.warn(
"[pr-sandbox] markReady failed:",
err instanceof Error ? err.message : err
);
}
}
export async function markSandboxFailed(
id: string,
error: string
): Promise<void> {
if (!id) return;
try {
await db
.update(prSandboxes)
.set({
status: "failed",
errorMessage: (error || "").slice(0, ERROR_MESSAGE_CAP),
})
.where(eq(prSandboxes.id, id));
} catch (err) {
console.warn(
"[pr-sandbox] markFailed failed:",
err instanceof Error ? err.message : err
);
}
}
export async function destroySandbox(
id: string,
now: () => Date = () => new Date()
): Promise<void> {
if (!id) return;
try {
await db
.update(prSandboxes)
.set({ status: "destroyed", destroyedAt: now() })
.where(eq(prSandboxes.id, id));
} catch (err) {
console.warn(
"[pr-sandbox] destroy failed:",
err instanceof Error ? err.message : err
);
}
}
export async function getSandboxForPr(
prId: string
): Promise<PrSandbox | null> {
if (!prId) return null;
try {
const [row] = await db
.select()
.from(prSandboxes)
.where(eq(prSandboxes.prId, prId))
.limit(1);
return row ?? null;
} catch {
return null;
}
}
export async function expireOldSandboxes(
now: () => Date = () => new Date()
): Promise<number> {
try {
const ready = await db
.update(prSandboxes)
.set({ status: "destroyed", destroyedAt: now() })
.where(
and(
lt(prSandboxes.expiresAt, now()),
eq(prSandboxes.status, "ready")
)
)
.returning({ id: prSandboxes.id });
const stuck = await db
.update(prSandboxes)
.set({ status: "destroyed", destroyedAt: now() })
.where(
and(
lt(prSandboxes.expiresAt, now()),
eq(prSandboxes.status, "provisioning")
)
)
.returning({ id: prSandboxes.id });
return ready.length + stuck.length;
} catch (err) {
console.warn(
"[pr-sandbox] expireOldSandboxes failed:",
err instanceof Error ? err.message : err
);
return 0;
}
}
|