bca00cc5bd
* fix: BankID graceful fallback, bank import fixes, and account deletion - BankID: surface service_unavailable state in login/register with password fallback messaging; structured error codes in tic extension; poll failure counter in BankIdAuth avoids infinite retry when TIC API is down. - Transactions: allow deleting unbooked bank-synced and imported transactions (only posted entries remain protected); detect reconnect duplicates by also checking unbooked bank-synced rows in content-based dedup. - Enable Banking: key external_id by account iban/uid instead of connection id so reconnects don't create duplicates. - Bank import: detect SEB privatbanken CSV variant (Bokföringsdatum / Valutadatum headers) via regex. - Banking settings: replace full-screen sync loader with toast notifications. - delete_user_account: raise statement_timeout, pre-clear NO ACTION FK references, and disable audit/immutability triggers during CASCADE. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * fix: address Greptile review — ingest dedup scoping and migration EXCEPTION handler - ingest: split buildExistingTransactionMap into two maps. Booked rows (any source) remain consumed by any incoming raw transaction, but unbooked enable_banking slots are only consumed when the incoming raw transaction is also enable_banking. This preserves reconnect dedup while preventing false positives where a pending bank-synced row silently blocks a legitimately separate CSV row with the same date/amount. - delete_user_account: add EXCEPTION WHEN OTHERS handler that re-enables every legally required enforcement trigger before re-raising. Postgres transactional DDL already rolls back on abort, but the explicit guard makes the intent unambiguous and covers sub-transaction edge cases so enforcement triggers are never left disabled. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
380 lines
13 KiB
TypeScript
380 lines
13 KiB
TypeScript
'use client'
|
|
|
|
import { useState, useEffect, useRef, useCallback } from 'react'
|
|
import Image from 'next/image'
|
|
import { BankIdQrCode } from './BankIdQrCode'
|
|
import { Button } from '@/components/ui/button'
|
|
import { Smartphone, Monitor, AlertTriangle } from 'lucide-react'
|
|
|
|
type BankIdStatus = 'idle' | 'scanning' | 'complete' | 'failed' | 'no_account' | 'service_unavailable'
|
|
|
|
/** Max consecutive poll failures before we declare service unavailable */
|
|
const MAX_POLL_FAILURES = 3
|
|
|
|
interface BankIdSession {
|
|
sessionId: string
|
|
autoStartToken: string
|
|
qrStartToken: string
|
|
qrStartSecret: string
|
|
}
|
|
|
|
export interface BankIdResult {
|
|
tokenHash?: string
|
|
type?: string
|
|
isNewUser?: boolean
|
|
error?: 'no_account' | 'already_linked' | 'session_invalid' | 'service_unavailable'
|
|
givenName?: string
|
|
surname?: string
|
|
sessionId?: string
|
|
}
|
|
|
|
interface BankIdAuthProps {
|
|
mode: 'login' | 'signup' | 'link'
|
|
onComplete: (result: BankIdResult) => void
|
|
}
|
|
|
|
const API_BASE = '/api/extensions/ext/tic/bankid'
|
|
|
|
function isMobile(): boolean {
|
|
if (typeof navigator === 'undefined') return false
|
|
return /iPhone|iPad|iPod|Android/i.test(navigator.userAgent)
|
|
}
|
|
|
|
/**
|
|
* BankID authentication flow component.
|
|
* Handles QR code display (desktop) or app deep link (mobile),
|
|
* polling, and result handling.
|
|
*/
|
|
export function BankIdAuth({ mode, onComplete }: BankIdAuthProps) {
|
|
const [status, setStatus] = useState<BankIdStatus>('idle')
|
|
const [session, setSession] = useState<BankIdSession | null>(null)
|
|
const [hintMessage, setHintMessage] = useState<string>('')
|
|
const [errorMessage, setErrorMessage] = useState<string>('')
|
|
const pollRef = useRef<ReturnType<typeof setInterval> | null>(null)
|
|
const abortRef = useRef<AbortController | null>(null)
|
|
const lastStartRef = useRef<number>(0)
|
|
const onCompleteRef = useRef(onComplete)
|
|
onCompleteRef.current = onComplete
|
|
|
|
const pollFailureCount = useRef(0)
|
|
|
|
const cleanup = useCallback(() => {
|
|
if (pollRef.current) {
|
|
clearInterval(pollRef.current)
|
|
pollRef.current = null
|
|
}
|
|
if (abortRef.current) {
|
|
abortRef.current.abort()
|
|
abortRef.current = null
|
|
}
|
|
pollFailureCount.current = 0
|
|
}, [])
|
|
|
|
useEffect(() => cleanup, [cleanup])
|
|
|
|
const startSession = useCallback(async () => {
|
|
// Prevent rapid restarts (each start = billable TIC session)
|
|
const now = Date.now()
|
|
if (now - lastStartRef.current < 5000) return
|
|
lastStartRef.current = now
|
|
|
|
cleanup()
|
|
setStatus('scanning')
|
|
setHintMessage('Starta BankID-appen')
|
|
setErrorMessage('')
|
|
|
|
try {
|
|
const res = await fetch(`${API_BASE}/start`, { method: 'POST' })
|
|
if (!res.ok) {
|
|
const err = await res.json().catch(() => ({}))
|
|
if (err.error === 'service_unavailable' || err.error === 'not_configured' || res.status === 502 || res.status === 503) {
|
|
cleanup()
|
|
setStatus('service_unavailable')
|
|
setErrorMessage('BankID-tjänsten är inte tillgänglig just nu')
|
|
onCompleteRef.current({ error: 'service_unavailable' })
|
|
return
|
|
}
|
|
throw new Error(err.message || err.error || 'Failed to start BankID')
|
|
}
|
|
|
|
const { data } = await res.json()
|
|
const newSession: BankIdSession = data
|
|
setSession(newSession)
|
|
|
|
// On mobile, open BankID app — redirect=null so it doesn't open a new tab;
|
|
// the polling in this tab detects completion when the user switches back.
|
|
if (isMobile()) {
|
|
window.location.href = `bankid:///?autostarttoken=${newSession.autoStartToken}&redirect=null`
|
|
}
|
|
|
|
// Start polling
|
|
abortRef.current = new AbortController()
|
|
pollRef.current = setInterval(async () => {
|
|
try {
|
|
const pollRes = await fetch(`${API_BASE}/poll`, {
|
|
method: 'POST',
|
|
headers: { 'Content-Type': 'application/json' },
|
|
body: JSON.stringify({ sessionId: newSession.sessionId }),
|
|
signal: abortRef.current?.signal,
|
|
})
|
|
|
|
if (!pollRes.ok) {
|
|
const pollErr = await pollRes.json().catch(() => ({}))
|
|
if (pollErr.error === 'service_unavailable' || pollRes.status === 502 || pollRes.status === 503) {
|
|
pollFailureCount.current++
|
|
if (pollFailureCount.current >= MAX_POLL_FAILURES) {
|
|
cleanup()
|
|
setStatus('service_unavailable')
|
|
setErrorMessage('BankID-tjänsten är inte tillgänglig just nu')
|
|
onCompleteRef.current({ error: 'service_unavailable' })
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
// Reset failure counter on successful poll
|
|
pollFailureCount.current = 0
|
|
|
|
const pollJson = await pollRes.json()
|
|
const pollData = pollJson.data
|
|
|
|
if (!pollData) {
|
|
console.warn('[bankid] poll returned no data:', pollJson)
|
|
return
|
|
}
|
|
|
|
// Update hint message from TIC API
|
|
if (pollData.message) {
|
|
setHintMessage(pollData.message)
|
|
}
|
|
|
|
// Handle token refresh (order regeneration ~25s)
|
|
if (pollData.qrStartToken && pollData.qrStartSecret) {
|
|
setSession((prev) =>
|
|
prev
|
|
? { ...prev, qrStartToken: pollData.qrStartToken, qrStartSecret: pollData.qrStartSecret }
|
|
: prev
|
|
)
|
|
}
|
|
|
|
if (pollData.status === 'complete') {
|
|
cleanup()
|
|
setStatus('complete')
|
|
|
|
if (mode === 'login') {
|
|
// For login, call /complete to exchange for Supabase session
|
|
try {
|
|
const completeRes = await fetch(`${API_BASE}/complete`, {
|
|
method: 'POST',
|
|
headers: { 'Content-Type': 'application/json' },
|
|
body: JSON.stringify({
|
|
sessionId: newSession.sessionId,
|
|
mode: 'login',
|
|
}),
|
|
})
|
|
const completeJson = await completeRes.json()
|
|
|
|
if (!completeRes.ok) {
|
|
const errorCode = completeJson.error === 'service_unavailable' || completeRes.status === 502 || completeRes.status === 503
|
|
? 'service_unavailable' as const
|
|
: completeJson.error
|
|
if (errorCode === 'service_unavailable') {
|
|
setStatus('service_unavailable')
|
|
setErrorMessage('BankID-tjänsten är inte tillgänglig just nu')
|
|
}
|
|
onCompleteRef.current({
|
|
error: errorCode,
|
|
givenName: completeJson.givenName,
|
|
surname: completeJson.surname,
|
|
})
|
|
return
|
|
}
|
|
|
|
onCompleteRef.current({
|
|
tokenHash: completeJson.data.tokenHash,
|
|
type: completeJson.data.type,
|
|
isNewUser: completeJson.data.isNewUser,
|
|
})
|
|
} catch {
|
|
onCompleteRef.current({ error: 'session_invalid' })
|
|
}
|
|
} else if (mode === 'link') {
|
|
// For link, call /link to associate BankID with current user
|
|
try {
|
|
const linkRes = await fetch(`${API_BASE}/link`, {
|
|
method: 'POST',
|
|
headers: { 'Content-Type': 'application/json' },
|
|
body: JSON.stringify({ sessionId: newSession.sessionId }),
|
|
})
|
|
const linkJson = await linkRes.json()
|
|
|
|
if (!linkRes.ok) {
|
|
onCompleteRef.current({ error: linkJson.error })
|
|
return
|
|
}
|
|
|
|
onCompleteRef.current({})
|
|
} catch {
|
|
onCompleteRef.current({ error: 'session_invalid' })
|
|
}
|
|
} else {
|
|
// For signup, return user data + sessionId so parent can collect email
|
|
onCompleteRef.current({
|
|
givenName: pollData.user?.givenName,
|
|
surname: pollData.user?.surname,
|
|
sessionId: newSession.sessionId,
|
|
})
|
|
}
|
|
} else if (pollData.status === 'failed' || pollData.status === 'cancelled') {
|
|
cleanup()
|
|
setStatus('failed')
|
|
setErrorMessage(pollData.message || 'BankID-identifieringen misslyckades')
|
|
}
|
|
} catch (error) {
|
|
if (error instanceof Error && error.name === 'AbortError') return
|
|
pollFailureCount.current++
|
|
if (pollFailureCount.current >= MAX_POLL_FAILURES) {
|
|
cleanup()
|
|
setStatus('service_unavailable')
|
|
setErrorMessage('BankID-tjänsten är inte tillgänglig just nu')
|
|
onCompleteRef.current({ error: 'service_unavailable' })
|
|
}
|
|
}
|
|
}, 2000)
|
|
} catch (error) {
|
|
setStatus('failed')
|
|
setErrorMessage(error instanceof Error ? error.message : 'Ett oväntat fel uppstod')
|
|
}
|
|
}, [cleanup, mode])
|
|
|
|
const handleCancel = useCallback(async () => {
|
|
if (session) {
|
|
fetch(`${API_BASE}/${session.sessionId}`, { method: 'DELETE' }).catch(() => {})
|
|
}
|
|
cleanup()
|
|
setStatus('idle')
|
|
setSession(null)
|
|
}, [session, cleanup])
|
|
|
|
if (status === 'idle') {
|
|
const label = mode === 'login'
|
|
? 'Logga in med BankID'
|
|
: mode === 'link'
|
|
? 'Koppla BankID'
|
|
: 'Skapa konto med BankID'
|
|
|
|
return (
|
|
<Button
|
|
onClick={startSession}
|
|
variant="outline"
|
|
className="w-full gap-2 border-[1.5px] py-6 text-base"
|
|
>
|
|
<BankIdIcon />
|
|
{label}
|
|
</Button>
|
|
)
|
|
}
|
|
|
|
if (status === 'service_unavailable') {
|
|
return (
|
|
<div className="rounded-lg border border-amber-200 bg-amber-50 p-4 dark:border-amber-900 dark:bg-amber-950/30">
|
|
<div className="flex items-start gap-3">
|
|
<AlertTriangle className="mt-0.5 h-4 w-4 shrink-0 text-amber-600 dark:text-amber-400" />
|
|
<div className="space-y-1.5">
|
|
<p className="text-sm font-medium text-amber-800 dark:text-amber-200">
|
|
BankID är inte tillgängligt just nu
|
|
</p>
|
|
<p className="text-sm text-amber-700 dark:text-amber-300">
|
|
{mode === 'login'
|
|
? 'Logga in med e-post och lösenord nedan, eller använd "Glömt lösenord?" för en inloggningslänk via e-post.'
|
|
: mode === 'signup'
|
|
? 'Skapa konto med e-post och lösenord nedan istället.'
|
|
: 'Försök igen senare.'}
|
|
</p>
|
|
<Button
|
|
onClick={startSession}
|
|
variant="ghost"
|
|
size="sm"
|
|
className="mt-1 h-auto px-0 py-0 text-xs text-amber-600 underline underline-offset-2 hover:text-amber-800 dark:text-amber-400"
|
|
>
|
|
Försök med BankID igen
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
if (status === 'failed') {
|
|
return (
|
|
<div className="flex flex-col items-center gap-4">
|
|
<p className="text-sm text-destructive">{errorMessage}</p>
|
|
<Button onClick={startSession} variant="outline" className="gap-2">
|
|
<BankIdIcon />
|
|
Försök igen
|
|
</Button>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
const openBankIdOnDevice = () => {
|
|
if (!session) return
|
|
// Open BankID app on the same device via deep link
|
|
// redirect=null tells BankID not to redirect after completion
|
|
window.location.href = `bankid:///?autostarttoken=${session.autoStartToken}&redirect=null`
|
|
}
|
|
|
|
// Scanning / waiting for user
|
|
return (
|
|
<div className="flex flex-col items-center gap-4">
|
|
{session && !isMobile() && (
|
|
<>
|
|
<BankIdQrCode
|
|
qrStartToken={session.qrStartToken}
|
|
qrStartSecret={session.qrStartSecret}
|
|
/>
|
|
<Button
|
|
onClick={openBankIdOnDevice}
|
|
variant="ghost"
|
|
size="sm"
|
|
className="gap-1.5 text-muted-foreground"
|
|
>
|
|
<Monitor className="h-3.5 w-3.5" />
|
|
BankID pa den har enheten
|
|
</Button>
|
|
</>
|
|
)}
|
|
|
|
{isMobile() && (
|
|
<div className="flex flex-col items-center gap-2">
|
|
<Smartphone className="h-8 w-8 text-muted-foreground" />
|
|
<p className="text-sm text-muted-foreground">Oppnar BankID-appen...</p>
|
|
</div>
|
|
)}
|
|
|
|
<p className="text-sm text-muted-foreground">{hintMessage}</p>
|
|
|
|
<Button
|
|
onClick={handleCancel}
|
|
variant="ghost"
|
|
size="sm"
|
|
className="text-muted-foreground"
|
|
>
|
|
Avbryt
|
|
</Button>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
function BankIdIcon() {
|
|
return (
|
|
<Image
|
|
src="/logos/bankid-seeklogo.svg"
|
|
alt="BankID"
|
|
width={20}
|
|
height={20}
|
|
className="dark:invert"
|
|
/>
|
|
)
|
|
}
|