Files
accounted/lib/branding/team-brands.ts
T
Jakob Wennberg 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

84 lines
2.7 KiB
TypeScript

/**
* Batched brand lookup per team, for the home-domain rule (WL-01).
*
* The dashboard layout needs "does team X have a brand, and on which domain"
* for every company the user belongs to, in one round trip: looping
* resolveBrandForCompany would cost 2 queries per company on a cold cache.
* Like lib/branding/resolve.ts this uses the cookieless service client and
* bypasses RLS BY DESIGN: an end client (Kalle) is not a member of the byrå
* team, so RLS would hide the brand row he needs for his "hanteras via
* app.siffra.se" signpost. Only domain + app name leave this module: no
* email identity or color config is exposed to that path.
*
* Results are cached in-memory per team id with the same ~60s TTL as the
* resolvers; ops-assisted onboarding tolerates that staleness.
*/
import { createServiceClientNoCookies } from '@/lib/auth/api-keys'
import type { TeamBrandRef } from '@/lib/company/home-domain'
const CACHE_TTL_MS = 60_000
interface CacheEntry {
value: TeamBrandRef | null
expiresAt: number
}
const cache = new Map<string, CacheEntry>()
/**
* Resolve brands for a set of team ids. Returns a map containing ONLY teams
* that have a brand; brandless teams are absent (and negatively cached).
* On a transient query failure the uncached teams resolve as brandless for
* this call, without poisoning the cache: the canonical appearance is the
* safe fallback (the additive guarantee).
*/
export async function resolveBrandsForTeams(
teamIds: Array<string | null | undefined>,
): Promise<Map<string, TeamBrandRef>> {
const now = Date.now()
const result = new Map<string, TeamBrandRef>()
const misses: string[] = []
const unique = [...new Set(teamIds.filter((id): id is string => !!id))]
for (const teamId of unique) {
const entry = cache.get(teamId)
if (entry && entry.expiresAt > now) {
if (entry.value) result.set(teamId, entry.value)
continue
}
misses.push(teamId)
}
if (misses.length === 0) return result
const supabase = createServiceClientNoCookies()
const { data, error } = await supabase
.from('brands')
.select('team_id, domain, app_name')
.in('team_id', misses)
if (error) {
// Transient failure: treat the misses as brandless for this call only.
return result
}
const found = new Map<string, TeamBrandRef>()
for (const row of (data ?? []) as Array<{
team_id: string
domain: string
app_name: string
}>) {
found.set(row.team_id, { domain: row.domain, appName: row.app_name })
}
const expiresAt = Date.now() + CACHE_TTL_MS
for (const teamId of misses) {
const value = found.get(teamId) ?? null
cache.set(teamId, { value, expiresAt })
if (value) result.set(teamId, value)
}
return result
}