@@ -0,0 +1,46 @@
|
||||
import { NextRequest, NextResponse } from "next/server";
|
||||
import { auth } from "@/auth";
|
||||
import { db } from "@/lib/db";
|
||||
|
||||
function requireRole(role: string) {
|
||||
return ["ADMIN", "PRODUCER", "SUPERVISOR"].includes(role);
|
||||
}
|
||||
|
||||
// PATCH /api/shoot-log/takes/[takeId]/attachments/[attachmentId]
|
||||
export async function PATCH(
|
||||
req: NextRequest,
|
||||
{ params }: { params: Promise<{ takeId: string; attachmentId: string }> }
|
||||
) {
|
||||
const session = await auth();
|
||||
if (!session?.user) return NextResponse.json({ error: "Unauthorized" }, { status: 401 });
|
||||
if (!requireRole(session.user.role))
|
||||
return NextResponse.json({ error: "Forbidden" }, { status: 403 });
|
||||
|
||||
const { attachmentId } = await params;
|
||||
const { caption, category } = await req.json();
|
||||
|
||||
const attachment = await db.takeAttachment.update({
|
||||
where: { id: attachmentId },
|
||||
data: {
|
||||
...(caption !== undefined ? { caption } : {}),
|
||||
...(category !== undefined ? { category } : {}),
|
||||
},
|
||||
});
|
||||
|
||||
return NextResponse.json({ attachment });
|
||||
}
|
||||
|
||||
// DELETE /api/shoot-log/takes/[takeId]/attachments/[attachmentId]
|
||||
export async function DELETE(
|
||||
_req: NextRequest,
|
||||
{ params }: { params: Promise<{ takeId: string; attachmentId: string }> }
|
||||
) {
|
||||
const session = await auth();
|
||||
if (!session?.user) return NextResponse.json({ error: "Unauthorized" }, { status: 401 });
|
||||
if (!requireRole(session.user.role))
|
||||
return NextResponse.json({ error: "Forbidden" }, { status: 403 });
|
||||
|
||||
const { attachmentId } = await params;
|
||||
await db.takeAttachment.delete({ where: { id: attachmentId } });
|
||||
return NextResponse.json({ ok: true });
|
||||
}
|
||||
@@ -0,0 +1,69 @@
|
||||
import { NextRequest, NextResponse } from "next/server";
|
||||
import { auth } from "@/auth";
|
||||
import { db } from "@/lib/db";
|
||||
import { AttachmentFileType, AttachmentCategory } from "@prisma/client";
|
||||
|
||||
function requireRole(role: string) {
|
||||
return ["ADMIN", "PRODUCER", "SUPERVISOR"].includes(role);
|
||||
}
|
||||
|
||||
// GET /api/shoot-log/takes/[takeId]/attachments
|
||||
export async function GET(
|
||||
_req: NextRequest,
|
||||
{ params }: { params: Promise<{ takeId: string }> }
|
||||
) {
|
||||
const session = await auth();
|
||||
if (!session?.user) return NextResponse.json({ error: "Unauthorized" }, { status: 401 });
|
||||
if (!requireRole(session.user.role))
|
||||
return NextResponse.json({ error: "Forbidden" }, { status: 403 });
|
||||
|
||||
const { takeId } = await params;
|
||||
const attachments = await db.takeAttachment.findMany({
|
||||
where: { takeId },
|
||||
orderBy: { sortOrder: "asc" },
|
||||
include: { uploadedBy: { select: { id: true, name: true } } },
|
||||
});
|
||||
|
||||
return NextResponse.json({ attachments });
|
||||
}
|
||||
|
||||
// POST /api/shoot-log/takes/[takeId]/attachments
|
||||
export async function POST(
|
||||
req: NextRequest,
|
||||
{ params }: { params: Promise<{ takeId: string }> }
|
||||
) {
|
||||
const session = await auth();
|
||||
if (!session?.user) return NextResponse.json({ error: "Unauthorized" }, { status: 401 });
|
||||
if (!requireRole(session.user.role))
|
||||
return NextResponse.json({ error: "Forbidden" }, { status: 403 });
|
||||
|
||||
const { takeId } = await params;
|
||||
const body = await req.json();
|
||||
const { fileUrl, fileKey, fileName, fileSize, fileType, category, caption } = body;
|
||||
|
||||
if (!fileUrl || !fileName) {
|
||||
return NextResponse.json({ error: "fileUrl and fileName required" }, { status: 400 });
|
||||
}
|
||||
|
||||
const last = await db.takeAttachment.findFirst({
|
||||
where: { takeId },
|
||||
orderBy: { sortOrder: "desc" },
|
||||
});
|
||||
|
||||
const attachment = await db.takeAttachment.create({
|
||||
data: {
|
||||
takeId,
|
||||
fileUrl,
|
||||
fileKey: fileKey ?? "",
|
||||
fileName,
|
||||
fileSize: fileSize ? BigInt(fileSize) : undefined,
|
||||
fileType: (fileType as AttachmentFileType) ?? "IMAGE",
|
||||
category: (category as AttachmentCategory) ?? "MISCELLANEOUS",
|
||||
caption: caption ?? null,
|
||||
sortOrder: (last?.sortOrder ?? -1) + 1,
|
||||
uploadedById: session.user.id,
|
||||
},
|
||||
});
|
||||
|
||||
return NextResponse.json({ attachment }, { status: 201 });
|
||||
}
|
||||
@@ -0,0 +1,90 @@
|
||||
import { NextRequest, NextResponse } from "next/server";
|
||||
import { auth } from "@/auth";
|
||||
import { db } from "@/lib/db";
|
||||
|
||||
function requireRole(role: string) {
|
||||
return ["ADMIN", "PRODUCER", "SUPERVISOR"].includes(role);
|
||||
}
|
||||
|
||||
function sanitize(data: Record<string, unknown>) {
|
||||
const allowed = new Set([
|
||||
"scene","shotLabel","unitLabel","cameraLetter","clipName","roll","cameraModel",
|
||||
"resolution","codec","fps","shutter","iso","whiteBalance","colourSpace",
|
||||
"lensSet","lens","tStop","filters","isAnamorphic",
|
||||
"hasHdri","hasChromeBall","hasGreyBall","hasMacbeth","hasCleanPlate",
|
||||
"hasSurvey","hasLidar","hasWitnessCamera","hasLensGrid","hasTexturePhotos","hasPhotogrammetry",
|
||||
"weather","sunDirection","artificialLights",
|
||||
"supervisorNotes","continuityNotes","vfxRequirements","quality",
|
||||
]);
|
||||
return Object.fromEntries(
|
||||
Object.entries(data)
|
||||
.filter(([k]) => allowed.has(k))
|
||||
.map(([k, v]) => [k, v === "" ? null : v])
|
||||
);
|
||||
}
|
||||
|
||||
// GET /api/shoot-log/takes/[takeId]
|
||||
export async function GET(
|
||||
_req: NextRequest,
|
||||
{ params }: { params: Promise<{ takeId: string }> }
|
||||
) {
|
||||
const session = await auth();
|
||||
if (!session?.user) return NextResponse.json({ error: "Unauthorized" }, { status: 401 });
|
||||
if (!requireRole(session.user.role))
|
||||
return NextResponse.json({ error: "Forbidden" }, { status: 403 });
|
||||
|
||||
const { takeId } = await params;
|
||||
|
||||
const take = await db.take.findUnique({
|
||||
where: { id: takeId },
|
||||
include: {
|
||||
attachments: { orderBy: { sortOrder: "asc" } },
|
||||
setup: {
|
||||
include: {
|
||||
shootDay: { select: { id: true, date: true, unit: true, label: true, projectId: true } },
|
||||
takes: { orderBy: { takeNumber: "asc" }, select: { id: true, takeNumber: true } },
|
||||
},
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
if (!take) return NextResponse.json({ error: "Not found" }, { status: 404 });
|
||||
return NextResponse.json({ take });
|
||||
}
|
||||
|
||||
// PATCH /api/shoot-log/takes/[takeId]
|
||||
export async function PATCH(
|
||||
req: NextRequest,
|
||||
{ params }: { params: Promise<{ takeId: string }> }
|
||||
) {
|
||||
const session = await auth();
|
||||
if (!session?.user) return NextResponse.json({ error: "Unauthorized" }, { status: 401 });
|
||||
if (!requireRole(session.user.role))
|
||||
return NextResponse.json({ error: "Forbidden" }, { status: 403 });
|
||||
|
||||
const { takeId } = await params;
|
||||
const body = await req.json();
|
||||
|
||||
const take = await db.take.update({
|
||||
where: { id: takeId },
|
||||
data: sanitize(body),
|
||||
include: { attachments: { orderBy: { sortOrder: "asc" } } },
|
||||
});
|
||||
|
||||
return NextResponse.json({ take });
|
||||
}
|
||||
|
||||
// DELETE /api/shoot-log/takes/[takeId]
|
||||
export async function DELETE(
|
||||
_req: NextRequest,
|
||||
{ params }: { params: Promise<{ takeId: string }> }
|
||||
) {
|
||||
const session = await auth();
|
||||
if (!session?.user) return NextResponse.json({ error: "Unauthorized" }, { status: 401 });
|
||||
if (!requireRole(session.user.role))
|
||||
return NextResponse.json({ error: "Forbidden" }, { status: 403 });
|
||||
|
||||
const { takeId } = await params;
|
||||
await db.take.delete({ where: { id: takeId } });
|
||||
return NextResponse.json({ ok: true });
|
||||
}
|
||||
Reference in New Issue
Block a user