1 Commits
Author SHA1 Message Date
valknarandClaude Sonnet 5 9e0380ec75 Add consistent API request logging and a themed 404 page, bump to 0.4.0
CI / Build and push image (push) Successful in 1m10s
CI / Static checks (push) Successful in 1m39s
Every app/api route handler now goes through withRouteLogging, which logs
a correlated reqId/method/path/status/duration for each request and turns
any uncaught error into a logged stack trace plus a clean JSON 500 instead
of Next's default opaque failure. proxy.ts logs rejected auth attempts, and
instrumentation.ts's onRequestError catches anything that still escapes a
route handler. Also adds a minimal not-found page matching the app's card
styling.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-08-26 08:45:15 +02:00
20 changed files with 267 additions and 109 deletions
+7 -2
View File
@@ -3,21 +3,26 @@ import { z } from "zod";
import { getEnv } from "@/lib/env"; import { getEnv } from "@/lib/env";
import { timingSafeStringEqual } from "@/lib/auth/timing-safe-compare"; import { timingSafeStringEqual } from "@/lib/auth/timing-safe-compare";
import { createSessionToken, sessionCookieOptions } from "@/lib/auth/session"; import { createSessionToken, sessionCookieOptions } from "@/lib/auth/session";
import { withRouteLogging } from "@/lib/api/with-route-logging";
import { createLogger } from "@/lib/logger";
const log = createLogger("auth");
const bodySchema = z.object({ secret: z.string().min(1) }); const bodySchema = z.object({ secret: z.string().min(1) });
export async function POST(req: Request) { export const POST = withRouteLogging("auth.login", async (req: Request) => {
const parsed = bodySchema.safeParse(await req.json().catch(() => null)); const parsed = bodySchema.safeParse(await req.json().catch(() => null));
if (!parsed.success) { if (!parsed.success) {
return NextResponse.json({ error: "secret is required" }, { status: 400 }); return NextResponse.json({ error: "secret is required" }, { status: 400 });
} }
if (!timingSafeStringEqual(parsed.data.secret, getEnv().ACCESS_PASSWORD)) { if (!timingSafeStringEqual(parsed.data.secret, getEnv().ACCESS_PASSWORD)) {
log.warn("login attempt with invalid secret");
return NextResponse.json({ error: "invalid secret" }, { status: 401 }); return NextResponse.json({ error: "invalid secret" }, { status: 401 });
} }
log.info("login succeeded");
const token = await createSessionToken(); const token = await createSessionToken();
const res = NextResponse.json({ ok: true }); const res = NextResponse.json({ ok: true });
res.cookies.set({ ...sessionCookieOptions, value: token }); res.cookies.set({ ...sessionCookieOptions, value: token });
return res; return res;
} });
+3 -2
View File
@@ -1,8 +1,9 @@
import { NextResponse } from "next/server"; import { NextResponse } from "next/server";
import { SESSION_COOKIE_NAME } from "@/lib/auth/session"; import { SESSION_COOKIE_NAME } from "@/lib/auth/session";
import { withRouteLogging } from "@/lib/api/with-route-logging";
export async function POST() { export const POST = withRouteLogging("auth.logout", async () => {
const res = NextResponse.json({ ok: true }); const res = NextResponse.json({ ok: true });
res.cookies.delete(SESSION_COOKIE_NAME); res.cookies.delete(SESSION_COOKIE_NAME);
return res; return res;
} });
+6 -2
View File
@@ -1,10 +1,13 @@
import { NextResponse } from "next/server"; import { NextResponse } from "next/server";
import { z } from "zod"; import { z } from "zod";
import { renameDevice } from "@/lib/db/queries/devices"; import { renameDevice } from "@/lib/db/queries/devices";
import { withRouteLogging } from "@/lib/api/with-route-logging";
const bodySchema = z.object({ displayName: z.string().min(1).max(120) }); const bodySchema = z.object({ displayName: z.string().min(1).max(120) });
export async function PATCH(req: Request, { params }: { params: Promise<{ id: string }> }) { export const PATCH = withRouteLogging(
"devices.rename",
async (req: Request, { params }: { params: Promise<{ id: string }> }) => {
const { id } = await params; const { id } = await params;
const parsed = bodySchema.safeParse(await req.json().catch(() => null)); const parsed = bodySchema.safeParse(await req.json().catch(() => null));
if (!parsed.success) { if (!parsed.success) {
@@ -13,4 +16,5 @@ export async function PATCH(req: Request, { params }: { params: Promise<{ id: st
const updated = await renameDevice(Number(id), parsed.data.displayName); const updated = await renameDevice(Number(id), parsed.data.displayName);
if (!updated) return NextResponse.json({ error: "not found" }, { status: 404 }); if (!updated) return NextResponse.json({ error: "not found" }, { status: 404 });
return NextResponse.json({ device: updated }); return NextResponse.json({ device: updated });
} },
);
+3 -2
View File
@@ -1,7 +1,8 @@
import { NextResponse } from "next/server"; import { NextResponse } from "next/server";
import { listDevices } from "@/lib/db/queries/devices"; import { listDevices } from "@/lib/db/queries/devices";
import { withRouteLogging } from "@/lib/api/with-route-logging";
export async function GET() { export const GET = withRouteLogging("devices.list", async () => {
const rows = await listDevices(); const rows = await listDevices();
return NextResponse.json({ devices: rows }); return NextResponse.json({ devices: rows });
} });
+8 -3
View File
@@ -1,11 +1,16 @@
import { NextResponse } from "next/server"; import { NextResponse } from "next/server";
import { sqlite } from "@/lib/db/client"; import { sqlite } from "@/lib/db/client";
import { withRouteLogging } from "@/lib/api/with-route-logging";
import { createLogger } from "@/lib/logger";
export async function GET() { const log = createLogger("health");
export const GET = withRouteLogging("health.check", async () => {
try { try {
sqlite.prepare("select 1").get(); sqlite.prepare("select 1").get();
return NextResponse.json({ status: "ok" }); return NextResponse.json({ status: "ok" });
} catch { } catch (err) {
log.error("health check failed", { error: err instanceof Error ? err.message : String(err) });
return NextResponse.json({ status: "error" }, { status: 500 }); return NextResponse.json({ status: "error" }, { status: 500 });
} }
} });
+6 -2
View File
@@ -1,6 +1,7 @@
import { NextResponse } from "next/server"; import { NextResponse } from "next/server";
import { z } from "zod"; import { z } from "zod";
import { insertEvents } from "@/lib/db/queries/session-events"; import { insertEvents } from "@/lib/db/queries/session-events";
import { withRouteLogging } from "@/lib/api/with-route-logging";
const eventSchema = z.object({ const eventSchema = z.object({
sessionDeviceId: z.number().int().positive(), sessionDeviceId: z.number().int().positive(),
@@ -13,7 +14,9 @@ const eventSchema = z.object({
const bodySchema = z.object({ events: z.array(eventSchema).max(2000) }); const bodySchema = z.object({ events: z.array(eventSchema).max(2000) });
export async function POST(req: Request, { params }: { params: Promise<{ id: string }> }) { export const POST = withRouteLogging(
"play-sessions.events.append",
async (req: Request, { params }: { params: Promise<{ id: string }> }) => {
const { id } = await params; const { id } = await params;
const parsed = bodySchema.safeParse(await req.json().catch(() => null)); const parsed = bodySchema.safeParse(await req.json().catch(() => null));
if (!parsed.success) { if (!parsed.success) {
@@ -21,4 +24,5 @@ export async function POST(req: Request, { params }: { params: Promise<{ id: str
} }
await insertEvents(Number(id), parsed.data.events); await insertEvents(Number(id), parsed.data.events);
return NextResponse.json({ inserted: parsed.data.events.length }); return NextResponse.json({ inserted: parsed.data.events.length });
} },
);
+19 -6
View File
@@ -2,17 +2,25 @@ import { NextResponse } from "next/server";
import { z } from "zod"; import { z } from "zod";
import { deletePlaySession, endPlaySession, getPlaySessionDetail } from "@/lib/db/queries/play-sessions"; import { deletePlaySession, endPlaySession, getPlaySessionDetail } from "@/lib/db/queries/play-sessions";
import { getRecordingsForSession } from "@/lib/db/queries/recordings"; import { getRecordingsForSession } from "@/lib/db/queries/recordings";
import { withRouteLogging } from "@/lib/api/with-route-logging";
import { createLogger } from "@/lib/logger";
const log = createLogger("play-sessions");
const patchSchema = z.object({ status: z.enum(["completed", "aborted"]) }); const patchSchema = z.object({ status: z.enum(["completed", "aborted"]) });
export async function GET(_req: Request, { params }: { params: Promise<{ id: string }> }) { export const GET = withRouteLogging(
"play-sessions.get",
async (_req: Request, { params }: { params: Promise<{ id: string }> }) => {
const { id } = await params; const { id } = await params;
const detail = await getPlaySessionDetail(Number(id)); const detail = await getPlaySessionDetail(Number(id));
if (!detail) return NextResponse.json({ error: "not found" }, { status: 404 }); if (!detail) return NextResponse.json({ error: "not found" }, { status: 404 });
return NextResponse.json(detail); return NextResponse.json(detail);
} },
);
export async function PATCH(req: Request, { params }: { params: Promise<{ id: string }> }) { export const PATCH = withRouteLogging(
"play-sessions.end",
async (req: Request, { params }: { params: Promise<{ id: string }> }) => {
const { id } = await params; const { id } = await params;
const parsed = patchSchema.safeParse(await req.json().catch(() => null)); const parsed = patchSchema.safeParse(await req.json().catch(() => null));
if (!parsed.success) { if (!parsed.success) {
@@ -21,9 +29,12 @@ export async function PATCH(req: Request, { params }: { params: Promise<{ id: st
const updated = await endPlaySession(Number(id), parsed.data); const updated = await endPlaySession(Number(id), parsed.data);
if (!updated) return NextResponse.json({ error: "not found" }, { status: 404 }); if (!updated) return NextResponse.json({ error: "not found" }, { status: 404 });
return NextResponse.json({ playSession: updated }); return NextResponse.json({ playSession: updated });
} },
);
export async function DELETE(req: Request, { params }: { params: Promise<{ id: string }> }) { export const DELETE = withRouteLogging(
"play-sessions.delete",
async (req: Request, { params }: { params: Promise<{ id: string }> }) => {
const { id } = await params; const { id } = await params;
const cascade = new URL(req.url).searchParams.get("cascade") === "true"; const cascade = new URL(req.url).searchParams.get("cascade") === "true";
try { try {
@@ -32,6 +43,7 @@ export async function DELETE(req: Request, { params }: { params: Promise<{ id: s
} catch (err) { } catch (err) {
const message = err instanceof Error ? err.message : String(err); const message = err instanceof Error ? err.message : String(err);
if (message.includes("FOREIGN KEY") || message.includes("SQLITE_CONSTRAINT")) { if (message.includes("FOREIGN KEY") || message.includes("SQLITE_CONSTRAINT")) {
log.warn("blocked session delete due to referencing recording", { sessionId: id, cascade });
const blockingRecordings = await getRecordingsForSession(Number(id)); const blockingRecordings = await getRecordingsForSession(Number(id));
return NextResponse.json( return NextResponse.json(
{ error: "cannot delete a session that a saved recording still references", recordings: blockingRecordings }, { error: "cannot delete a session that a saved recording still references", recordings: blockingRecordings },
@@ -40,4 +52,5 @@ export async function DELETE(req: Request, { params }: { params: Promise<{ id: s
} }
throw err; throw err;
} }
} },
);
+5 -4
View File
@@ -1,6 +1,7 @@
import { NextResponse } from "next/server"; import { NextResponse } from "next/server";
import { z } from "zod"; import { z } from "zod";
import { listPlaySessions, startPlaySession } from "@/lib/db/queries/play-sessions"; import { listPlaySessions, startPlaySession } from "@/lib/db/queries/play-sessions";
import { withRouteLogging } from "@/lib/api/with-route-logging";
const deviceInputSchema = z.object({ const deviceInputSchema = z.object({
slotLabel: z.string().min(1), slotLabel: z.string().min(1),
@@ -16,16 +17,16 @@ const bodySchema = z.object({
devices: z.array(deviceInputSchema).min(1), devices: z.array(deviceInputSchema).min(1),
}); });
export async function GET() { export const GET = withRouteLogging("play-sessions.list", async () => {
const rows = await listPlaySessions(); const rows = await listPlaySessions();
return NextResponse.json({ playSessions: rows }); return NextResponse.json({ playSessions: rows });
} });
export async function POST(req: Request) { export const POST = withRouteLogging("play-sessions.start", async (req: Request) => {
const parsed = bodySchema.safeParse(await req.json().catch(() => null)); const parsed = bodySchema.safeParse(await req.json().catch(() => null));
if (!parsed.success) { if (!parsed.success) {
return NextResponse.json({ error: parsed.error.message }, { status: 400 }); return NextResponse.json({ error: parsed.error.message }, { status: 400 });
} }
const result = await startPlaySession(parsed.data); const result = await startPlaySession(parsed.data);
return NextResponse.json(result, { status: 201 }); return NextResponse.json(result, { status: 201 });
} });
+16 -6
View File
@@ -1,20 +1,26 @@
import { NextResponse } from "next/server"; import { NextResponse } from "next/server";
import { z } from "zod"; import { z } from "zod";
import { deleteRecording, getRecording, renameRecording } from "@/lib/db/queries/recordings"; import { deleteRecording, getRecording, renameRecording } from "@/lib/db/queries/recordings";
import { withRouteLogging } from "@/lib/api/with-route-logging";
const patchSchema = z.object({ const patchSchema = z.object({
name: z.string().min(1).max(160).optional(), name: z.string().min(1).max(160).optional(),
description: z.string().max(2000).optional(), description: z.string().max(2000).optional(),
}); });
export async function GET(_req: Request, { params }: { params: Promise<{ id: string }> }) { export const GET = withRouteLogging(
"recordings.get",
async (_req: Request, { params }: { params: Promise<{ id: string }> }) => {
const { id } = await params; const { id } = await params;
const result = await getRecording(Number(id)); const result = await getRecording(Number(id));
if (!result) return NextResponse.json({ error: "not found" }, { status: 404 }); if (!result) return NextResponse.json({ error: "not found" }, { status: 404 });
return NextResponse.json(result); return NextResponse.json(result);
} },
);
export async function PATCH(req: Request, { params }: { params: Promise<{ id: string }> }) { export const PATCH = withRouteLogging(
"recordings.update",
async (req: Request, { params }: { params: Promise<{ id: string }> }) => {
const { id } = await params; const { id } = await params;
const parsed = patchSchema.safeParse(await req.json().catch(() => null)); const parsed = patchSchema.safeParse(await req.json().catch(() => null));
if (!parsed.success) { if (!parsed.success) {
@@ -23,10 +29,14 @@ export async function PATCH(req: Request, { params }: { params: Promise<{ id: st
const updated = await renameRecording(Number(id), parsed.data); const updated = await renameRecording(Number(id), parsed.data);
if (!updated) return NextResponse.json({ error: "not found" }, { status: 404 }); if (!updated) return NextResponse.json({ error: "not found" }, { status: 404 });
return NextResponse.json({ recording: updated }); return NextResponse.json({ recording: updated });
} },
);
export async function DELETE(_req: Request, { params }: { params: Promise<{ id: string }> }) { export const DELETE = withRouteLogging(
"recordings.delete",
async (_req: Request, { params }: { params: Promise<{ id: string }> }) => {
const { id } = await params; const { id } = await params;
await deleteRecording(Number(id)); await deleteRecording(Number(id));
return NextResponse.json({ ok: true }); return NextResponse.json({ ok: true });
} },
);
+5 -4
View File
@@ -1,6 +1,7 @@
import { NextResponse } from "next/server"; import { NextResponse } from "next/server";
import { z } from "zod"; import { z } from "zod";
import { createRecording, listRecordings } from "@/lib/db/queries/recordings"; import { createRecording, listRecordings } from "@/lib/db/queries/recordings";
import { withRouteLogging } from "@/lib/api/with-route-logging";
const bodySchema = z.object({ const bodySchema = z.object({
sourcePlaySessionId: z.number().int().positive(), sourcePlaySessionId: z.number().int().positive(),
@@ -8,16 +9,16 @@ const bodySchema = z.object({
description: z.string().max(2000).optional(), description: z.string().max(2000).optional(),
}); });
export async function GET() { export const GET = withRouteLogging("recordings.list", async () => {
const rows = await listRecordings(); const rows = await listRecordings();
return NextResponse.json({ recordings: rows }); return NextResponse.json({ recordings: rows });
} });
export async function POST(req: Request) { export const POST = withRouteLogging("recordings.create", async (req: Request) => {
const parsed = bodySchema.safeParse(await req.json().catch(() => null)); const parsed = bodySchema.safeParse(await req.json().catch(() => null));
if (!parsed.success) { if (!parsed.success) {
return NextResponse.json({ error: parsed.error.message }, { status: 400 }); return NextResponse.json({ error: parsed.error.message }, { status: 400 });
} }
const recording = await createRecording(parsed.data); const recording = await createRecording(parsed.data);
return NextResponse.json({ recording }, { status: 201 }); return NextResponse.json({ recording }, { status: 201 });
} });
+3 -2
View File
@@ -1,9 +1,10 @@
import { NextResponse } from "next/server"; import { NextResponse } from "next/server";
import { getDeviceCommandCounts, getDeviceUsageStats } from "@/lib/db/queries/stats"; import { getDeviceCommandCounts, getDeviceUsageStats } from "@/lib/db/queries/stats";
import { withRouteLogging } from "@/lib/api/with-route-logging";
export async function GET() { export const GET = withRouteLogging("stats.devices", async () => {
const [usage, commandCounts] = await Promise.all([getDeviceUsageStats(), getDeviceCommandCounts()]); const [usage, commandCounts] = await Promise.all([getDeviceUsageStats(), getDeviceCommandCounts()]);
const commandCountByDevice = new Map(commandCounts.map((c) => [c.deviceId, c.commandCount])); const commandCountByDevice = new Map(commandCounts.map((c) => [c.deviceId, c.commandCount]));
const devices = usage.map((d) => ({ ...d, commandCount: commandCountByDevice.get(d.deviceId) ?? 0 })); const devices = usage.map((d) => ({ ...d, commandCount: commandCountByDevice.get(d.deviceId) ?? 0 }));
return NextResponse.json({ devices }); return NextResponse.json({ devices });
} });
+3 -2
View File
@@ -1,7 +1,8 @@
import { NextResponse } from "next/server"; import { NextResponse } from "next/server";
import { getRecordingLibraryStats } from "@/lib/db/queries/stats"; import { getRecordingLibraryStats } from "@/lib/db/queries/stats";
import { withRouteLogging } from "@/lib/api/with-route-logging";
export async function GET() { export const GET = withRouteLogging("stats.recordings", async () => {
const stats = await getRecordingLibraryStats(); const stats = await getRecordingLibraryStats();
return NextResponse.json(stats); return NextResponse.json(stats);
} });
@@ -1,9 +1,13 @@
import { NextResponse } from "next/server"; import { NextResponse } from "next/server";
import { getSessionTimeline } from "@/lib/db/queries/stats"; import { getSessionTimeline } from "@/lib/db/queries/stats";
import { withRouteLogging } from "@/lib/api/with-route-logging";
export async function GET(req: Request, { params }: { params: Promise<{ id: string }> }) { export const GET = withRouteLogging(
"stats.session-timeline",
async (req: Request, { params }: { params: Promise<{ id: string }> }) => {
const { id } = await params; const { id } = await params;
const bucketMs = Number(new URL(req.url).searchParams.get("bucketMs") ?? 1000); const bucketMs = Number(new URL(req.url).searchParams.get("bucketMs") ?? 1000);
const timeline = await getSessionTimeline(Number(id), bucketMs); const timeline = await getSessionTimeline(Number(id), bucketMs);
return NextResponse.json({ timeline }); return NextResponse.json({ timeline });
} },
);
+3 -2
View File
@@ -1,7 +1,8 @@
import { NextResponse } from "next/server"; import { NextResponse } from "next/server";
import { getSessionsSummary } from "@/lib/db/queries/stats"; import { getSessionsSummary } from "@/lib/db/queries/stats";
import { withRouteLogging } from "@/lib/api/with-route-logging";
export async function GET() { export const GET = withRouteLogging("stats.sessions", async () => {
const summary = await getSessionsSummary(); const summary = await getSessionsSummary();
return NextResponse.json(summary); return NextResponse.json(summary);
} });
+26
View File
@@ -0,0 +1,26 @@
import Link from "next/link";
import type { Metadata } from "next";
import { Button } from "@/components/ui/button";
import { Card, CardContent } from "@/components/ui/card";
import { BrandMark } from "@/components/layout/BrandMark";
export const metadata: Metadata = { title: "Not found" };
export default function NotFound() {
return (
<div className="flex min-h-dvh items-center justify-center p-4">
<Card className="bp-glass w-full max-w-sm">
<CardContent className="flex flex-col items-center gap-4 py-4 text-center">
<BrandMark size={32} />
<div className="space-y-1">
<p className="bp-readout bp-gradient-text text-4xl font-semibold">404</p>
<p className="text-sm text-muted-foreground">This page doesn&apos;t exist.</p>
</div>
<Button asChild size="sm">
<Link href="/">Back to dashboard</Link>
</Button>
</CardContent>
</Card>
</div>
);
}
+25
View File
@@ -1,3 +1,5 @@
import { createLogger } from "@/lib/logger";
export async function register() { export async function register() {
// Only the Node.js server runtime touches better-sqlite3; the Edge // Only the Node.js server runtime touches better-sqlite3; the Edge
// middleware runtime must never import this module. // middleware runtime must never import this module.
@@ -6,3 +8,26 @@ export async function register() {
runMigrations(); runMigrations();
} }
} }
export async function onRequestError(
error: unknown,
request: { path: string; method: string; headers: Record<string, string | string[]> },
context: { routerKind: string; routePath: string; routeType: string },
) {
const log = createLogger("uncaught");
// Safety net for errors that escape a route handler's own try/catch (e.g. a
// bug in code that never reaches withRouteLogging, or a rendering error) -
// route handlers wrapped in withRouteLogging already log and convert their
// own errors to a JSON 500, so this rarely double-logs the same failure.
const digest = typeof error === "object" && error !== null && "digest" in error ? String(error.digest) : undefined;
log.error("unhandled error", {
message: error instanceof Error ? error.message : String(error),
digest,
stack: error instanceof Error ? error.stack : undefined,
path: request.path,
method: request.method,
routePath: context.routePath,
routeType: context.routeType,
});
}
+43
View File
@@ -0,0 +1,43 @@
import { NextResponse } from "next/server";
import { randomUUID } from "node:crypto";
import { createLogger } from "@/lib/logger";
const log = createLogger("api");
type RouteHandler<Ctx> = (req: Request, ctx: Ctx) => Promise<Response> | Response;
/**
* Wraps an App Router route handler with consistent request/response logging:
* a reqId (also echoed as `x-request-id`), method/path, status, and duration on
* every call, plus a logged stack trace and JSON 500 for anything the handler
* doesn't catch itself. Every export in app/api/** goes through this so log
* shape and error handling stay uniform across routes instead of being
* reimplemented per file.
*/
export function withRouteLogging<Ctx = unknown>(routeName: string, handler: RouteHandler<Ctx>): RouteHandler<Ctx> {
return async (req, ctx) => {
const reqId = randomUUID();
const start = performance.now();
const { pathname, search } = new URL(req.url);
const reqLog = log.child({ reqId, route: routeName, method: req.method });
reqLog.debug("request start", { path: pathname + search });
try {
const res = await handler(req, ctx);
const durationMs = Math.round(performance.now() - start);
const level = res.status >= 500 ? "error" : res.status >= 400 ? "warn" : "info";
reqLog[level]("request end", { status: res.status, durationMs });
res.headers.set("x-request-id", reqId);
return res;
} catch (err) {
const durationMs = Math.round(performance.now() - start);
reqLog.error("request failed", {
durationMs,
error: err instanceof Error ? err.message : String(err),
stack: err instanceof Error ? err.stack : undefined,
});
return NextResponse.json({ error: "internal error", reqId }, { status: 500 });
}
};
}
+12 -5
View File
@@ -34,14 +34,21 @@ export interface Logger {
info(message: string, fields?: LogFields): void; info(message: string, fields?: LogFields): void;
warn(message: string, fields?: LogFields): void; warn(message: string, fields?: LogFields): void;
error(message: string, fields?: LogFields): void; error(message: string, fields?: LogFields): void;
/** Returns a logger that merges `bindings` into every call's fields - for attaching
* per-request context (reqId, route) without threading it through every log call. */
child(bindings: LogFields): Logger;
} }
/** Scoped logger. `scope` is the bracketed tag, e.g. createLogger("api") -> "[api]". */ /** Scoped logger. `scope` is the bracketed tag, e.g. createLogger("api") -> "[api]". */
export function createLogger(scope: string): Logger { export function createLogger(scope: string, bindings?: LogFields): Logger {
const log = (level: LogLevel, message: string, fields?: LogFields) =>
write(level, scope, message, bindings || fields ? { ...bindings, ...fields } : undefined);
return { return {
debug: (message, fields) => write("debug", scope, message, fields), debug: (message, fields) => log("debug", message, fields),
info: (message, fields) => write("info", scope, message, fields), info: (message, fields) => log("info", message, fields),
warn: (message, fields) => write("warn", scope, message, fields), warn: (message, fields) => log("warn", message, fields),
error: (message, fields) => write("error", scope, message, fields), error: (message, fields) => log("error", message, fields),
child: (extra) => createLogger(scope, { ...bindings, ...extra }),
}; };
} }
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "sexy", "name": "sexy",
"version": "0.3.0", "version": "0.4.0",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "next dev", "dev": "next dev",
+5
View File
@@ -1,5 +1,8 @@
import { NextRequest, NextResponse } from "next/server"; import { NextRequest, NextResponse } from "next/server";
import { SESSION_COOKIE_NAME, verifySessionToken } from "@/lib/auth/session"; import { SESSION_COOKIE_NAME, verifySessionToken } from "@/lib/auth/session";
import { createLogger } from "@/lib/logger";
const log = createLogger("auth");
export default async function proxy(req: NextRequest) { export default async function proxy(req: NextRequest) {
const { pathname } = req.nextUrl; const { pathname } = req.nextUrl;
@@ -13,9 +16,11 @@ export default async function proxy(req: NextRequest) {
} }
if (pathname.startsWith("/api/")) { if (pathname.startsWith("/api/")) {
log.warn("rejected unauthenticated request", { path: pathname, method: req.method });
return NextResponse.json({ error: "unauthorized" }, { status: 401 }); return NextResponse.json({ error: "unauthorized" }, { status: 401 });
} }
log.warn("redirecting unauthenticated request to login", { path: pathname });
const loginUrl = new URL("/login", req.url); const loginUrl = new URL("/login", req.url);
loginUrl.searchParams.set("from", pathname); loginUrl.searchParams.set("from", pathname);
return NextResponse.redirect(loginUrl); return NextResponse.redirect(loginUrl);