Files
twotalesanimation 81ad7e4ea9 Initial commit
2026-06-11 10:46:09 +02:00

38 lines
1.2 KiB
TypeScript

// app/api/admin/delete-video/route.ts
import { NextResponse } from 'next/server';
import { getServerSession } from 'next-auth';
import { authOptions } from '@/lib/auth-options';
import { prisma } from '@/lib/prisma';
export async function DELETE(req: Request) {
try {
const session = await getServerSession(authOptions);
if (!session?.user?.email)
return NextResponse.json({ error: 'Unauthorized' }, { status: 401 });
const role = (session as any)?.user?.role ?? null;
if (!(role === 'admin' || role === 'superadmin')) {
return NextResponse.json({ error: 'Forbidden' }, { status: 403 });
}
const body = await req.json().catch(() => ({}));
const { videoId } = body ?? {};
if (!videoId)
return NextResponse.json({ error: 'videoId required' }, { status: 400 });
// Delete video (cascade will handle progress records)
await prisma.video.delete({
where: { id: videoId },
});
return NextResponse.json({ success: true });
} catch (err: any) {
console.error('delete video error', err);
return NextResponse.json(
{ error: err?.message ?? 'server error' },
{ status: 500 }
);
}
}