8ef97da2c2
Audited every documented request/response schema against the real
Zod validators and NextResponse.json shapes across all route
families, then fixed drift: missing batch-cook/tags/photos fields on
recipes, wrong comment/rating shapes, meal-plan entry shape (day vs
dayOfWeek, nullable recipeId), shopping-list/pantry response fields,
a phantom GET /webhooks/{id} with no backing route, and numerous
missing 400/401/429 response codes.
Also fixes a real bug found during the audit: the webhook-redelivery
route returned {error: object} instead of the app-wide {error:
string} convention on validation failure.
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
42 lines
1.4 KiB
TypeScript
42 lines
1.4 KiB
TypeScript
import { NextRequest, NextResponse } from "next/server";
|
|
import { z } from "zod";
|
|
import { db, webhooks, webhookDeliveries, eq, and } from "@epicure/db";
|
|
import { requireSession } from "@/lib/api-auth";
|
|
import { dispatchWebhook, type WebhookEvent } from "@/lib/webhooks";
|
|
|
|
const Schema = z.object({ deliveryId: z.string().uuid() });
|
|
|
|
type Params = { params: Promise<{ id: string }> };
|
|
|
|
export async function POST(req: NextRequest, { params }: Params) {
|
|
const { session, response } = await requireSession();
|
|
if (response) return response;
|
|
|
|
const { id } = await params;
|
|
|
|
const hook = await db.query.webhooks.findFirst({
|
|
where: and(eq(webhooks.id, id), eq(webhooks.userId, session!.user.id)),
|
|
columns: { id: true },
|
|
});
|
|
if (!hook) return NextResponse.json({ error: "Not found" }, { status: 404 });
|
|
|
|
const body = Schema.safeParse(await req.json());
|
|
if (!body.success) return NextResponse.json({ error: "Validation error", issues: body.error.issues }, { status: 400 });
|
|
|
|
const delivery = await db.query.webhookDeliveries.findFirst({
|
|
where: and(
|
|
eq(webhookDeliveries.id, body.data.deliveryId),
|
|
eq(webhookDeliveries.webhookId, id)
|
|
),
|
|
});
|
|
if (!delivery) return NextResponse.json({ error: "Delivery not found" }, { status: 404 });
|
|
|
|
void dispatchWebhook(
|
|
session!.user.id,
|
|
delivery.event as WebhookEvent,
|
|
(delivery.payload ?? {}) as object
|
|
);
|
|
|
|
return NextResponse.json({ ok: true });
|
|
}
|