Files
emdash-patch-imageupload/infra/perf-monitor/src/api.ts
kunthawat 2d1be52177 Emdash source with visual editor image upload fix
Fixes:
1. media.ts: wrap placeholder generation in try-catch
2. toolbar.ts: check r.ok, display error message in popover
2026-05-03 10:44:54 +07:00

265 lines
8.0 KiB
TypeScript

/** HTTP API router for the perf monitor. */
import { runMeasurements } from "./measure.js";
import {
DEFAULT_SITE_ID,
getSite,
REGIONS,
REGION_LABELS,
SITES,
TARGET_ROUTES,
} from "./routes.js";
import {
queryResults,
getLatestResults,
getRollingMedians,
getDeployResults,
insertResults,
type Source,
} from "./store.js";
/** Route the request to the correct handler. */
export async function handleApi(request: Request, url: URL, env: Env): Promise<Response | null> {
const path = url.pathname;
if (path === "/api/results" && request.method === "GET") {
return handleResults(url, env);
}
if (path === "/api/summary" && request.method === "GET") {
return handleSummary(url, env);
}
if (path === "/api/chart" && request.method === "GET") {
return handleChart(url, env);
}
if (path === "/api/config" && request.method === "GET") {
return handleConfig();
}
if (path === "/api/trigger" && request.method === "POST") {
return handleTrigger(request, env);
}
return null;
}
/** Narrow a query string to the allowed source values without a cast. */
function parseSource(raw: string | null): Source | undefined {
if (raw === "deploy" || raw === "cron" || raw === "manual") return raw;
return undefined;
}
/**
* Resolve the requested site param against the known SITES list. Falls back
* to the default site when absent so existing clients (dashboard) keep
* working unchanged.
*/
function parseSiteParam(raw: string | null): string {
if (raw && getSite(raw)) return raw;
return DEFAULT_SITE_ID;
}
/** GET /api/results?route=X&region=Y&source=Z&site=W&since=ISO&limit=N */
async function handleResults(url: URL, env: Env): Promise<Response> {
const source = parseSource(url.searchParams.get("source"));
const siteParam = url.searchParams.get("site");
// Results is intentionally loose: no site param = return across all sites
// (for raw tabular inspection). Summary/chart default to a single site.
const site = siteParam && getSite(siteParam) ? siteParam : undefined;
const results = await queryResults(env.DB, {
route: url.searchParams.get("route") ?? undefined,
region: url.searchParams.get("region") ?? undefined,
source,
site,
since: url.searchParams.get("since") ?? undefined,
limit: url.searchParams.has("limit") ? parseInt(url.searchParams.get("limit")!, 10) : undefined,
});
return Response.json({ results });
}
/** GET /api/summary?site=X -- latest per route+region, rolling averages */
async function handleSummary(url: URL, env: Env): Promise<Response> {
const site = parseSiteParam(url.searchParams.get("site"));
const [latest, medians] = await Promise.all([
getLatestResults(env.DB, site),
getRollingMedians(env.DB, site),
]);
return Response.json({
site,
latest,
medians,
config: {
sites: SITES.map((s) => ({ id: s.id, label: s.label, targetUrl: s.targetUrl })),
routes: TARGET_ROUTES,
regions: REGIONS.map((r) => ({ id: r, label: REGION_LABELS[r] })),
},
});
}
/** GET /api/chart?route=X&region=Y&site=W&since=ISO&limit=N -- time series data */
async function handleChart(url: URL, env: Env): Promise<Response> {
const route = url.searchParams.get("route");
const region = url.searchParams.get("region");
if (!route || !region) {
return Response.json({ error: "route and region are required" }, { status: 400 });
}
const site = parseSiteParam(url.searchParams.get("site"));
const since = url.searchParams.get("since") ?? undefined;
const limit = url.searchParams.has("limit") ? parseInt(url.searchParams.get("limit")!, 10) : 200;
const [results, deployResults] = await Promise.all([
queryResults(env.DB, { route, region, site, since, limit }),
getDeployResults(env.DB, site, since),
]);
// Query returns DESC -- reverse to chronological. Manual (ad-hoc) runs are
// stripped from the graph so they don't create visual noise; they still
// appear in the /api/results table.
const graphResults = results.filter((r) => r.source !== "manual").toReversed();
// Deduplicate deploy results by SHA — multiple route/region combos produce
// duplicates, but we only want one marker per deploy on the chart.
const seenShas = new Set<string>();
const deployMarkers = deployResults
.filter((r) => {
if (!r.sha) return false;
if (r.route !== route || r.region !== region) return false;
if (seenShas.has(r.sha)) return false;
seenShas.add(r.sha);
return true;
})
.map((r) => ({
timestamp: r.timestamp,
prNumber: r.pr_number,
sha: r.sha,
coldTtfbMs: r.cold_ttfb_ms,
}));
return Response.json({
route,
region,
site,
data: graphResults.map((r) => ({
timestamp: r.timestamp,
coldTtfbMs: r.cold_ttfb_ms,
warmTtfbMs: r.warm_ttfb_ms,
p95TtfbMs: r.p95_ttfb_ms,
source: r.source,
sha: r.sha,
prNumber: r.pr_number,
})),
deployMarkers,
});
}
/** GET /api/config -- available sites, routes, and regions */
async function handleConfig(): Promise<Response> {
return Response.json({
sites: SITES.map((s) => ({ id: s.id, label: s.label, targetUrl: s.targetUrl })),
defaultSite: DEFAULT_SITE_ID,
routes: TARGET_ROUTES,
regions: REGIONS.map((r) => ({ id: r, label: REGION_LABELS[r] })),
});
}
/** Accept short abbreviated or full-length hex SHAs. */
const SHA_RE = /^[a-f0-9]{7,40}$/i;
/**
* POST /api/trigger -- run an ad-hoc measurement, optionally record it.
*
* Body (all optional):
* {
* "note"?: string,
* "sha"?: string,
* "prNumber"?: number,
* "ephemeral"?: boolean, // if true, run the probes but don't persist
* "site"?: string // site id; omit to measure every site
* }
*
* No auth in-Worker: this endpoint is expected to be protected by a
* Cloudflare Access policy at the edge. If Access misroutes or is
* misconfigured, the request will still run measurements -- keep Access
* scoped tightly to POST /api/trigger.
*
* Persisted runs are tagged source=manual and are excluded from the
* dashboard graph and summary cards but appear in the results table with
* a "manual" badge. Ephemeral runs run the probes for real but skip the
* insert entirely -- useful for private/local checks that shouldn't
* appear on the dashboard at all.
*/
async function handleTrigger(request: Request, env: Env): Promise<Response> {
let body: {
note?: unknown;
sha?: unknown;
prNumber?: unknown;
ephemeral?: unknown;
site?: unknown;
} = {};
const contentLength = request.headers.get("content-length");
if (contentLength && contentLength !== "0") {
try {
body = await request.json();
} catch {
return Response.json({ error: "invalid JSON body" }, { status: 400 });
}
}
const note = typeof body.note === "string" && body.note.trim() !== "" ? body.note.trim() : null;
const sha = typeof body.sha === "string" && SHA_RE.test(body.sha) ? body.sha : null;
const prNumber =
typeof body.prNumber === "number" && Number.isInteger(body.prNumber) && body.prNumber > 0
? body.prNumber
: null;
const ephemeral = body.ephemeral === true;
let sites = SITES;
if (typeof body.site === "string") {
const match = getSite(body.site);
if (!match) {
return Response.json(
{ error: `unknown site "${body.site}"; valid: ${SITES.map((s) => s.id).join(", ")}` },
{ status: 400 },
);
}
sites = [match];
}
const started = Date.now();
const results = await runMeasurements(env, { source: "manual", sha, prNumber, note, sites });
if (results.length === 0) {
return Response.json({ error: "no measurements returned from probes" }, { status: 502 });
}
if (!ephemeral) {
await insertResults(env.DB, results);
}
return Response.json({
inserted: ephemeral ? 0 : results.length,
ephemeral,
durationMs: Date.now() - started,
note,
sha,
prNumber,
sites: sites.map((s) => s.id),
// Echo the structured result so the CLI can print it without a follow-up query.
results: results.map((r) => ({
site: r.site,
route: r.route,
region: r.region,
coldTtfbMs: r.coldTtfbMs,
warmTtfbMs: r.warmTtfbMs,
p95TtfbMs: r.p95TtfbMs,
cfColo: r.cfColo,
coldServerTimings: r.coldServerTimings,
warmServerTimings: r.warmServerTimings,
})),
});
}