f266c386f3
* 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>
63 lines
2.1 KiB
TypeScript
63 lines
2.1 KiB
TypeScript
import { luhnValidate } from '@/lib/bankgiro/luhn'
|
|
|
|
/**
|
|
* Validates a Swedish personal number (YYYYMMDD-XXXX) using Luhn checksum.
|
|
* Returns an error message string, or null if valid.
|
|
*/
|
|
export function validateSwedishPersonalNumber(pnr: string): string | null {
|
|
if (!pnr) return 'Personnummer kravs'
|
|
|
|
// Accept YYYYMMDD-XXXX or YYYYMMDDXXXX
|
|
const cleaned = pnr.replace(/[-\s]/g, '')
|
|
if (!/^\d{12}$/.test(cleaned)) {
|
|
return 'Format: YYYYMMDD-XXXX (12 siffror)'
|
|
}
|
|
|
|
const year = parseInt(cleaned.slice(0, 4))
|
|
const month = parseInt(cleaned.slice(4, 6))
|
|
const day = parseInt(cleaned.slice(6, 8))
|
|
|
|
if (month < 1 || month > 12) return 'Ogiltig månad'
|
|
if (day < 1 || day > 31) return 'Ogiltig dag'
|
|
if (year < 1900 || year > new Date().getFullYear()) return 'Ogiltigt år'
|
|
|
|
// Luhn check on the last 10 digits (YYMMDDXXXX)
|
|
const luhnDigits = cleaned.slice(2)
|
|
if (!luhnValidate(luhnDigits)) return 'Ogiltig kontrollsiffra'
|
|
|
|
return null
|
|
}
|
|
|
|
export function validatePositiveNumber(value: number | string): string | null {
|
|
const num = typeof value === 'string' ? parseFloat(value) : value
|
|
if (isNaN(num) || num <= 0) return 'Varde maste vara storre an 0'
|
|
return null
|
|
}
|
|
|
|
export function validateNonNegativeNumber(value: number | string): string | null {
|
|
const num = typeof value === 'string' ? parseFloat(value) : value
|
|
if (isNaN(num) || num < 0) return 'Varde kan inte vara negativt'
|
|
return null
|
|
}
|
|
|
|
export function validateMaxNumber(value: number | string, max: number): string | null {
|
|
const num = typeof value === 'string' ? parseFloat(value) : value
|
|
if (isNaN(num)) return 'Ogiltigt varde'
|
|
if (num > max) return `Varde kan inte overskrida ${max}`
|
|
return null
|
|
}
|
|
|
|
export function validateRequired(value: string | number | undefined | null): string | null {
|
|
if (value === undefined || value === null || value === '') return 'Obligatoriskt falt'
|
|
return null
|
|
}
|
|
|
|
export function validateDateNotFuture(dateStr: string): string | null {
|
|
if (!dateStr) return 'Datum kravs'
|
|
const date = new Date(dateStr)
|
|
const today = new Date()
|
|
today.setHours(23, 59, 59, 999)
|
|
if (date > today) return 'Datum kan inte vara i framtiden'
|
|
return null
|
|
}
|