e11f70b347
* refactor: optimize page loading and data fetching * fix: resolve recurring production runtime errors * feat: add MCP company and customer updates * fix: handle year-end tax adjustments * feat: harden annual report compliance * fix: expand invoice logo and font support * fix: sanitize API route error responses * fix: sanitize user-facing error messages * feat: persist onboarding and tax assessment notices * fix: reduce cloud backup audit churn * feat: refine invoice editor layout * fix: show saved tax adjustments in INK2 * fix: complete annual report API mappings * docs: record operational safeguards and decisions * fix: harden annual report review findings * fix: adjust column span for description based on VAT registration * New css class name
83 lines
3.3 KiB
TypeScript
83 lines
3.3 KiB
TypeScript
import { NextResponse } from 'next/server'
|
|
import { z } from 'zod'
|
|
import { withRouteContext } from '@/lib/api/with-route-context'
|
|
import { errorResponse } from '@/lib/errors/get-structured-error'
|
|
import { validateBody } from '@/lib/api/validate'
|
|
import {
|
|
createSignatureRequest,
|
|
listSignatureRequests,
|
|
} from '@/lib/bokslut/arsredovisning/signature-service'
|
|
|
|
// Roles are constrained to the underskrifter set ÅRL allows: keeps the API
|
|
// from accepting arbitrary "Administrator" / "CEO" strings that the UI
|
|
// dropdown doesn't expose. Name capped at 200 chars per GDPR data-min
|
|
// (Art.25.2): Swedish names are well under that; bound is a defense.
|
|
const CreateSchema = z.object({
|
|
role: z.enum(['Styrelseledamot', 'Styrelseordförande', 'VD', 'Verkställande direktör']),
|
|
signer_name: z.string().trim().min(1).max(200),
|
|
})
|
|
|
|
export const GET = withRouteContext(
|
|
'period.arsredovisning_signatures_list',
|
|
async (_request, ctx, { params }: { params: Promise<{ id: string }> }) => {
|
|
const { id } = await params
|
|
const { supabase, companyId, log, requestId } = ctx
|
|
try {
|
|
const data = await listSignatureRequests(supabase, companyId, id)
|
|
return NextResponse.json({ data })
|
|
} catch (err) {
|
|
return errorResponse(err, log, { requestId })
|
|
}
|
|
},
|
|
)
|
|
|
|
export const POST = withRouteContext(
|
|
'period.arsredovisning_signatures_create',
|
|
async (request, ctx, { params }: { params: Promise<{ id: string }> }) => {
|
|
const { id } = await params
|
|
const { user, supabase, companyId, log, requestId } = ctx
|
|
const validation = await validateBody(request, CreateSchema)
|
|
if (!validation.success) return validation.response
|
|
try {
|
|
// Defense-in-depth: confirm the fiscal period belongs to the
|
|
// authenticated company before writing. RLS would catch a cross-tenant
|
|
// insert anyway, but rejecting at the route layer gives a cleaner
|
|
// 404 + avoids the noisy RLS error in the structured-error envelope.
|
|
const { data: period, error: periodError } = await supabase
|
|
.from('fiscal_periods')
|
|
.select('id')
|
|
.eq('id', id)
|
|
.eq('company_id', companyId)
|
|
.maybeSingle()
|
|
if (periodError) throw new Error(`Failed to load fiscal period: ${periodError.message}`)
|
|
if (!period) {
|
|
return NextResponse.json({ error: { code: 'PERIOD_NOT_FOUND' } }, { status: 404 })
|
|
}
|
|
const { data: duplicate, error: duplicateError } = await supabase
|
|
.from('arsredovisning_signature_requests')
|
|
.select('id')
|
|
.eq('company_id', companyId)
|
|
.eq('fiscal_period_id', id)
|
|
.eq('status', 'pending')
|
|
.is('annual_report_version_id', null)
|
|
.ilike('role', validation.data.role.trim())
|
|
.ilike('signer_name', validation.data.signer_name.trim())
|
|
.maybeSingle()
|
|
if (duplicateError) {
|
|
throw new Error(`Failed to check annual report signer roster: ${duplicateError.message}`)
|
|
}
|
|
if (duplicate) {
|
|
return NextResponse.json(
|
|
{ error: { code: 'ARSREDOVISNING_SIGNER_ALREADY_EXISTS' } },
|
|
{ status: 409 },
|
|
)
|
|
}
|
|
const data = await createSignatureRequest(supabase, companyId, user.id, id, validation.data)
|
|
return NextResponse.json({ data })
|
|
} catch (err) {
|
|
return errorResponse(err, log, { requestId })
|
|
}
|
|
},
|
|
{ requireWrite: true },
|
|
)
|