Files
accounted/lib/connect/hosted/upstream-budget.ts
T
f266c386f3 chore: repo-wide bloat sweep, remove dead code and fold duplicate helpers (#2150)
* chore: repo-wide bloat sweep, remove dead code and fold duplicate helpers

Remove 33 dead files, ~270 unreferenced exports/types, 13 dead i18n
namespaces and 4 unused dependencies; fold byte-identical helper copies
into one canonical home each (lib/utils chunk/sleep/utcDateStamp,
lib/dates/iso, lib/invariants/uuid, lib/xml/escape, lib/reports/sru/format,
lib/pdf/number-text, lib/browser/panel-request, lib/api/v1/body +
v1ValidationError rolled out to ~55 v1 routes, booking-template schemas).

No behaviour change: v1 bodies and status codes, MCP tool schemas, DB
writes and money math are untouched. Naive ore rounding was deliberately
not swapped for roundOre; see DECISIONS.md 2026-09-02 for the full list
of things left alone on purpose.

tsc, lint, 19588 unit tests and check:guards green; antipattern baseline
ratcheted (naive-ore-round 622 -> 620, hand-rolled-invariant 115 -> 113).

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>

* test(transactions): import RawTransaction from @/types after the ingest re-export removal

CI's type ratchet (check:types, full tsconfig) caught the one test file
that still imported the type through lib/transactions/ingest.

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>

---------

Co-authored-by: Jakob Wennberg <311770904+jakobwennberg-oss@users.noreply.github.com>
Co-authored-by: Claude Fable 5.1 <noreply@anthropic.com>
2026-09-02 11:51:16 +02:00

70 lines
2.5 KiB
TypeScript

import type { SupabaseClient } from '@supabase/supabase-js'
import type { ConnectorService } from './ledger'
/**
* Global upstream rate budget for the connector proxy.
*
* Enable Banking's quotas (Annex 1 §5: 20 rps / 300 rpm / 10 000 per hour) are
* shared by ALL of Arcim's traffic, hosted included. So connector traffic gets
* a ceiling well under those, reserved atomically in the DB (RPC
* connector_reserve_upstream) so two proxy requests can't both slip past. A
* self-hoster that hits the ceiling gets a 429 with Retry-After; hosted bank
* sync is never starved because the connector ceiling is a fraction of the
* provider quota.
*
* Configurable per service via env; the defaults sit around 30% of the EB
* per-minute quota.
*/
export type UpstreamService = ConnectorService
interface Budget {
minuteMax: number
hourMax: number
}
function intFromEnv(name: string, fallback: number): number {
const v = Number(process.env[name])
return Number.isFinite(v) && v > 0 ? Math.floor(v) : fallback
}
export function budgetFor(service: UpstreamService): Budget {
if (service === 'bank') {
return {
minuteMax: intFromEnv('CONNECT_BANK_RPM_BUDGET', 90), // ~30% of EB's 300/min
hourMax: intFromEnv('CONNECT_BANK_RPH_BUDGET', 3000), // ~30% of EB's 10 000/h
}
}
return {
minuteMax: intFromEnv('CONNECT_SKV_RPM_BUDGET', 120),
hourMax: intFromEnv('CONNECT_SKV_RPH_BUDGET', 4000),
}
}
export type BudgetResult = { ok: true } | { ok: false; scope: 'minute' | 'hour'; retryAfterSec: number }
/**
* Reserve one upstream call. Returns ok:false with a Retry-After when the
* global budget for this service is exhausted. A DB error fails OPEN (ok:true):
* the budget is a protective cap, not an auth boundary, and blocking every
* connector call because the counter table hiccuped would be worse than a
* brief overshoot the provider itself also rate-limits.
*/
export async function reserveUpstream(
supabase: SupabaseClient,
service: UpstreamService,
): Promise<BudgetResult> {
const { minuteMax, hourMax } = budgetFor(service)
const { data, error } = await supabase.rpc('connector_reserve_upstream', {
p_service: service,
p_minute_max: minuteMax,
p_hour_max: hourMax,
})
if (error) return { ok: true }
const row = (data ?? {}) as { ok?: boolean; scope?: 'minute' | 'hour'; retry_after_sec?: number }
if (row.ok === false) {
return { ok: false, scope: row.scope ?? 'minute', retryAfterSec: row.retry_after_sec ?? 60 }
}
return { ok: true }
}