362f65656b
Full audit (bugs/UI-UX/backend/feature-gap) turned up a money-leak AI quota bypass, webhook SSRF, and a long tail of missing pagination/auth/a11y work. Fixes land together since HANDOFF.md tracked them as one backlog. - AI routes charge tier quota before generating; nutrition POST is author-only - Webhook dispatch re-validates URL per delivery (SSRF/DNS-rebinding), treats redirects as failures; recipe.published now actually dispatches - New indexes/unique constraints on recipes, meal-planning, comments FK cascade - Recipe PUT/restore snapshot only inside the transaction, after validation - Recipe DELETE cleans up S3 objects (recipe + review photos) - Optimistic UI (favorite/star/follow/shopping-list) rolls back on failure - Upload presign enforces file size cap + per-tier storage quota - Route-level loading/error/not-found states across (app), admin, and root - middleware.ts guards (app)/admin; requireAdmin checks DB role, not cached session; rate limiting applied to both session and API-key branches, bucketed per key; Stripe webhook dedupes by event id - Pagination added to recipes, feed, profile, comments, pantry, admin tables - Nav shows real avatar + profile link + dark-mode toggle; destructive actions standardized on AlertDialog - Unsaved-changes guard + real ingredient/step validation on recipe form; canonical /recipes/[id] used in-app; next/image migration; aria-labels and alt text across icon buttons, avatars, recipe photos - packages/api-types removed (zero callers, too drifted to safely rewire); openapi.ts and ai-keys error shape drift fixed; BYOK decrypt failures now surface instead of silently falling back to the platform key Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
72 lines
2.5 KiB
TypeScript
72 lines
2.5 KiB
TypeScript
import { NextRequest, NextResponse } from "next/server";
|
|
import { z } from "zod";
|
|
import { db, mealPlans, mealPlanEntries, recipes, eq, and, or, ne } from "@epicure/db";
|
|
import { requireSession } from "@/lib/api-auth";
|
|
import { dispatchWebhook } from "@/lib/webhooks";
|
|
|
|
type Params = { params: Promise<{ weekStart: string }> };
|
|
|
|
const Schema = z.object({
|
|
day: z.enum(["mon", "tue", "wed", "thu", "fri", "sat", "sun"]),
|
|
mealType: z.enum(["breakfast", "lunch", "dinner", "snack"]),
|
|
recipeId: z.string().optional(),
|
|
servings: z.number().int().min(1).max(100).default(2),
|
|
note: z.string().max(500).optional(),
|
|
});
|
|
|
|
async function getOrCreatePlan(userId: string, weekStart: string) {
|
|
const existing = await db.query.mealPlans.findFirst({
|
|
where: and(eq(mealPlans.userId, userId), eq(mealPlans.weekStart, weekStart)),
|
|
});
|
|
if (existing) return existing;
|
|
|
|
const id = crypto.randomUUID();
|
|
await db.insert(mealPlans).values({ id, userId, weekStart });
|
|
return { id, userId, weekStart };
|
|
}
|
|
|
|
export async function POST(req: NextRequest, { params }: Params) {
|
|
const { session, response } = await requireSession();
|
|
if (response) return response;
|
|
const { weekStart } = await params;
|
|
|
|
const body = await req.json() as unknown;
|
|
const parsed = Schema.safeParse(body);
|
|
if (!parsed.success) return NextResponse.json({ error: "Validation error" }, { status: 400 });
|
|
|
|
if (parsed.data.recipeId) {
|
|
const recipe = await db.query.recipes.findFirst({
|
|
where: and(
|
|
eq(recipes.id, parsed.data.recipeId),
|
|
or(eq(recipes.authorId, session!.user.id), ne(recipes.visibility, "private"))
|
|
),
|
|
});
|
|
if (!recipe) return NextResponse.json({ error: "Recipe not found" }, { status: 404 });
|
|
}
|
|
|
|
const plan = await getOrCreatePlan(session!.user.id, weekStart);
|
|
|
|
// Remove existing entry for same day+mealType before inserting
|
|
await db.delete(mealPlanEntries).where(
|
|
and(
|
|
eq(mealPlanEntries.mealPlanId, plan.id),
|
|
eq(mealPlanEntries.day, parsed.data.day),
|
|
eq(mealPlanEntries.mealType, parsed.data.mealType)
|
|
)
|
|
);
|
|
|
|
const entryId = crypto.randomUUID();
|
|
await db.insert(mealPlanEntries).values({
|
|
id: entryId,
|
|
mealPlanId: plan.id,
|
|
day: parsed.data.day,
|
|
mealType: parsed.data.mealType,
|
|
recipeId: parsed.data.recipeId,
|
|
servings: parsed.data.servings,
|
|
note: parsed.data.note,
|
|
});
|
|
|
|
void dispatchWebhook(session!.user.id, "meal_plan.updated", { weekStart, day: parsed.data.day, mealType: parsed.data.mealType });
|
|
return NextResponse.json({ id: entryId }, { status: 201 });
|
|
}
|