Files
football-next/app/api/golden-cards/[id]/reveal/route.ts
2026-05-13 15:46:27 +03:30

25 lines
1.0 KiB
TypeScript

import { NextRequest, NextResponse } from "next/server";
import { db } from "@/lib/db";
import { getApiUser } from "@/lib/apiAuth";
// POST /api/golden-cards/[id]/reveal
export async function POST(req: NextRequest, { params }: { params: Promise<{ id: string }> }) {
const apiUser = await getApiUser(req);
if (!apiUser) return NextResponse.json({ error: "Unauthorized" }, { status: 401 });
const userId = apiUser.id;
const { id } = await params;
const card = await db.goldenCard.findUnique({ where: { id } });
if (!card) return NextResponse.json({ error: "Card not found" }, { status: 404 });
if (card.userId !== userId) return NextResponse.json({ error: "Forbidden" }, { status: 403 });
if (card.status === "OPENED") return NextResponse.json({ error: "کارت قبلاً باز شده" }, { status: 400 });
const updated = await db.goldenCard.update({
where: { id },
data: { status: "OPENED", openedAt: new Date() },
include: { player: { include: { country: true } } },
});
return NextResponse.json(updated);
}