* fix(enable-banking): pin Mobile BankID (decoupled) auth_method so Handelsbanken corporate connects We never sent auth_method to Enable Banking, so it fell back to the ASPSP's visible default — REDIRECT for Handelsbanken. For Handelsbanken *corporate* PSUs the redirect flow does not support Mobile BankID, so authorization failed right after the user approved in the BankID app. Mobile BankID at Handelsbanken is a DECOUPLED method flagged hidden_method=true, which Enable Banking only uses when requested explicitly. Resolve the bank's preferred auth method before /auth: query the ASPSP's auth_methods and pick the DECOUPLED (Mobile BankID) method when present, otherwise leave auth_method unset so banks that already work are untouched. The method name is read dynamically per psu_type, so it is robust across sandbox/production naming. - api-client: add approach/hidden_method to AuthMethod, fix ASPSP.auth_methods field name (was available_auth_methods, never populated), add getPreferredAuthMethod(), thread optional authMethod through startAuthorization - index: resolve authMethod in /connect and pass it on both fresh + reconnect - tests: cover method selection and request-body shaping Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * refactor(invoice-inbox): clean up bulk-selection toolbar UI Redesign the selection toolbar shown when inbox items are checked: one solid primary "Bokför valda" button with outlined secondary actions ("Fråga assistenten", "Ta bort") and a plain selection count. Removes the redundant "Avmarkera" button (users uncheck the still-visible box), fixes label clipping, and gives the toolbar more breathing room. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * chore(entitlements): bypass paywall in local development Add isPaywallBypassed() so all gated capabilities are testable locally without a subscription. Fires only on NODE_ENV=development (npm run dev) or an explicit DISABLE_PAYWALL=true escape hatch — production builds run under NODE_ENV=production and the entitlement suite runs under 'test', so both keep exercising the real gate. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * fix(tic): resolve enskild firma bolagsuppgifter via 12-digit personnummer TIC's Lens search is fuzzy and only resolves an enskild firma from the 12-digit (century-prefixed) personnummer; a 10-digit form fuzzy-matched an unrelated entity. Expand personnummer to 12 digits before querying and reject hits whose registration number is unrelated to the request. Add a "Hämta" action to the settings Bolagsuppgifter panel to (re)fetch on demand. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * feat(transactions): implement categorize core for bank transaction categorization - Added `categorize-core.ts` to handle categorization of bank transactions, supporting single and bulk operations. - Introduced `categorizeMatchedTransaction` and `bulkBookMatchedInboxItems` functions for transaction processing. - Implemented fiscal period validation and duplicate booking detection. - Enhanced logging and error handling for transaction categorization. feat(scripts): add diagnostic script for Handelsbanken ASPSP metadata - Created `check-handelsbanken-aspsp.mjs` to fetch and display available authentication methods for Handelsbanken. - Outputs metadata for business and personal PSU types, including default authentication methods. fix(migrations): increase statement timeout for SIE bulk delete operations - Updated `20260629160000_sie_bulk_delete_statement_timeout.sql` to set a longer statement timeout for bulk delete RPCs to prevent cancellations during large imports. feat(migrations): add bulk book inbox items to pending operations - Expanded `pending_operations` table to include `bulk_book_inbox_items` operation type in `20260630120000_pending_operations_add_bulk_book_inbox_items.sql`. - Supports bulk booking of matched inbox items against bank transactions. test(pg): add tests for replace_period_opening_balance_link RPC - Implemented tests in `replace-period-opening-balance-link.pg.test.ts` to validate the functionality of the opening-balance correction flow. - Ensured immutability of opening balance links and proper handling of posted vs. non-posted entries. * fix(sie-export): update journal entries and lines handling in SIE export tests * fix(migrations): resolve version collision on 20260629160000 The SIE bulk-delete statement_timeout migration shared version 20260629160000 with journal_entries_list_series_filter (merged from main via #798/#823), causing a schema_migrations_pkey duplicate key error on apply. Rename the branch's migration to 20260629160100. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * fix(compliance): resolve compliance-swarm + review findings - opening-balance/correct: compensating rollback for the non-atomic storno+rebook so a mid-sequence failure never leaves two posted OB entries (ASVS V2.3); durable audit event on every failure path (V16); reference the original verifikationsnummer in the corrected entry per BFL 5 kap 5§; document that requireWrite already enforces write-role + membership (V8.2.1 was a false positive) - reports sources routes: validate the cursor date component as ISO (/^\d{4}-\d{2}-\d{2}$/) before use, 400 on malformed (ASVS V1.2), applied to both the VAT-declaration and trial-balance routes - AgentSessionList: await the rename PATCH, revert the optimistic title and toast on failure (ASVS V4.5) - bank booking: exclude same-batch siblings from the booking-time duplicate guard so bulk-booking distinct same-(date,amount) transactions no longer false-positives; pre-existing duplicate detection is preserved - BulkBookInboxDialog: drop the unsafe currency-based reverse_charge default, add an omvänd skattskyldighet advisory, and type VAT options to the backend VatTreatment union - OpeningBalanceRowEditor: hold onChange in a ref (synced in effect, not during render) so an unstable callback can't cause a render loop Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
214 lines
7.7 KiB
TypeScript
214 lines
7.7 KiB
TypeScript
import type { SupabaseClient } from '@supabase/supabase-js'
|
|
import { NextResponse } from 'next/server'
|
|
import { PAID_CAPABILITIES, type CapabilityKey } from './keys'
|
|
|
|
/**
|
|
* Entitlement gate — the single primitive behind the paywall ("non-payer loses
|
|
* functionality") AND the vision's modularity-out ("hide a module this company
|
|
* doesn't need"). Both are the same question: does this company hold the
|
|
* capability, fail-closed, resolved server-side?
|
|
*
|
|
* Two orthogonal axes, AND-ed together (see migration
|
|
* 20260628140000_capability_grants_and_metered_events):
|
|
* ENTITLEMENT — an unexpired capability_grant on the company OR its firm/team.
|
|
* ENABLEMENT — not explicitly disabled in company_capability_config (absent == enabled).
|
|
*
|
|
* Mirrors the shape of lib/sandbox/guard.ts so it drops in at the same call
|
|
* sites. The company is resolved by the CALLER (requireCompanyId for web, the
|
|
* validated API key for MCP) — never taken from untrusted input here.
|
|
*/
|
|
|
|
/** Self-hosted deployments are all-on — the gate never withholds anything. */
|
|
function isSelfHosted(): boolean {
|
|
return process.env.NEXT_PUBLIC_SELF_HOSTED === 'true'
|
|
}
|
|
|
|
/**
|
|
* Local development is all-on so every gated feature is testable without a
|
|
* subscription. Two triggers, both fail-safe for prod:
|
|
* - NODE_ENV === 'development' (i.e. `npm run dev`). NOT 'test' — the
|
|
* entitlement suite must still exercise the real gate — and NOT
|
|
* 'production'.
|
|
* - DISABLE_PAYWALL === 'true' — explicit escape hatch for a local
|
|
* production build. Never set this in a hosted environment.
|
|
*/
|
|
function isPaywallBypassed(): boolean {
|
|
return (
|
|
isSelfHosted() ||
|
|
process.env.NODE_ENV === 'development' ||
|
|
process.env.DISABLE_PAYWALL === 'true'
|
|
)
|
|
}
|
|
|
|
const UUID_RE = /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i
|
|
/**
|
|
* Only server-resolved UUIDs may be interpolated into the PostgREST `.or()`
|
|
* filter below — commas/dots/parens are filter syntax. companyId/teamId always
|
|
* come from the DB, but we validate at this boundary as defense in depth.
|
|
*/
|
|
function isUuid(v: string): boolean {
|
|
return UUID_RE.test(v)
|
|
}
|
|
|
|
export async function hasCapability(
|
|
supabase: SupabaseClient,
|
|
companyId: string,
|
|
key: CapabilityKey,
|
|
): Promise<boolean> {
|
|
if (isPaywallBypassed()) return true
|
|
if (!isUuid(companyId)) return false // fail-closed: never interpolate a non-UUID
|
|
|
|
// Resolve the company's firm/team (firm-scoped grants cascade to clients).
|
|
const { data: company } = await supabase
|
|
.from('companies')
|
|
.select('team_id')
|
|
.eq('id', companyId)
|
|
.maybeSingle()
|
|
const rawTeamId = (company as { team_id: string | null } | null)?.team_id ?? null
|
|
const teamId = rawTeamId && isUuid(rawTeamId) ? rawTeamId : null
|
|
|
|
// ENTITLEMENT axis: any unexpired grant on the company or its team.
|
|
const scopeFilter = teamId
|
|
? `company_id.eq.${companyId},team_id.eq.${teamId}`
|
|
: `company_id.eq.${companyId}`
|
|
const { data: grants, error: grantsError } = await supabase
|
|
.from('capability_grants')
|
|
.select('expires_at')
|
|
.eq('capability_key', key)
|
|
.or(scopeFilter)
|
|
|
|
if (grantsError) return false // fail-closed on any read error
|
|
const now = Date.now()
|
|
const entitled = (grants ?? []).some((g) => {
|
|
const exp = (g as { expires_at: string | null }).expires_at
|
|
return exp === null || new Date(exp).getTime() > now
|
|
})
|
|
if (!entitled) return false
|
|
|
|
// ENABLEMENT axis: explicitly turned off for this company? (absence == enabled)
|
|
const { data: config } = await supabase
|
|
.from('company_capability_config')
|
|
.select('enabled')
|
|
.eq('company_id', companyId)
|
|
.eq('capability_key', key)
|
|
.maybeSingle()
|
|
if ((config as { enabled: boolean } | null)?.enabled === false) return false
|
|
|
|
return true
|
|
}
|
|
|
|
/** Bilingual paywall copy, shared by every transport (HTTP route, MCP tool, commit executor). */
|
|
export const CAPABILITY_BLOCKED_MESSAGE_SV =
|
|
'Den här funktionen kräver en betald prenumeration. Uppgradera för att fortsätta använda externa tjänster.'
|
|
export const CAPABILITY_BLOCKED_MESSAGE_EN =
|
|
'This feature requires a paid subscription. Upgrade to keep using external services.'
|
|
|
|
/**
|
|
* Standard bilingual 403 for a capability-blocked endpoint. Matches the
|
|
* sandbox/guard envelope so the UI surfaces the upsell consistently.
|
|
*/
|
|
export function capabilityBlockedResponse(key: CapabilityKey): NextResponse {
|
|
return NextResponse.json(
|
|
{
|
|
error: CAPABILITY_BLOCKED_MESSAGE_SV,
|
|
error_en: CAPABILITY_BLOCKED_MESSAGE_EN,
|
|
capability_blocked: true,
|
|
capability: key,
|
|
},
|
|
{ status: 403 },
|
|
)
|
|
}
|
|
|
|
export interface CapabilityBlockedError {
|
|
code: 'capability_blocked'
|
|
capability_blocked: true
|
|
capability: CapabilityKey
|
|
message_sv: string
|
|
message_en: string
|
|
}
|
|
|
|
/**
|
|
* Transport-free counterpart to capabilityBlockedResponse, for call sites that
|
|
* don't return a NextResponse — the MCP dispatcher (folded into the JSON-RPC
|
|
* `isError` envelope) and the pending-operation commit executor. Same copy and
|
|
* the same `capability_blocked: true` marker so every surface upsells alike.
|
|
*/
|
|
export function capabilityBlockedError(key: CapabilityKey): CapabilityBlockedError {
|
|
return {
|
|
code: 'capability_blocked',
|
|
capability_blocked: true,
|
|
capability: key,
|
|
message_sv: CAPABILITY_BLOCKED_MESSAGE_SV,
|
|
message_en: CAPABILITY_BLOCKED_MESSAGE_EN,
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Convenience wrapper: check + return the 403 in one call. Returns the
|
|
* NextResponse to return from the route, or null when the company has the
|
|
* capability and the route should proceed.
|
|
*
|
|
* const blocked = await requireCapability(supabase, companyId, CAPABILITY.ai)
|
|
* if (blocked) return blocked
|
|
*/
|
|
export async function requireCapability(
|
|
supabase: SupabaseClient,
|
|
companyId: string,
|
|
key: CapabilityKey,
|
|
): Promise<NextResponse | null> {
|
|
if (await hasCapability(supabase, companyId, key)) return null
|
|
return capabilityBlockedResponse(key)
|
|
}
|
|
|
|
/**
|
|
* Resolve which PAID capabilities a company currently holds (entitled AND
|
|
* enabled), in two queries. Used to seed the client CompanyContext so the UI
|
|
* can hide/disable/upsell gated features. Self-hosted holds everything.
|
|
*/
|
|
export async function getCompanyCapabilities(
|
|
supabase: SupabaseClient,
|
|
companyId: string,
|
|
): Promise<CapabilityKey[]> {
|
|
if (isPaywallBypassed()) return [...PAID_CAPABILITIES]
|
|
if (!isUuid(companyId)) return [] // fail-closed: never interpolate a non-UUID
|
|
|
|
const { data: company } = await supabase
|
|
.from('companies')
|
|
.select('team_id')
|
|
.eq('id', companyId)
|
|
.maybeSingle()
|
|
const rawTeamId = (company as { team_id: string | null } | null)?.team_id ?? null
|
|
const teamId = rawTeamId && isUuid(rawTeamId) ? rawTeamId : null
|
|
|
|
const scopeFilter = teamId
|
|
? `company_id.eq.${companyId},team_id.eq.${teamId}`
|
|
: `company_id.eq.${companyId}`
|
|
const { data: grants } = await supabase
|
|
.from('capability_grants')
|
|
.select('capability_key, expires_at')
|
|
.in('capability_key', PAID_CAPABILITIES as unknown as string[])
|
|
.or(scopeFilter)
|
|
|
|
const now = Date.now()
|
|
const entitled = new Set<string>()
|
|
for (const g of grants ?? []) {
|
|
const row = g as { capability_key: string; expires_at: string | null }
|
|
if (row.expires_at === null || new Date(row.expires_at).getTime() > now) {
|
|
entitled.add(row.capability_key)
|
|
}
|
|
}
|
|
if (entitled.size === 0) return []
|
|
|
|
// Subtract any explicitly-disabled (enablement axis).
|
|
const { data: configs } = await supabase
|
|
.from('company_capability_config')
|
|
.select('capability_key, enabled')
|
|
.eq('company_id', companyId)
|
|
.eq('enabled', false)
|
|
for (const c of configs ?? []) {
|
|
entitled.delete((c as { capability_key: string }).capability_key)
|
|
}
|
|
|
|
return PAID_CAPABILITIES.filter((k) => entitled.has(k))
|
|
}
|