* 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
89 lines
2.8 KiB
TypeScript
89 lines
2.8 KiB
TypeScript
import { NextResponse } from 'next/server'
|
|
import { getAuditLog } from '@/lib/core/audit/audit-service'
|
|
import { withRouteContext } from '@/lib/api/with-route-context'
|
|
import type { AuditLogEntry, AuditAction } from '@/types'
|
|
import { getErrorMessage as getUserErrorMessage } from '@/lib/errors/get-error-message'
|
|
|
|
const CSV_HEADERS = 'timestamp,action,table_name,record_id,description,old_state,new_state'
|
|
|
|
function escapeCSV(value: string | null | undefined): string {
|
|
if (value == null) return ''
|
|
const str = String(value)
|
|
if (str.includes(',') || str.includes('"') || str.includes('\n')) {
|
|
return `"${str.replace(/"/g, '""')}"`
|
|
}
|
|
return str
|
|
}
|
|
|
|
function entryToCSVRow(entry: AuditLogEntry): string {
|
|
return [
|
|
escapeCSV(entry.created_at),
|
|
escapeCSV(entry.action),
|
|
escapeCSV(entry.table_name),
|
|
escapeCSV(entry.record_id),
|
|
escapeCSV(entry.description),
|
|
escapeCSV(entry.old_state ? JSON.stringify(entry.old_state) : null),
|
|
escapeCSV(entry.new_state ? JSON.stringify(entry.new_state) : null),
|
|
].join(',')
|
|
}
|
|
|
|
export const GET = withRouteContext('report.audit_trail', async (request, { supabase, companyId }) => {
|
|
const { searchParams } = new URL(request.url)
|
|
const format = searchParams.get('format') || 'json'
|
|
|
|
const filters = {
|
|
action: (searchParams.get('action') as AuditAction) || undefined,
|
|
table_name: searchParams.get('table_name') || undefined,
|
|
record_id: searchParams.get('record_id') || undefined,
|
|
from_date: searchParams.get('from_date') || undefined,
|
|
to_date: searchParams.get('to_date') || undefined,
|
|
}
|
|
|
|
try {
|
|
// Paginate through all matching entries
|
|
const allEntries: AuditLogEntry[] = []
|
|
let page = 1
|
|
const pageSize = 500
|
|
|
|
while (true) {
|
|
const result = await getAuditLog(supabase, companyId, {
|
|
...filters,
|
|
page,
|
|
pageSize,
|
|
})
|
|
allEntries.push(...result.data)
|
|
if (allEntries.length >= result.count || result.data.length < pageSize) {
|
|
break
|
|
}
|
|
page++
|
|
}
|
|
|
|
if (format === 'csv') {
|
|
const csvRows = [CSV_HEADERS, ...allEntries.map(entryToCSVRow)]
|
|
const csvContent = csvRows.join('\n')
|
|
|
|
return new NextResponse(csvContent, {
|
|
status: 200,
|
|
headers: {
|
|
'Content-Type': 'text/csv; charset=utf-8',
|
|
'Content-Disposition': 'attachment; filename="audit-trail.csv"',
|
|
},
|
|
})
|
|
}
|
|
|
|
// Default: JSON
|
|
return new NextResponse(JSON.stringify({ data: allEntries, count: allEntries.length }), {
|
|
status: 200,
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
'Content-Disposition': 'attachment; filename="audit-trail.json"',
|
|
},
|
|
})
|
|
} catch (err) {
|
|
return NextResponse.json(
|
|
{ error: err instanceof Error ? getUserErrorMessage(err) : 'Failed to generate audit trail report' },
|
|
{ status: 500 }
|
|
)
|
|
}
|
|
})
|