CodeIssuesDiscussionsWikiPull RequestsProjectsCommitsActionsReleasesContributorsPulse● GatesSecuritySettingsDeploymentsPipelineInsightsAgents✨ Explain✨ Ask AI✨ Workspace✨ Spec✨ Tests▓ Debt Map✨ NL Search🏛 Archaeology
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 | /**
* Block J10 — Repository status badges.
*
* Serves shields.io-style SVG badges repositories can embed in READMEs:
*
* GET /:owner/:repo/badge/gates.svg — latest gate_runs rollup
* GET /:owner/:repo/badge/issues.svg — open issue count
* GET /:owner/:repo/badge/prs.svg — open PR count
* GET /:owner/:repo/badge/status.svg — combined commit status on HEAD
* GET /:owner/:repo/badge/status/:context.svg — single status context
*
* All responses: image/svg+xml, public short-cache, never 500s — badges fall
* back to a grey "unknown" state on DB or git failure.
*/
import { Hono } from "hono";
import { and, desc, eq, sql } from "drizzle-orm";
import { db } from "../db";
import {
repositories,
users,
gateRuns,
issues,
pullRequests,
commitStatuses,
} from "../db/schema";
import { softAuth } from "../middleware/auth";
import type { AuthEnv } from "../middleware/auth";
import { renderBadge, colorForState } from "../lib/badge";
import { getDefaultBranch } from "../git/repository";
import { resolveRef } from "../git/repository";
const badges = new Hono<AuthEnv>();
const CACHE = "public, max-age=60, stale-while-revalidate=300";
function svg(body: string) {
return new Response(body, {
status: 200,
headers: {
"content-type": "image/svg+xml; charset=utf-8",
"cache-control": CACHE,
},
});
}
async function resolveRepo(ownerName: string, repoName: string) {
try {
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 };
} catch {
return null;
}
}
// ---------------------------------------------------------------------------
// /:owner/:repo/badge/gates.svg — latest gate_runs rollup
// ---------------------------------------------------------------------------
badges.get("/:owner/:repo/badge/gates.svg", softAuth, async (c) => {
const { owner: ownerName, repo: repoName } = c.req.param();
const resolved = await resolveRepo(ownerName, repoName);
if (!resolved) {
return svg(renderBadge({ label: "gates", value: "unknown", color: "grey" }));
}
try {
const rows = await db
.select()
.from(gateRuns)
.where(eq(gateRuns.repositoryId, resolved.repo.id))
.orderBy(desc(gateRuns.createdAt))
.limit(20);
if (!rows.length) {
return svg(
renderBadge({ label: "gates", value: "no runs", color: "grey" })
);
}
const anyFailed = rows.some((r) => r.status === "failed");
const anyRunning = rows.some(
(r) => r.status === "running" || r.status === "pending"
);
const state = anyFailed ? "failed" : anyRunning ? "pending" : "passed";
const label = "gates";
const value = anyFailed ? "failing" : anyRunning ? "running" : "passing";
return svg(
renderBadge({ label, value, color: colorForState(state as any) })
);
} catch {
return svg(
renderBadge({ label: "gates", value: "unknown", color: "grey" })
);
}
});
// ---------------------------------------------------------------------------
// /:owner/:repo/badge/issues.svg — open issue count
// ---------------------------------------------------------------------------
badges.get("/:owner/:repo/badge/issues.svg", softAuth, async (c) => {
const { owner: ownerName, repo: repoName } = c.req.param();
const resolved = await resolveRepo(ownerName, repoName);
if (!resolved) {
return svg(
renderBadge({ label: "issues", value: "unknown", color: "grey" })
);
}
try {
const [row] = await db
.select({ n: sql<number>`count(*)::int` })
.from(issues)
.where(
and(
eq(issues.repositoryId, resolved.repo.id),
eq(issues.state, "open")
)
);
const n = Number(row?.n || 0);
return svg(
renderBadge({
label: "issues",
value: `${n} open`,
color: n === 0 ? "green" : n < 10 ? "blue" : "yellow",
})
);
} catch {
return svg(
renderBadge({ label: "issues", value: "unknown", color: "grey" })
);
}
});
// ---------------------------------------------------------------------------
// /:owner/:repo/badge/prs.svg — open PR count
// ---------------------------------------------------------------------------
badges.get("/:owner/:repo/badge/prs.svg", softAuth, async (c) => {
const { owner: ownerName, repo: repoName } = c.req.param();
const resolved = await resolveRepo(ownerName, repoName);
if (!resolved) {
return svg(renderBadge({ label: "PRs", value: "unknown", color: "grey" }));
}
try {
const [row] = await db
.select({ n: sql<number>`count(*)::int` })
.from(pullRequests)
.where(
and(
eq(pullRequests.repositoryId, resolved.repo.id),
eq(pullRequests.state, "open")
)
);
const n = Number(row?.n || 0);
return svg(
renderBadge({
label: "PRs",
value: `${n} open`,
color: n === 0 ? "green" : n < 10 ? "blue" : "yellow",
})
);
} catch {
return svg(renderBadge({ label: "PRs", value: "unknown", color: "grey" }));
}
});
// ---------------------------------------------------------------------------
// /:owner/:repo/badge/status.svg — combined commit status on default HEAD
// /:owner/:repo/badge/status/:context.svg — single named status context
// ---------------------------------------------------------------------------
async function statusBadge(
resolved: NonNullable<Awaited<ReturnType<typeof resolveRepo>>>,
owner: string,
repo: string,
context: string | null
) {
try {
const branch = (await getDefaultBranch(owner, repo)) || "main";
const sha = await resolveRef(owner, repo, branch);
if (!sha) {
return renderBadge({
label: context || "status",
value: "no commit",
color: "grey",
});
}
const rows = await db
.select()
.from(commitStatuses)
.where(
and(
eq(commitStatuses.repositoryId, resolved.repo.id),
eq(commitStatuses.commitSha, sha.toLowerCase())
)
);
let latest = rows;
if (context) {
latest = rows.filter((r) => r.context === context);
} else {
// latest per context
const m = new Map<string, (typeof rows)[number]>();
for (const r of rows) {
const p = m.get(r.context);
if (!p || p.updatedAt < r.updatedAt) m.set(r.context, r);
}
latest = [...m.values()];
}
if (!latest.length) {
return renderBadge({
label: context || "status",
value: "none",
color: "grey",
});
}
const states = latest.map((r) => r.state);
const combined = states.some((s) => s === "failure" || s === "error")
? "failure"
: states.some((s) => s === "pending")
? "pending"
: "success";
return renderBadge({
label: context || "status",
value: combined,
color: colorForState(combined as any),
});
} catch {
return renderBadge({
label: context || "status",
value: "unknown",
color: "grey",
});
}
}
badges.get("/:owner/:repo/badge/status.svg", softAuth, async (c) => {
const { owner: ownerName, repo: repoName } = c.req.param();
const resolved = await resolveRepo(ownerName, repoName);
if (!resolved) {
return svg(
renderBadge({ label: "status", value: "unknown", color: "grey" })
);
}
return svg(await statusBadge(resolved, ownerName, repoName, null));
});
badges.get("/:owner/:repo/badge/status/:context.svg", softAuth, async (c) => {
const { owner: ownerName, repo: repoName, context } = c.req.param();
const resolved = await resolveRepo(ownerName, repoName);
if (!resolved) {
return svg(
renderBadge({ label: context, value: "unknown", color: "grey" })
);
}
return svg(await statusBadge(resolved, ownerName, repoName, context));
});
export default badges;
|