import { NextResponse } from 'next/server'; import { withAuth, withPermission, type RouteHandler } from '@/lib/api/helpers'; import { parseBody } from '@/lib/api/route-helpers'; import { errorResponse } from '@/lib/errors'; import { getYachtById, updateYacht, archiveYacht } from '@/lib/services/yachts.service'; import { updateYachtSchema } from '@/lib/validators/yachts'; export const getHandler: RouteHandler = async (req, ctx, params) => { try { const yacht = await getYachtById(params.id!, ctx.portId); return NextResponse.json({ data: yacht }); } catch (error) { return errorResponse(error); } }; export const patchHandler: RouteHandler = async (req, ctx, params) => { try { const body = await parseBody(req, updateYachtSchema); const updated = await updateYacht(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); } }; export const deleteHandler: RouteHandler = async (req, ctx, params) => { try { await archiveYacht(params.id!, ctx.portId, { userId: ctx.userId, portId: ctx.portId, ipAddress: ctx.ipAddress, userAgent: ctx.userAgent, }); return new NextResponse(null, { status: 204 }); } catch (error) { return errorResponse(error); } }; export const GET = withAuth(withPermission('yachts', 'view', getHandler)); export const PATCH = withAuth(withPermission('yachts', 'edit', patchHandler)); export const DELETE = withAuth(withPermission('yachts', 'delete', deleteHandler));