mirror of
https://github.com/trafficlunar/tomodachi-share.git
synced 2026-03-28 11:13:16 +00:00
23 lines
851 B
TypeScript
23 lines
851 B
TypeScript
import { NextRequest, NextResponse } from "next/server";
|
|
import { z } from "zod";
|
|
import { auth } from "@/lib/auth";
|
|
|
|
let canSubmit = true;
|
|
|
|
export async function GET() {
|
|
return NextResponse.json({ success: true, value: canSubmit });
|
|
}
|
|
|
|
export async function PATCH(request: NextRequest) {
|
|
const session = await auth();
|
|
if (!session) return NextResponse.json({ error: "Unauthorized" }, { status: 401 });
|
|
|
|
if (Number(session.user?.id) !== Number(process.env.NEXT_PUBLIC_ADMIN_USER_ID)) return NextResponse.json({ error: "Forbidden" }, { status: 403 });
|
|
|
|
const body = await request.json();
|
|
const validatedCanSubmit = z.boolean().safeParse(body);
|
|
if (!validatedCanSubmit.success) return NextResponse.json({ error: "Failed to validate body" }, { status: 400 });
|
|
|
|
canSubmit = validatedCanSubmit.data;
|
|
return NextResponse.json({ success: true });
|
|
}
|