241959513b
* feat(api): test-mode API keys force dry-run on the v1 REST API A key created with mode='test' (prefix gnubok_sk_test_) binds to the real company, but the v1 wrapper forces dry_run on every write so nothing is persisted or sent. Mutations on endpoints that can't be simulated (dryRunSupported=false or unregistered) are refused with 403 TEST_KEY_WRITE_BLOCKED — fail-closed. Reads pass through unchanged and every test-key response carries X-Gnubok-Mode: test. Live keys are unaffected (mode defaults to 'live'). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * feat(invoices): company default "Vår referens" + per-line sales-account override Add company_settings.default_our_reference (settings form, schema, type); the invoice editor pre-fills our_reference from it on new invoices only, never overwriting an edited draft. Separately, add an optional per-line försäljningskonto (class-3) override in the editor — left blank, the engine still derives the revenue account from the VAT rate, and reverse-charge/export lines ignore the override. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * feat(invoices): render a Swish payment QR on invoice PDFs Build the Swish "Type C" QR payload offline (no Swish API call) and embed it as a PNG in the invoice PDF payment box when Swish display is enabled, the invoice is in SEK, and the amount is positive. Also surface the invoice number in the payment box. Wired through every PDF render path: send, mark-sent and pdf routes (both legacy and v1), the recurring-schedule sender, and the staged-send commit. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * feat(bookkeeping): draft exclusion + correction-chain collapse on verifikationslista Extend list_fiscal_period_entries_with_related with two opt-in params: p_exclude_draft (keep drafts off the committed list — they get their own surface) and p_collapse_corrections (render a correction group as the single live correction, hiding the mechanical storno and the reversed original). Both default false; nothing is deleted, every voucher keeps its number, and a "show all" toggle exposes the full chain. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * fix(reports): link multi-year SIE periods so resultatrapport shows the prior year SIE import now sets fiscal_periods.previous_period_id in both directions when creating a period, so multi-year files chain correctly regardless of #RAR order. A backfill migration repairs periods imported before this (idempotent; only touches NULL links on first-of-month periods). generateResultatrapport falls back to the date-adjacent prior period when the chain is still null, so the comparison column works for legacy data too. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * fix(articles): hide the VAT field for non-momsregistrerade companies The article form reads company_settings.vat_registered and, when false, hides the moms field and forces vat_rate to 0 on submit — mirroring the invoice editor so a non-VAT-registered company never sets a rate it can't charge. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * feat(import): allow file-based imports in the sandbox Bank-file, CSV/Excel and SIE imports run entirely on uploaded data with no external service, so they're now reachable in the sandbox. Only the API-backed options that need live third-party credentials (PSD2 bank connection, provider migration) stay disabled. Updates the sandbox notice copy to match. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * feat(bookkeeping): add edit draft functionality for journal entries * feat(database): add default "Vår referens" column to company_settings for invoicing * fix(tests): set SHOW_SWISH_ON_INVOICE to false in PDF template mocks * @ fix(payments): use roundOre for Swish amount formatting Replace naive Math.round(x*100)/100 with roundOre from @/lib/money to satisfy the antipattern guard. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> @ --------- Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
154 lines
4.9 KiB
TypeScript
154 lines
4.9 KiB
TypeScript
import { NextResponse } from 'next/server'
|
|
import {
|
|
generateApiKey,
|
|
DEFAULT_SCOPES,
|
|
validateScopes,
|
|
findStageApproveConflict,
|
|
} from '@/lib/auth/api-keys'
|
|
import { withRouteContext } from '@/lib/api/with-route-context'
|
|
import { errorResponse, errorResponseFromCode } from '@/lib/errors/get-structured-error'
|
|
import type { ApiKeyMode, ApiKeyScope } from '@/lib/auth/api-keys'
|
|
|
|
/** GET /api/settings/api-keys — list the company's API keys (key value never returned). */
|
|
export const GET = withRouteContext(
|
|
'api_key.list',
|
|
async (_request, ctx) => {
|
|
const { supabase, companyId, log, requestId } = ctx
|
|
|
|
// Both live and test keys for the active company. (Test keys are bound to the
|
|
// active company too — they're simulation-only, so they never write real data.)
|
|
const { data, error } = await supabase
|
|
.from('api_keys')
|
|
.select('id, key_prefix, name, scopes, mode, rate_limit_rpm, last_used_at, revoked_at, created_at')
|
|
.eq('company_id', companyId)
|
|
.order('created_at', { ascending: false })
|
|
|
|
if (error) {
|
|
log.error('api_keys list failed', error)
|
|
return errorResponse(error, log, { requestId })
|
|
}
|
|
|
|
return NextResponse.json({ data })
|
|
},
|
|
)
|
|
|
|
/**
|
|
* POST /api/settings/api-keys — create a new API key.
|
|
*
|
|
* Returns the full key exactly once; after this the prefix is the only
|
|
* stored representation.
|
|
*/
|
|
export const POST = withRouteContext(
|
|
'api_key.create',
|
|
async (request, ctx) => {
|
|
const { user, supabase, companyId, log, requestId } = ctx
|
|
|
|
let name = 'Unnamed key'
|
|
let scopes: ApiKeyScope[] = DEFAULT_SCOPES
|
|
let acknowledgeSod = false
|
|
let mode: ApiKeyMode = 'live'
|
|
try {
|
|
const body = await request.json()
|
|
if (body.name && typeof body.name === 'string') {
|
|
name = body.name.slice(0, 100)
|
|
}
|
|
acknowledgeSod = body.acknowledge_sod === true
|
|
if (body.mode === 'test') mode = 'test'
|
|
const parsed = validateScopes(body.scopes)
|
|
if (parsed) {
|
|
scopes = parsed
|
|
} else if (body.scopes !== undefined) {
|
|
return errorResponseFromCode('API_KEY_SCOPE_INVALID', log, {
|
|
requestId,
|
|
details: { received: body.scopes },
|
|
})
|
|
}
|
|
} catch {
|
|
// Empty body — use defaults.
|
|
}
|
|
|
|
// Both live and test keys bind to the active company. A test key is
|
|
// simulation-only — the v1 wrapper forces dry-run on every write — so it can
|
|
// safely point at the real company without ever persisting anything.
|
|
|
|
// Segregation of duties: warn + require explicit acknowledgement (not block)
|
|
// when a single key both stages bookkeeping AND can approve it. Surfacing a
|
|
// 409 lets the UI raise an explicit confirm dialog and the agent inform the
|
|
// user before re-POSTing with acknowledge_sod: true.
|
|
const conflictingScope = findStageApproveConflict(scopes)
|
|
if (conflictingScope && !acknowledgeSod) {
|
|
return errorResponseFromCode('API_KEY_SOD_CONFLICT', log, {
|
|
requestId,
|
|
details: {
|
|
conflicting_scope: conflictingScope,
|
|
approve_scope: 'pending_operations:approve',
|
|
},
|
|
})
|
|
}
|
|
const sodAcknowledgedAt = conflictingScope ? new Date().toISOString() : null
|
|
|
|
const { count } = await supabase
|
|
.from('api_keys')
|
|
.select('id', { count: 'exact', head: true })
|
|
.eq('company_id', companyId)
|
|
.is('revoked_at', null)
|
|
|
|
if (count !== null && count >= 10) {
|
|
return errorResponseFromCode('API_KEY_QUOTA_EXCEEDED', log, {
|
|
requestId,
|
|
details: { activeCount: count, limit: 10 },
|
|
})
|
|
}
|
|
|
|
const { key, hash, prefix } = generateApiKey(mode)
|
|
|
|
const { data, error } = await supabase
|
|
.from('api_keys')
|
|
.insert({
|
|
user_id: user.id,
|
|
company_id: companyId,
|
|
key_hash: hash,
|
|
key_prefix: prefix,
|
|
name,
|
|
scopes,
|
|
mode,
|
|
...(sodAcknowledgedAt
|
|
? { sod_acknowledged_at: sodAcknowledgedAt, sod_acknowledged_by: user.id }
|
|
: {}),
|
|
})
|
|
.select('id, key_prefix, name, scopes, mode, created_at')
|
|
.single()
|
|
|
|
if (error) {
|
|
log.error('api_key insert failed', error)
|
|
return errorResponseFromCode('API_KEY_CREATE_FAILED', log, {
|
|
requestId,
|
|
details: { reason: error.message },
|
|
})
|
|
}
|
|
|
|
if (sodAcknowledgedAt) {
|
|
// High-risk security event: the creator self-attested the stage+approve
|
|
// combination. The durable record is the sod_acknowledged_* pair on the
|
|
// key row; this structured entry additionally lands the acceptance in
|
|
// the logging pipeline (ASVS V16.1.1 / SOC 2 CC6.1).
|
|
log.warn('api_key.sod_acknowledged', {
|
|
keyId: data.id,
|
|
keyPrefix: data.key_prefix,
|
|
conflictingScope,
|
|
scopes,
|
|
acknowledgedBy: user.id,
|
|
companyId,
|
|
})
|
|
}
|
|
|
|
return NextResponse.json({
|
|
data: {
|
|
...data,
|
|
key, // only time the full key is returned
|
|
},
|
|
})
|
|
},
|
|
{ requireWrite: true },
|
|
)
|