Files
accounted/lib/core/audit/audit-service.ts
T
MattssonandClaude Opus 4.7 d708a85d4c Feat/cloud backup (#277)
* feat: cloud backup to Google Drive + full-archive all-scope

Adds a cloud-backup extension that uploads a full-company backup ZIP to
the user's own Google Drive via OAuth (drive.file scope only). Refresh
tokens are AES-256-GCM encrypted before being stored in extension_data.

The full-archive export gains a scope=all mode for whole-company
backups (per-period SIE under sie/, per-period rapporter/ subfolders,
flat dokument/ manifest tagged with fiscal_period_id). An 80 MB size
guard short-circuits generation before the platform response limit.

Also fixes a latent bug in lib/core/audit/audit-service.ts where the
parameter was named userId while the query filtered by company_id; the
audit-trail API route was passing user.id so audit queries returned
empty unless user and company shared a UUID.

Drive-by: scope the dashboard "fresh start" localStorage key per
companyId so dismissing the setup checklist in one company no longer
carries over to others.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

* fix: address review comments on cloud backup + archive export

- Extend audit trail to_date to end-of-day so last-day entries aren't
  silently excluded from period-scoped archives.
- Apply 413 size-limit guard regardless of include_documents, using the
  overhead-only figure when documents are excluded.
- Use crypto.randomUUID() for Drive multipart boundary to eliminate any
  collision risk with ZIP payload bytes.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

* fix: migrate legacy setup-gate localStorage keys on dashboard

Users who previously dismissed the setup checklist via the old global
erp_setup_fresh_start or erp_checklist_dismissed keys were re-gated after
the switch to a company-scoped key. Fall back to the legacy keys on read
and migrate them to the scoped key on first hit.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

* fix: update customer email handling and anonymization rules in supportmail-to-ticket skill

* test: update audit trail to_date expectation for end-of-day timestamp

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

---------

Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-20 10:49:59 +02:00

147 lines
3.9 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
}
/**
* 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 offset = (page - 1) * pageSize
let query = supabase
.from('audit_log')
.select('*', { count: 'exact' })
.eq('company_id', companyId)
.order('created_at', { 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: count ?? 0,
}
}
/**
* Get full history of a single record (all mutations)
*/
export async function getEntityHistory(
supabase: SupabaseClient,
companyId: string,
tableName: string,
recordId: string
): Promise<AuditLogEntry[]> {
const { data, error } = await supabase
.from('audit_log')
.select('*')
.eq('company_id', companyId)
.eq('table_name', tableName)
.eq('record_id', recordId)
.order('created_at', { ascending: true })
if (error) {
throw new Error(`Failed to fetch entity history: ${error.message}`)
}
return (data as AuditLogEntry[]) || []
}
/**
* Trace the correction chain for a journal entry:
* original → storno (reversal) → corrected entry
*/
export async function getCorrectionChain(
supabase: SupabaseClient,
companyId: string,
journalEntryId: string
): Promise<AuditLogEntry[]> {
// First, find the entry and its linked entries
const { data: entry, error: entryError } = await supabase
.from('journal_entries')
.select('id, reverses_id, reversed_by_id, correction_of_id')
.eq('id', journalEntryId)
.eq('company_id', companyId)
.single()
if (entryError || !entry) {
throw new Error('Journal entry not found')
}
// Collect all related entry IDs
const relatedIds = new Set<string>([entry.id])
if (entry.reverses_id) relatedIds.add(entry.reverses_id)
if (entry.reversed_by_id) relatedIds.add(entry.reversed_by_id)
if (entry.correction_of_id) relatedIds.add(entry.correction_of_id)
// Also look for entries that reference this one
const { data: referencing } = await supabase
.from('journal_entries')
.select('id')
.eq('company_id', companyId)
.or(`reverses_id.eq.${journalEntryId},reversed_by_id.eq.${journalEntryId},correction_of_id.eq.${journalEntryId}`)
for (const ref of referencing || []) {
relatedIds.add(ref.id)
}
// Fetch audit log entries for all related IDs
const { data, error } = await supabase
.from('audit_log')
.select('*')
.eq('company_id', companyId)
.eq('table_name', 'journal_entries')
.in('record_id', Array.from(relatedIds))
.order('created_at', { ascending: true })
if (error) {
throw new Error(`Failed to fetch correction chain: ${error.message}`)
}
return (data as AuditLogEntry[]) || []
}