41 lines
1.2 KiB
TypeScript
41 lines
1.2 KiB
TypeScript
// app/api/admin/delete-playlist/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 { playlistId } = body ?? {};
|
|
|
|
if (!playlistId)
|
|
return NextResponse.json(
|
|
{ error: 'playlistId required' },
|
|
{ status: 400 }
|
|
);
|
|
|
|
// Delete playlist (cascade will handle videos via DB constraints)
|
|
await prisma.playlist.delete({
|
|
where: { id: playlistId },
|
|
});
|
|
|
|
return NextResponse.json({ success: true });
|
|
} catch (err: any) {
|
|
console.error('delete playlist error', err);
|
|
return NextResponse.json(
|
|
{ error: err?.message ?? 'server error' },
|
|
{ status: 500 }
|
|
);
|
|
}
|
|
}
|