import { NextResponse } from 'next/server'; import { withAuth, withPermission } from '@/lib/api/helpers'; import { parseBody, parseQuery } from '@/lib/api/route-helpers'; import { listBerthsSchema, createBerthSchema } from '@/lib/validators/berths'; import { listBerths, createBerth } from '@/lib/services/berths.service'; import { errorResponse } from '@/lib/errors'; export const GET = withAuth( withPermission('berths', 'view', async (req, ctx) => { try { const query = parseQuery(req, listBerthsSchema); const result = await listBerths(ctx.portId, query); const page = query.page; const pageSize = query.limit; const total = result.total; const totalPages = Math.ceil(total / pageSize); return NextResponse.json({ data: result.data, pagination: { page, pageSize, total, totalPages, hasNextPage: page < totalPages, hasPreviousPage: page > 1, }, }); } catch (error) { return errorResponse(error); } }), ); export const POST = withAuth( withPermission('berths', 'edit', async (req, ctx) => { try { const body = await parseBody(req, createBerthSchema); const data = await createBerth(ctx.portId, body, { userId: ctx.userId, portId: ctx.portId, ipAddress: ctx.ipAddress, userAgent: ctx.userAgent, }); return NextResponse.json({ data }, { status: 201 }); } catch (error) { return errorResponse(error); } }), );