import { NextResponse } from 'next/server'; import { withAuth, withPermission } from '@/lib/api/helpers'; import { parseBody } from '@/lib/api/route-helpers'; import { updateBerthSchema } from '@/lib/validators/berths'; import { getBerthById, updateBerth, deleteBerth } from '@/lib/services/berths.service'; import { errorResponse } from '@/lib/errors'; // GET /api/v1/berths/[id] export const GET = withAuth( withPermission('berths', 'view', async (req, ctx, params) => { try { const berth = await getBerthById(params.id!, ctx.portId); return NextResponse.json({ data: berth }); } catch (error) { return errorResponse(error); } }), ); // PATCH /api/v1/berths/[id] export const PATCH = withAuth( withPermission('berths', 'edit', async (req, ctx, params) => { try { const body = await parseBody(req, updateBerthSchema); const updated = await updateBerth(params.id!, ctx.portId, body, { userId: ctx.userId, portId: ctx.portId, ipAddress: ctx.ipAddress, userAgent: ctx.userAgent, }); return NextResponse.json({ data: updated }); } catch (error) { return errorResponse(error); } }), ); // DELETE /api/v1/berths/[id] export const DELETE = withAuth( withPermission('berths', 'edit', async (_req, ctx, params) => { try { await deleteBerth(params.id!, ctx.portId, { userId: ctx.userId, portId: ctx.portId, ipAddress: ctx.ipAddress, userAgent: ctx.userAgent, }); return NextResponse.json({ success: true }); } catch (error) { return errorResponse(error); } }), );