svrjs-nextjs-website/app/api/uploadvulnerabilities/route.ts

24 lines
649 B
TypeScript
Raw Normal View History

2024-07-30 21:34:39 +02:00
import { NextResponse } from "next/server";
import clientPromise from "@/lib/db";
import { revalidatePath } from "next/cache";
2024-07-30 21:34:39 +02:00
// Force the API to use SSR instead of static generation
export const dynamic = "force-dynamic";
export async function POST(request: Request) {
const body = await request.json();
const { version, date, bullets } = body;
2024-07-30 21:34:39 +02:00
const client = await clientPromise;
const db = client.db("downloadsDatabase");
2024-07-30 21:34:39 +02:00
const result = await db.collection("vulnerabilities").insertOne({
version,
bullets
});
2024-07-30 21:34:39 +02:00
revalidatePath("/vulnerabilities");
return NextResponse.json({ success: true, id: result.insertedId });
2024-07-30 21:34:39 +02:00
}