* feat: add sandbox infrastructure — migration, types, and middleware Add database migration for sandbox support: - Add `is_sandbox` boolean column to company_settings - Update 4 enforcement trigger functions (journal entry immutability, journal entry line immutability, retention enforcement, document deletion blocking) to bypass checks for sandbox users - Add `cleanup_sandbox_user()` SECURITY DEFINER function that handles FK-safe deletion order (document_attachments → journal_entry_lines → journal_entries → supplier_invoices → auth.users cascade) - Add `cleanup_expired_sandbox_users()` function that loops over sandbox users older than N hours with per-user error handling Update TypeScript types: - Add `is_sandbox: boolean` to CompanySettings interface - Add `is_sandbox: false` to makeCompanySettings() test factory Update middleware: - Add `/sandbox` to public routes so the landing page is accessible without authentication Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * feat: add sandbox landing page, seed API, cleanup cron, and banner Sandbox landing page (app/sandbox/page.tsx): - Client component matching the existing auth page aesthetic - Auth check: if logged in as real user, shows message to use incognito - Otherwise shows feature overview (invoices, transactions, bookkeeping, reports) with "Starta sandbox" button - On click: signInAnonymously() → POST /api/sandbox/seed → redirect - Uses window.location.href for full page load (ensures middleware picks up new session cookies) Seed API (app/api/sandbox/seed/route.ts): - POST handler gated to anonymous users only (403 for real users) - Idempotent: returns { seeded: false } if company_settings exists - Seeds ~40 rows: profile, company_settings (is_sandbox: true, onboarding_complete: true), chart of accounts (via RPC), fiscal period, 3 customers (Swedish business, EU business, individual), 4 invoices (paid/sent/overdue/draft), 4 invoice items, 2 posted journal entries with 5 lines, 8 transactions (3 categorized, 2 income, 3 uncategorized), 2 deadlines - Journal entries inserted directly (not via engine) to avoid event emission, using next_voucher_number() RPC Cleanup cron (app/api/sandbox/cleanup/cron/route.ts): - GET handler with CRON_SECRET Bearer token auth - Creates service role Supabase client - Calls cleanup_expired_sandbox_users RPC (24h default) Sandbox banner (components/dashboard/SandboxBanner.tsx): - Amber bar with dismiss button (client state, reappears on reload) - Text: "Sandlådemiljö — dina data raderas automatiskt efter 24 timmar" - "Skapa konto" link to /register Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * feat: integrate sandbox into dashboard — banner, nav, settings safeguards Dashboard layout (app/(dashboard)/layout.tsx): - Fetch is_sandbox from company_settings - Render SandboxBanner at top of page for sandbox users - Pass isSandbox prop to DashboardNav - Hide RecaptIdentify analytics for sandbox users Root page (app/page.tsx): - Same sandbox banner and isSandbox prop treatment as dashboard layout (root page has its own layout, not wrapped by (dashboard)/layout) DashboardNav (components/dashboard/DashboardNav.tsx): - Add optional isSandbox prop - Change logout button text to "Avsluta sandbox" when isSandbox - Redirect to /sandbox instead of /login on logout for sandbox users - Applied to both desktop sidebar and mobile drawer logout buttons Settings page (app/(dashboard)/settings/page.tsx): - Hide "Bank (PSD2)" tab entirely for sandbox users — prevents connecting real bank accounts from a temporary anonymous session - Hide "Radera konto" card for sandbox users — account auto-deletes via cron, and the delete flow requires email confirmation Vercel config (vercel.json): - Add sandbox cleanup cron at 04:00 UTC daily (/api/sandbox/cleanup/cron) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: remove audit trigger for non-existent tax_codes table Migration 018 referenced public.tax_codes which was never created (migration 012 is a placeholder). This caused failures when running migrations from scratch on a fresh database. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: remove ALTER FUNCTION for 3 non-existent functions Removed search_path pinning for create_invoice_with_items, seed_asset_categories, and update_reconciliation_session_counts — none of these functions were ever created in any migration. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: remove ALTER for generate_invoice_number (created in later migration) The function is created in migration 20260306 with search_path already set, but migration 20260304 tried to ALTER it before it existed. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * Fixed redirect issue * Update app/api/sandbox/seed/route.ts Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com> * Update app/api/sandbox/seed/route.ts Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com> * Update app/sandbox/page.tsx Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com> * Fixed catch block issue --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com> Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
114 lines
4.0 KiB
PL/PgSQL
114 lines
4.0 KiB
PL/PgSQL
-- Migration 18: Audit Logging Triggers
|
|
-- Generic audit log writer with AFTER triggers on compliance-critical tables
|
|
|
|
-- =============================================================================
|
|
-- 1. Generic write_audit_log() SECURITY DEFINER function
|
|
-- Detects action type from TG_OP and state transitions
|
|
-- =============================================================================
|
|
CREATE OR REPLACE FUNCTION public.write_audit_log()
|
|
RETURNS trigger
|
|
LANGUAGE plpgsql
|
|
SECURITY DEFINER
|
|
AS $$
|
|
DECLARE
|
|
v_user_id uuid;
|
|
v_action text;
|
|
v_old_state jsonb;
|
|
v_new_state jsonb;
|
|
v_record_id uuid;
|
|
v_desc text;
|
|
BEGIN
|
|
-- Determine user_id from the record
|
|
IF TG_OP = 'DELETE' THEN
|
|
v_user_id := OLD.user_id;
|
|
v_record_id := OLD.id;
|
|
v_old_state := to_jsonb(OLD);
|
|
v_new_state := NULL;
|
|
v_action := 'DELETE';
|
|
v_desc := 'Deleted ' || TG_TABLE_NAME || ' record';
|
|
ELSIF TG_OP = 'INSERT' THEN
|
|
v_user_id := NEW.user_id;
|
|
v_record_id := NEW.id;
|
|
v_old_state := NULL;
|
|
v_new_state := to_jsonb(NEW);
|
|
v_action := 'INSERT';
|
|
v_desc := 'Created ' || TG_TABLE_NAME || ' record';
|
|
ELSIF TG_OP = 'UPDATE' THEN
|
|
v_user_id := COALESCE(NEW.user_id, OLD.user_id);
|
|
v_record_id := COALESCE(NEW.id, OLD.id);
|
|
v_old_state := to_jsonb(OLD);
|
|
v_new_state := to_jsonb(NEW);
|
|
v_action := 'UPDATE';
|
|
v_desc := 'Updated ' || TG_TABLE_NAME || ' record';
|
|
|
|
-- Detect specific state transitions for journal_entries
|
|
IF TG_TABLE_NAME = 'journal_entries' THEN
|
|
IF OLD.status = 'draft' AND NEW.status = 'posted' THEN
|
|
v_action := 'COMMIT';
|
|
v_desc := 'Committed journal entry ' || NEW.voucher_series || NEW.voucher_number;
|
|
ELSIF OLD.status = 'posted' AND NEW.status = 'reversed' THEN
|
|
v_action := 'REVERSE';
|
|
v_desc := 'Reversed journal entry ' || OLD.voucher_series || OLD.voucher_number;
|
|
END IF;
|
|
END IF;
|
|
|
|
-- Detect period lock/close
|
|
IF TG_TABLE_NAME = 'fiscal_periods' THEN
|
|
IF (OLD.locked_at IS NULL AND NEW.locked_at IS NOT NULL) THEN
|
|
v_action := 'LOCK_PERIOD';
|
|
v_desc := 'Locked fiscal period "' || NEW.name || '"';
|
|
ELSIF (NOT OLD.is_closed AND NEW.is_closed) THEN
|
|
v_action := 'CLOSE_PERIOD';
|
|
v_desc := 'Closed fiscal period "' || NEW.name || '"';
|
|
END IF;
|
|
END IF;
|
|
END IF;
|
|
|
|
-- Write to audit log (bypass RLS via SECURITY DEFINER)
|
|
INSERT INTO public.audit_log (user_id, action, table_name, record_id, actor_id, old_state, new_state, description)
|
|
VALUES (v_user_id, v_action, TG_TABLE_NAME, v_record_id, v_user_id, v_old_state, v_new_state, v_desc);
|
|
|
|
-- Return appropriate value
|
|
IF TG_OP = 'DELETE' THEN
|
|
RETURN OLD;
|
|
END IF;
|
|
RETURN NEW;
|
|
END;
|
|
$$;
|
|
|
|
-- =============================================================================
|
|
-- 2. AFTER triggers on compliance-critical tables
|
|
-- =============================================================================
|
|
|
|
-- journal_entries
|
|
CREATE TRIGGER audit_journal_entries
|
|
AFTER INSERT OR UPDATE OR DELETE ON public.journal_entries
|
|
FOR EACH ROW EXECUTE FUNCTION public.write_audit_log();
|
|
|
|
-- journal_entry_lines
|
|
CREATE TRIGGER audit_journal_entry_lines
|
|
AFTER INSERT OR UPDATE OR DELETE ON public.journal_entry_lines
|
|
FOR EACH ROW EXECUTE FUNCTION public.write_audit_log();
|
|
|
|
-- chart_of_accounts
|
|
CREATE TRIGGER audit_chart_of_accounts
|
|
AFTER INSERT OR UPDATE OR DELETE ON public.chart_of_accounts
|
|
FOR EACH ROW EXECUTE FUNCTION public.write_audit_log();
|
|
|
|
-- document_attachments
|
|
CREATE TRIGGER audit_document_attachments
|
|
AFTER INSERT OR UPDATE OR DELETE ON public.document_attachments
|
|
FOR EACH ROW EXECUTE FUNCTION public.write_audit_log();
|
|
|
|
-- fiscal_periods
|
|
CREATE TRIGGER audit_fiscal_periods
|
|
AFTER INSERT OR UPDATE OR DELETE ON public.fiscal_periods
|
|
FOR EACH ROW EXECUTE FUNCTION public.write_audit_log();
|
|
|
|
-- company_settings
|
|
CREATE TRIGGER audit_company_settings
|
|
AFTER INSERT OR UPDATE OR DELETE ON public.company_settings
|
|
FOR EACH ROW EXECUTE FUNCTION public.write_audit_log();
|
|
|
|
-- tax_codes trigger removed: table never created (migration 012 is a placeholder)
|