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>
72 lines
2.0 KiB
TypeScript
72 lines
2.0 KiB
TypeScript
import type { SupabaseClient } from '@supabase/supabase-js'
|
|
import type { AuditLogEntry, AuditAction } from '@/types'
|
|
|
|
/**
|
|
* Audit Service - Read-only service for the audit log
|
|
*
|
|
* The audit log is written exclusively by database triggers (SECURITY DEFINER).
|
|
* This service provides read access for compliance reporting and investigation.
|
|
*/
|
|
|
|
export interface AuditLogFilters {
|
|
action?: AuditAction
|
|
table_name?: string
|
|
record_id?: string
|
|
from_date?: string
|
|
to_date?: string
|
|
page?: number
|
|
pageSize?: number
|
|
/** Full exports can skip the expensive exact count and stop on a short page. */
|
|
includeCount?: boolean
|
|
}
|
|
|
|
/**
|
|
* Get paginated audit log entries for a company
|
|
*/
|
|
export async function getAuditLog(
|
|
supabase: SupabaseClient,
|
|
companyId: string,
|
|
filters: AuditLogFilters = {}
|
|
): Promise<{ data: AuditLogEntry[]; count: number }> {
|
|
const page = filters.page ?? 1
|
|
const pageSize = filters.pageSize ?? 50
|
|
const includeCount = filters.includeCount ?? true
|
|
const offset = (page - 1) * pageSize
|
|
|
|
const auditTable = supabase.from('audit_log')
|
|
let query = (includeCount
|
|
? auditTable.select('*', { count: 'exact' })
|
|
: auditTable.select('*'))
|
|
.eq('company_id', companyId)
|
|
.order('created_at', { ascending: false })
|
|
.order('id', { ascending: false })
|
|
.range(offset, offset + pageSize - 1)
|
|
|
|
if (filters.action) {
|
|
query = query.eq('action', filters.action)
|
|
}
|
|
if (filters.table_name) {
|
|
query = query.eq('table_name', filters.table_name)
|
|
}
|
|
if (filters.record_id) {
|
|
query = query.eq('record_id', filters.record_id)
|
|
}
|
|
if (filters.from_date) {
|
|
query = query.gte('created_at', filters.from_date)
|
|
}
|
|
if (filters.to_date) {
|
|
query = query.lte('created_at', filters.to_date)
|
|
}
|
|
|
|
const { data, error, count } = await query
|
|
|
|
if (error) {
|
|
throw new Error(`Failed to fetch audit log: ${error.message}`)
|
|
}
|
|
|
|
return {
|
|
data: (data as AuditLogEntry[]) || [],
|
|
count: includeCount ? count ?? 0 : 0,
|
|
}
|
|
}
|