40 lines
1.4 KiB
TypeScript
40 lines
1.4 KiB
TypeScript
import { NextRequest, NextResponse } from 'next/server';
|
|
import { eq } from 'drizzle-orm';
|
|
import { db, guests } from '@/lib/db';
|
|
import { verifyAdminToken } from '@/lib/auth/tokens';
|
|
|
|
export async function PATCH(
|
|
request: NextRequest,
|
|
{ params }: { params: Promise<{ id: string }> }
|
|
) {
|
|
if (!verifyAdminToken(request)) {
|
|
return NextResponse.json({ error: 'Unauthorized' }, { status: 401 });
|
|
}
|
|
const { id } = await params;
|
|
const body = await request.json().catch(() => ({}));
|
|
const name = (body?.name ?? '').toString().trim();
|
|
if (!name) {
|
|
return NextResponse.json({ error: 'name is required' }, { status: 400 });
|
|
}
|
|
const [row] = await db
|
|
.update(guests)
|
|
.set({ name, updatedAt: new Date() })
|
|
.where(eq(guests.id, id))
|
|
.returning();
|
|
if (!row) return NextResponse.json({ error: 'Not found' }, { status: 404 });
|
|
return NextResponse.json({ success: true, guest: row });
|
|
}
|
|
|
|
export async function DELETE(
|
|
request: NextRequest,
|
|
{ params }: { params: Promise<{ id: string }> }
|
|
) {
|
|
if (!verifyAdminToken(request)) {
|
|
return NextResponse.json({ error: 'Unauthorized' }, { status: 401 });
|
|
}
|
|
const { id } = await params;
|
|
const result = await db.delete(guests).where(eq(guests.id, id)).returning();
|
|
if (result.length === 0) return NextResponse.json({ error: 'Not found' }, { status: 404 });
|
|
return NextResponse.json({ success: true });
|
|
}
|