feat(auth): surface duplicate-account traps around BankID login (#1234)

* feat(auth): surface duplicate-account traps around BankID login

Three escape hatches for the stale-duplicate-account trap (#1231, the
Chillen support case): a user whose BankID resolves to an abandoned
account got an empty app with no hint that their real bookkeeping
lives in another account.

- check-org-number: new exists_elsewhere signal (service role, reduced
  to one boolean) + a warn chip in the onboarding journey when the org
  number already exists in an account the user is not a member of.
- Hem: one AttnLine under the greeting when the whole account has zero
  journal entries but a same-orgnr company elsewhere has real
  bookkeeping, with a sign-out action. Common case costs one indexed
  existence probe.
- scripts/support/unlink-bankid.ts: dry-run-by-default support action
  that unlinks a BankID identity (delete + app_metadata clear +
  append-only SECURITY_EVENT audit_log row). Replaces the raw SQL used
  to resolve the original ticket.

Closes #1231

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

* fix(auth): harden unlink script and paginate hint queries per review

- other-account-hint: fetchAllRows() on both company listings (PostgREST
  1000-row cap; byrå users can hold many memberships); the journal probes
  stay limit(1) existence checks.
- unlink-bankid: audit_log row is written BEFORE the delete so a partial
  failure can never delete without a trace; context queries fail closed
  instead of rendering an unknown account as empty; stdout no longer
  prints the personnummer hash or ciphertext (the unsalted hash is
  brute-forceable over the personnummer space); record_id now carries the
  identity row id and the snapshot includes id + linked_at.

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

---------

Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Jakob Wennberg
2026-07-27 17:00:15 +02:00
committed by GitHub
parent ff205951b1
commit 46c0b72ab0
10 changed files with 557 additions and 11 deletions
@@ -2,13 +2,26 @@ import { describe, it, expect, vi, beforeEach } from 'vitest'
vi.mock('@/lib/supabase/server', () => ({
createClient: vi.fn(),
createServiceClient: vi.fn(),
}))
import { createClient } from '@/lib/supabase/server'
import { createClient, createServiceClient } from '@/lib/supabase/server'
import { GET } from '../route'
import { createMockRequest, parseJsonResponse } from '@/tests/helpers'
const mockCreateClient = vi.mocked(createClient)
const mockCreateServiceClient = vi.mocked(createServiceClient)
/** Service-client mock for the cross-account probe: one companies query. */
function buildServiceClient(result: { data?: unknown; error?: unknown }) {
const resolved = { data: result.data ?? null, error: result.error ?? null }
const chain: Record<string, unknown> = {}
for (const m of ['select', 'eq', 'is', 'limit']) {
chain[m] = () => chain
}
;(chain as { then?: unknown }).then = (resolve: (v: unknown) => void) => resolve(resolved)
return { from: vi.fn(() => chain) }
}
/**
* Minimal authenticated-client mock. `companies.data` seeds what the RLS-scoped
@@ -37,6 +50,8 @@ function buildSupabase(opts: {
beforeEach(() => {
vi.clearAllMocks()
// Default: nothing exists anywhere else. Individual tests override.
mockCreateServiceClient.mockReturnValue(buildServiceClient({ data: [] }) as never)
})
describe('GET /api/company/check-org-number', () => {
@@ -94,6 +109,52 @@ describe('GET /api/company/check-org-number', () => {
expect(body.data.exists).toBe(false)
})
it('reports exists_elsewhere when the org number lives in another account', async () => {
mockCreateClient.mockResolvedValue(
buildSupabase({ user: { id: 'u1' }, companies: { data: [] } }) as never,
)
mockCreateServiceClient.mockReturnValue(
buildServiceClient({ data: [{ id: 'other-account-co' }] }) as never,
)
const res = await GET(createMockRequest('/api/company/check-org-number?org_number=5560125790'))
const { status, body } = await parseJsonResponse<{
data: { exists: boolean; companies: unknown[]; exists_elsewhere: boolean }
}>(res)
expect(status).toBe(200)
expect(body.data.exists).toBe(false)
// Existence only: the other account's company is never listed.
expect(body.data.companies).toEqual([])
expect(body.data.exists_elsewhere).toBe(true)
})
it('does not report exists_elsewhere when all matches are the callers own', async () => {
mockCreateClient.mockResolvedValue(
buildSupabase({
user: { id: 'u1' },
companies: { data: [{ id: 'c1', name: 'Acme AB' }] },
}) as never,
)
mockCreateServiceClient.mockReturnValue(
buildServiceClient({ data: [{ id: 'c1' }] }) as never,
)
const res = await GET(createMockRequest('/api/company/check-org-number?org_number=5560125790'))
const { body } = await parseJsonResponse<{ data: { exists_elsewhere: boolean } }>(res)
expect(body.data.exists_elsewhere).toBe(false)
})
it('fails soft to exists_elsewhere:false when the probe errors', async () => {
mockCreateClient.mockResolvedValue(
buildSupabase({ user: { id: 'u1' }, companies: { data: [] } }) as never,
)
mockCreateServiceClient.mockReturnValue(
buildServiceClient({ error: { message: 'probe boom' } }) as never,
)
const res = await GET(createMockRequest('/api/company/check-org-number?org_number=5560125790'))
const { status, body } = await parseJsonResponse<{ data: { exists_elsewhere: boolean } }>(res)
expect(status).toBe(200)
expect(body.data.exists_elsewhere).toBe(false)
})
it('returns 500 when the query errors', async () => {
mockCreateClient.mockResolvedValue(
buildSupabase({ user: { id: 'u1' }, companies: { error: { message: 'boom' } } }) as never,
+37 -10
View File
@@ -1,21 +1,27 @@
import { NextResponse } from 'next/server'
import { requireAuth } from '@/lib/auth/require-auth'
import { createServiceClient } from '@/lib/supabase/server'
import { normalizeOrgNumber } from '@/lib/company-lookup/normalize-org-number'
import { getErrorMessage as getUserErrorMessage } from '@/lib/errors/get-error-message'
/**
* GET /api/company/check-org-number?org_number=XXXXXXXXXX
*
* Returns `{ data: { exists: boolean, companies: { id, name }[] } }` for the
* companies the CURRENT USER already has with the given organisation number:
* scoped to their own account only.
* Returns `{ data: { exists, companies, exists_elsewhere } }`:
* - `exists` / `companies`: matches among the CURRENT USER's own companies
* (`{ id, name }[]`), scoped by RLS.
* - `exists_elsewhere`: true when a non-archived company with this org number
* exists in an account the caller is NOT a member of. Existence only: no
* id, name, or owner ever leaves the server. This is what lets the wizard
* hint "this company already exists in Accounted" before a user rebuilds
* their bookkeeping in a second account and strands the first (#1231).
*
* Org-number reuse across the platform is intentionally allowed (see
* lib/company/actions.ts), so this is a soft, account-scoped warning, NOT a
* uniqueness gate. It uses the normal authenticated client on purpose: the
* `companies` SELECT RLS policy limits results to companies the caller is a
* member of (id IN user_company_ids()), so it can never reveal another user's
* companies and can't be used to enumerate org numbers platform-wide.
* lib/company/actions.ts), so both signals are soft warnings, NOT a
* uniqueness gate. The own-companies query uses the authenticated client on
* purpose: the `companies` SELECT RLS policy limits results to companies the
* caller is a member of (id IN user_company_ids()). The cross-account probe
* uses the service client but deliberately reduces to one boolean.
*
* Normalizes input with the same rule as the create action so a 12-digit form
* still matches a stored 10-digit canonical. Returns no matches for malformed
@@ -37,7 +43,7 @@ export async function GET(request: Request) {
const canonical = normalizeOrgNumber(raw)
if (!canonical) {
// Malformed input is not a duplicate of anything by definition.
return NextResponse.json({ data: { exists: false, companies: [] } })
return NextResponse.json({ data: { exists: false, companies: [], exists_elsewhere: false } })
}
// RLS scopes this SELECT to the caller's own memberships (companies_select:
@@ -56,7 +62,28 @@ export async function GET(request: Request) {
id: c.id,
name: c.name,
}))
// Cross-account probe (service role bypasses RLS): does any non-archived
// company with this org number exist outside the caller's memberships?
// Fails soft to false: this is advisory, never worth blocking the wizard.
let existsElsewhere = false
try {
const service = createServiceClient()
const ownIds = new Set(companies.map((c) => c.id))
const { data: allMatches, error: probeError } = await service
.from('companies')
.select('id')
.eq('org_number', canonical)
.is('archived_at', null)
.limit(ownIds.size + 1)
if (!probeError) {
existsElsewhere = (allMatches ?? []).some((c: { id: string }) => !ownIds.has(c.id))
}
} catch {
// Service key unavailable (some self-hosted setups): skip the hint.
}
return NextResponse.json({
data: { exists: companies.length > 0, companies },
data: { exists: companies.length > 0, companies, exists_elsewhere: existsElsewhere },
})
}