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
|
import { Hono } from "hono";
import { and, eq } from "drizzle-orm";
import { db } from "../db";
import { pullRequests, repositories, users } from "../db/schema";
import { softAuth, requireAuth } from "../middleware/auth";
import type { AuthEnv } from "../middleware/auth";
import { requireRepoAccess } from "../middleware/repo-access";
import {
destroySandbox,
getSandboxForPr,
provisionSandbox,
sandboxStatusLabel,
} from "../lib/pr-sandbox";
const prSandboxRoutes = new Hono<AuthEnv>();
async function resolveRepoRow(ownerName: string, repoName: string) {
const [owner] = await db
.select()
.from(users)
.where(eq(users.username, ownerName))
.limit(1);
if (!owner) return null;
const [repo] = await db
.select()
.from(repositories)
.where(
and(eq(repositories.ownerId, owner.id), eq(repositories.name, repoName))
)
.limit(1);
if (!repo) return null;
return { owner, repo };
}
async function resolvePr(repoId: string, n: number) {
if (!Number.isFinite(n)) return null;
const [pr] = await db
.select()
.from(pullRequests)
.where(
and(eq(pullRequests.repositoryId, repoId), eq(pullRequests.number, n))
)
.limit(1);
return pr ?? null;
}
function jsonShape(
row: Awaited<ReturnType<typeof getSandboxForPr>>
): Record<string, unknown> | null {
if (!row) return null;
return {
id: row.id,
status: row.status,
statusLabel: sandboxStatusLabel(row.status),
sandboxUrl: row.sandboxUrl,
expiresAt: row.expiresAt?.toISOString?.() ?? null,
provisionedAt: row.provisionedAt?.toISOString?.() ?? null,
destroyedAt: row.destroyedAt?.toISOString?.() ?? null,
errorMessage: row.errorMessage,
};
}
prSandboxRoutes.post(
"/:owner/:repo/pulls/:number/sandbox/provision",
softAuth,
requireAuth,
requireRepoAccess("write"),
async (c) => {
const { owner: ownerName, repo: repoName } = c.req.param();
const n = parseInt(c.req.param("number"), 10);
const resolved = await resolveRepoRow(ownerName, repoName);
if (!resolved) return c.json({ ok: false, error: "Repo not found" }, 404);
const pr = await resolvePr(resolved.repo.id, n);
if (!pr) return c.json({ ok: false, error: "PR not found" }, 404);
const row = await provisionSandbox({ prId: pr.id });
if (!row) {
return c.json(
{ ok: false, error: "Sandbox provisioning failed (DB unavailable?)" },
500
);
}
return c.json({ ok: true, sandbox: jsonShape(row) });
}
);
prSandboxRoutes.post(
"/:owner/:repo/pulls/:number/sandbox/destroy",
softAuth,
requireAuth,
requireRepoAccess("write"),
async (c) => {
const { owner: ownerName, repo: repoName } = c.req.param();
const n = parseInt(c.req.param("number"), 10);
const resolved = await resolveRepoRow(ownerName, repoName);
if (!resolved) return c.json({ ok: false, error: "Repo not found" }, 404);
const pr = await resolvePr(resolved.repo.id, n);
if (!pr) return c.json({ ok: false, error: "PR not found" }, 404);
const existing = await getSandboxForPr(pr.id);
if (!existing) {
return c.json({ ok: true, sandbox: null });
}
await destroySandbox(existing.id);
const after = await getSandboxForPr(pr.id);
return c.json({ ok: true, sandbox: jsonShape(after) });
}
);
prSandboxRoutes.get(
"/:owner/:repo/pulls/:number/sandbox",
softAuth,
requireRepoAccess("read"),
async (c) => {
const { owner: ownerName, repo: repoName } = c.req.param();
const n = parseInt(c.req.param("number"), 10);
const resolved = await resolveRepoRow(ownerName, repoName);
if (!resolved) return c.json({ ok: false, error: "Repo not found" }, 404);
const pr = await resolvePr(resolved.repo.id, n);
if (!pr) return c.json({ ok: false, error: "PR not found" }, 404);
const row = await getSandboxForPr(pr.id);
return c.json({ ok: true, sandbox: jsonShape(row) });
}
);
export default prSandboxRoutes;
|