abe9ac9d8c
* fix(git): pin LF on generated extension registry and vitest snapshots setup:extensions and vitest write these files with LF; with core.autocrlf=true git expects CRLF and flags them as phantom modifications on every dev/build run. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * fix(security): enforce MFA on mcp-oauth consent and gate viewer storno route mcp-oauth/authorize renders an HTML consent page and issues 303 redirects that withRouteContext cannot express, so it kept raw getUser() and thereby skipped the AAL2 gate: a password-only (AAL1) session could approve consent that mints a long-lived, MFA-bypassing API key. Add a route-local requireAal2() step-up on GET and POST; AAL1 sessions redirect to /mfa/verify, BankID users are exempt. Separately, POST /api/reports/vat-declaration/rc-basis-gaps/fix calls correctEntry() (storno of a posted entry) but lacked requireWrite, so viewer-role members could trigger it. Add { requireWrite: true }. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * fix(api): route transactions endpoints through withRouteContext Migrate the transactions routes off hand-rolled supabase.auth.getUser() onto the MFA-enforcing withRouteContext wrapper; add requireWrite on mutating handlers (book, uncategorize, attach-document, ignore, batch-match, create-from-document). Behavior and response shapes preserved; tests updated to the wrapper mock pattern. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * fix(api): route SIE import and bank reconciliation through withRouteContext Migrate import/sie and reconciliation/bank routes onto the MFA-enforcing wrapper; requireWrite on mutations (import execute, create-accounts, mappings write verbs, link/unlink/run/mark-opening-balance). Reads (status, unmatched-entries) stay ungated. Response shapes preserved; tests added/updated to the wrapper mock pattern. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * fix(api): route salary endpoints through withRouteContext Migrate salary employees and runs routes (plus ku, payroll-config, tax-tables) onto the MFA-enforcing wrapper; requireWrite on mutations. Personnummer masking/encryption untouched; file downloads (AGI XML, payslip PDF, payment files) keep their headers. Two payment-file GETs retain requireWrite because they stamp *_file_generated_at and previously gated viewers. Tests added/updated to the wrapper mock pattern. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * fix(api): route report endpoints through withRouteContext Migrate the read-only report routes (trial balance, balansrapport, resultatrapport, income statement, ledgers, KPI, VAT declaration, salary journal, monthly breakdown, journal register, continuity check, full archive, etc.) onto the MFA-enforcing wrapper. All read-only, no requireWrite. JSON/XLSX/PDF/ZIP response bodies and headers preserved byte-for-byte; tests updated to the wrapper mock pattern. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * fix(api): route invoices, skatteverket, agent and extension endpoints through withRouteContext Migrate invoices, supplier-invoices, skatteverket tax-payments, and dynamic extension routes onto the MFA-enforcing wrapper with requireWrite on mutations. The two NDJSON streaming agent routes (invoke, onboarding/stream) use requireAuth() directly (the wrapper can't wrap a streaming response) so MFA is still enforced. skatteverket payment-file GET keeps requireWrite (stamps a generated-at field). Response shapes and file headers preserved; tests added/updated. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * fix(api): route documents, events, team and account endpoints through withRouteContext Migrate documents, events, kpi/preferences, vat/validate, support/contact onto the MFA-enforcing wrapper with requireWrite on mutations. account/password, team/accept and team/members use requireAuth() directly (user-level or pre-membership flows with no active company context) so MFA is still enforced. events keeps its dual API-key-or-session auth. Document retention guard untouched; tests added/updated. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * fix(api): route settings and pending-operations endpoints through withRouteContext Migrate settings (api-keys, oauth-clients, booking-templates, counterparty-templates, logo, company settings) and pending-operations (commit, bulk-commit, reject, edit-before-approve) onto the MFA-enforcing wrapper with requireWrite on mutations. Credential-guarding routes keep their per-user ownership filters. Response shapes preserved; tests added/updated to the wrapper mock pattern. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * chore(guards): ratchet raw-route-auth baseline 119->1 after A1 migration Lock in the withRouteContext migration so the count cannot regress. The single remaining entry, mcp-oauth/authorize, is a documented exception (HTML consent + redirects, MFA enforced via route-local step-up). Record the campaign and requireWrite decisions in DECISIONS.md. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * feat(vat): add eSKD momsdeklaration file export for "Deklarera via fil" Generate the Skatteverket eSKDUpload v6.0 XML file so users can file VAT by upload instead of typing every ruta into the form. Extract buildFiledAmounts() as the shared whole-krona source of truth (öre truncated per SFL 22 kap 1 §) so the XML file and the manual-filing PDF can never disagree. Adds the /eskd API route, an XML option in the report export menu, and the upload button on the manual-filing card. Strings in sv + en. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * feat(vat): add 'vat_settlement' source type and update related components * fix(booking): adjust search input layout and enable autofocus * fix(vat): support 12-digit org numbers and adjust emission order for eSKD file * fix(migration): add 'vat_settlement' to journal_entries.source_type CHECK --------- Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
132 lines
5.4 KiB
TypeScript
132 lines
5.4 KiB
TypeScript
import { NextResponse } from 'next/server'
|
|
import { ensureInitialized } from '@/lib/init'
|
|
import { withRouteContext } from '@/lib/api/with-route-context'
|
|
import { validateBody } from '@/lib/api/validate'
|
|
import { CreateTransactionFromDocumentSchema } from '@/lib/api/schemas'
|
|
|
|
ensureInitialized()
|
|
|
|
/**
|
|
* POST /api/transactions/create-from-document
|
|
*
|
|
* Creates an uncategorized manual bank transaction prefilled from an
|
|
* invoice_inbox_items row, then attaches the inbox item's document to it
|
|
* and links the inbox item to the new transaction. The user categorizes
|
|
* the new transaction through the normal /transactions flow (which routes
|
|
* through the bookkeeping engine and respects period locks, etc.).
|
|
*
|
|
* Use case: receipt in the inbox has no matching bank transaction
|
|
* (cash purchase, personal-card expense, missed sync).
|
|
*/
|
|
export const POST = withRouteContext(
|
|
'transaction.create_from_document',
|
|
async (request, { supabase, user, companyId }) => {
|
|
const validation = await validateBody(request, CreateTransactionFromDocumentSchema)
|
|
if (!validation.success) return validation.response
|
|
const { inbox_item_id, amount, transaction_date, description } = validation.data
|
|
|
|
const { data: item, error: itemError } = await supabase
|
|
.from('invoice_inbox_items')
|
|
.select('id, document_id, matched_transaction_id, created_supplier_invoice_id, extracted_data')
|
|
.eq('id', inbox_item_id)
|
|
.eq('company_id', companyId)
|
|
.maybeSingle()
|
|
|
|
if (itemError || !item) {
|
|
return NextResponse.json({ error: 'Inbox item not found' }, { status: 404 })
|
|
}
|
|
if (item.matched_transaction_id) {
|
|
return NextResponse.json(
|
|
{ error: 'Inkorgsposten är redan kopplad till en transaktion.' },
|
|
{ status: 409 },
|
|
)
|
|
}
|
|
if (item.created_supplier_invoice_id) {
|
|
return NextResponse.json(
|
|
{ error: 'Inkorgsposten är redan bokförd som leverantörsfaktura.' },
|
|
{ status: 409 },
|
|
)
|
|
}
|
|
|
|
// Allowlist the currency: extracted_data.invoice.currency comes from the
|
|
// (deterministic, but still untrusted) PDF extractor, so an arbitrary
|
|
// string like "XYZ" or '"SEK\'"' could otherwise be persisted directly to
|
|
// the transactions table and break later formatCurrency / journal-entry
|
|
// bookings (BFL 5 kap 6 §). Coerce anything outside the supported set
|
|
// to SEK; the user can change it manually on the transaction.
|
|
const ALLOWED_CURRENCIES = new Set(['SEK', 'EUR', 'USD', 'GBP', 'NOK', 'DKK'])
|
|
const extractedCurrency = (
|
|
item.extracted_data as { invoice?: { currency?: string } } | null
|
|
)?.invoice?.currency
|
|
const currency =
|
|
extractedCurrency && ALLOWED_CURRENCIES.has(extractedCurrency)
|
|
? extractedCurrency
|
|
: 'SEK'
|
|
|
|
const { data: newTx, error: insertError } = await supabase
|
|
.from('transactions')
|
|
.insert({
|
|
company_id: companyId,
|
|
user_id: user.id,
|
|
date: transaction_date,
|
|
description,
|
|
amount,
|
|
currency,
|
|
category: 'uncategorized',
|
|
is_business: null,
|
|
import_source: 'manual',
|
|
document_id: item.document_id,
|
|
})
|
|
.select('id')
|
|
.single()
|
|
|
|
if (insertError || !newTx) {
|
|
console.error('[create-from-document] Failed to insert transaction:', insertError)
|
|
return NextResponse.json({ error: 'Kunde inte skapa transaktion.' }, { status: 500 })
|
|
}
|
|
|
|
// Concurrency guard: the .is('matched_transaction_id', null) predicate +
|
|
// the rows-affected check turn this into an optimistic-lock release. If
|
|
// two requests with the same inbox_item_id race past the earlier
|
|
// matched_transaction_id check, only the first UPDATE will match a row
|
|
// here. The loser's transaction insert is then an orphan we proactively
|
|
// delete so the user doesn't get a duplicate uncategorized row.
|
|
const { data: linked, error: linkError } = await supabase
|
|
.from('invoice_inbox_items')
|
|
.update({ matched_transaction_id: newTx.id })
|
|
.eq('id', inbox_item_id)
|
|
.eq('company_id', companyId)
|
|
.is('matched_transaction_id', null)
|
|
.select('id')
|
|
|
|
if (linkError) {
|
|
console.error('[create-from-document] Failed to link inbox item:', linkError)
|
|
// Transaction was created; surface a 200 with a warning so the user can
|
|
// still find it under Transaktioner: the inbox-link orphan is recoverable.
|
|
return NextResponse.json({
|
|
data: { transaction_id: newTx.id, inbox_link_failed: true },
|
|
})
|
|
}
|
|
|
|
if (!linked || linked.length === 0) {
|
|
// Lost a race: another concurrent request linked the inbox item first.
|
|
// Roll back our newly-created transaction (only safe because we own it
|
|
// and it has no journal_entry_id yet) and return 409 so the client can
|
|
// refetch and reuse the winning transaction instead of creating a dupe.
|
|
// Re-assert company_id on the delete (defence in depth: newTx.id is a
|
|
// fresh UUID from a company-scoped insert above, but scoping the rollback
|
|
// makes the invariant explicit).
|
|
await supabase.from('transactions').delete().eq('id', newTx.id).eq('company_id', companyId)
|
|
return NextResponse.json(
|
|
{ error: 'Inkorgsposten kopplades av en parallell begäran. Försök igen.' },
|
|
{ status: 409 },
|
|
)
|
|
}
|
|
|
|
return NextResponse.json({
|
|
data: { transaction_id: newTx.id, inbox_item_id, document_id: item.document_id },
|
|
})
|
|
},
|
|
{ requireWrite: true },
|
|
)
|