Bundles the prior session's 50-task fix sweep (Documenso v2 + EOI/signing-
progress redesign + env-to-admin migration + dev-mode banner) with the
2026-05-18 audit fix wave (3 CRITICAL, 14 HIGH, 28 MEDIUM, 6 LOW).
CRITICAL (3):
- C-01 interest-berths INNER JOIN -> LEFT JOIN so hard-deleted berths
no longer silently drop interest links
- C-02 /setup added to PUBLIC_PATHS; fresh-deploy bootstrap loop fixed
- C-03 generic PATCH /interests/[id] no longer accepts pipelineStage —
callers must go through /stage with the override-guard chain
HIGH (14/15):
- H-01 explicit ON DELETE on previously-implicit NO ACTION FKs across
interests/documents/reservations/reminders/invoices (migration 0070)
- H-02 login page reads ?redirect= param with same-origin guard
- H-03 CRM invite token moves to URL fragment so it never lands in
nginx access logs / Referer headers
- H-04 Retry-After header on sign-in-by-identifier 429 (RFC 6585 §4)
- H-05 toggleAccount writes an audit row
- H-06 upsertSetting masks any value whose key ends with _encrypted
- H-07 archiveClient cascade fires per-interest audit rows
- H-08 createSalesTransporter applies SMTP_TIMEOUTS
- H-09 AppShell stable children — viewport flip across breakpoint no
longer destroys in-progress form drafts
- H-10 portal documents page swaps Unicode glyph status icons for
Lucide CheckCircle2/XCircle/Circle + aria-labels
- H-12 list components swap alert(...) for toast.warning(...)
- H-13 5 icon-only buttons gain aria-label
- H-14 parseBody treats empty bodies as {}
- H-15 admin layout renders a 403 panel instead of silent bounce
- H-11 not applicable — mobile-search-overlay IS a mobile bottom-sheet
MEDIUM (28+):
- M-MT01-05 defense-in-depth port_id/parent-id filters on UPDATE/DELETE
WHEREs across custom-fields, notes (all 6 entity types x update +
delete), client-contacts, yacht ownerClient lookup, webhook reads
- M-D01 documents-hub realtime event-name typo (file:created -> uploaded)
- M-EM01 portal-auth emails thread through portId
- M-EM02 sendEmail accepts cc/bcc params
- M-EM04 notification_digest catalog key
- M-IN01 portal presigned download URLs use 4h TTL
- M-IN02 OpenAI client lazy-instantiated
- M-IN04 stale pdfme refs updated to pdf-lib AcroForm
- M-IN05 umami.testConnection returns tagged union
- M-L01 reservations tenure_type unified with berths
- M-L02 report-generators canonicalize stage values
- M-AU01 audit log placeholder copy fixed
- M-AU04 outcome_set / outcome_cleared distinct audit verbs
- M-NEW-2 activity feed entity name+type separator
- M-R01 portal allowlist narrowed + portal_session backstop in proxy
- M-SC02 companies archived partial index
- M-SC04 audit_logs.searchText documented as DB-managed
- M-S01 storage_s3_access_key_encrypted admin field
- M-U01 audit log empty state uses <EmptyState>
- M-U09 invoice delete dialog -> <AlertDialog>
- M-U10 toast.success on ClientForm + InterestForm create/edit
- M-U11 settings-form-card logo preview alt text
- M-U14 mobile topbar title on clients/yachts/interests/berths
- M-U15 Invoices in mobile More-sheet
LOW (6/8):
- L-AU01 severity defaults for security-relevant verbs
- L-AU02 +13 missing actions in admin audit filter
- L-AU03 +7 missing entity types in admin audit filter
- L-AU04 dead listAuditLogs stubbed
- L-D02 CLAUDE.md Owner-wins chain tightened
Bonus — Document detail polish (#67 partial, 3/6 deliverables):
- state-aware action button per signer
- watcher Add UI with display-name resolution
- cleanSignerName cleanup
Prior session work bundled in:
- Documenso v2 webhook + envelope-ID normalization + sequential signing
- SigningProgress UI redesign (avatars, per-signer state, timestamps)
- env->admin settings registry + RegistryDrivenForm + encrypted creds
- Embedded-signing card + Test connection + setup help
- Dev-mode EMAIL_REDIRECT_TO banner
- Pipeline rules admin page
- Sales email config card
- Audit log details Sheet
- EOI tab: Finalising badge, absolute timestamps, sequential indicator
- Notes pipeline_stage_at_creation (migration 0069)
- Documenso numeric ID dual-key webhook (migration 0068)
- Dimensions criterion copy (migration 0067)
Tests: 1374/1374 vitest pass. tsc clean. lint clean.
See docs/AUDIT-FIX-WAVE-2026-05-18.md for the full progress report and
the user-input items still pending.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
8.0 KiB
8.0 KiB
Multi-tenancy + Schema Audit (MT-01-11, SC-01-15) — agent #2
Headline: API port isolation structurally sound, but 5 write paths do port check in JS without re-asserting portId in WHERE (TOCTOU gaps). Schema has several FKs that are ON DELETE NO ACTION in DB while nullable Drizzle declarations imply SET NULL — most critically documents.clientId and all berthReservations FKs.
Counts: 0 critical · 1 high · 8 medium · 0 low.
🟠 HIGH SC-02: Multiple significant FKs missing onDelete — remain ON DELETE NO ACTION
- Files:
src/lib/db/schema/interests.ts:29,32—interests.portId,interests.clientIdsrc/lib/db/schema/documents.ts:72,85,86—documents.clientId,documents.fileId,documents.signedFileIdsrc/lib/db/schema/reservations.ts:18,24,25,27,28,33— all 6berthReservationsFKssrc/lib/db/schema/operations.ts:25—reminders.clientIdsrc/lib/db/schema/financial.ts:120—invoices.pdfFileIdsrc/lib/db/schema/documents.ts:176—documentEvents.signerId
- What:
.references(...)without{ onDelete: ... }emitsON DELETE NO ACTION. Confirmed in migration 0000:841 (interests_client_id_clients_id_fk ... ON DELETE no action). - Why it matters: Hard-deleting a parent (client, berth, yacht, file) blocks at FK level.
client-hard-delete.service.tsmanually nullifies butberthReservations(4 NO ACTION FKs) is not in the chain. Future maintenance trap. - Suggested fix: Add
{ onDelete: 'set null' }for nullable FKs that should tolerate parent deletion; explicit{ onDelete: 'restrict' }for those that intentionally block (e.g.,interests.clientId— design intent is archive-first).
🟡 MEDIUM MT-01: updateDefinition UPDATE uses only id in WHERE, not and(id, portId)
- File:
src/lib/services/custom-fields.service.ts:136-145 - What: Guard read uses
and(eq(id, fieldId), eq(portId, portId)), but UPDATE fires with onlyeq(customFieldDefinitions.id, fieldId). - Why it matters: TOCTOU race between read check and write.
- Suggested fix: Mirror
updateTag/deleteTag: addand(eq(...id), eq(...portId, portId))to the UPDATE WHERE.
🟡 MEDIUM MT-01: notes.service.ts UPDATE/DELETE missing entityId scope
- File:
src/lib/services/notes.service.ts:846-850, 869-873, 897-901 - What: All note
update()branches verify ownership via prior SELECT, then UPDATE/DELETE oneq(...notes.id, noteId)alone (noeq(yachtNotes.yachtId, entityId)etc). - Why it matters: TOCTOU gap; risk currently low (UUIDs, no cross-entity discovery surface).
- Suggested fix: Add
eq(...notes.<parent>Id, entityId)to each UPDATE/DELETE WHERE.
🟡 MEDIUM MT-01: clients.service.ts::updateContact / removeContact UPDATE/DELETE use only contactId
- File:
src/lib/services/clients.service.ts:737-741, 764 - What: PortId verified in JS only; mutation has no portId guard.
- Suggested fix: Add
eq(clientContacts.clientId, clientId)to the UPDATE/DELETE WHERE.
🟡 MEDIUM MT-04: notes.service.ts::listForYachtAggregated ownerClientId lookup has no portId guard
- File:
src/lib/services/notes.service.ts:276-283 - What: Owner client SELECT uses only
eq(clients.id, ownerClientId). Yacht is verified in port but cross-port ownerClientId would still surface. - Suggested fix: Add
eq(clients.portId, portId).
🟡 MEDIUM MT-06: webhooks.service.ts::getWebhook / updateWebhook / deleteWebhook fetch by id only, portId checked in JS
- File:
src/lib/services/webhooks.service.ts:103-108, 133-137, 170-174 - What: Fetches full webhook row (incl. encrypted secret) before JS port check.
- Why it matters: Defense-in-depth gap — secret briefly in app memory before authz check.
- Suggested fix: Move portId into
findFirstWHERE.
🟡 MEDIUM SC-01: Migration 0000 (and 0001-0023) uses bare CREATE/ALTER without IF NOT EXISTS
- File:
src/lib/db/migrations/0000_narrow_longshot.sql - What: No
IF NOT EXISTSguards on CREATE TABLE/INDEX. Migration 0036 also bareALTER TABLE ... ADD CONSTRAINT. Later migrations (0042, 0050, 0051, 0052, 0057, 0062, 0065) use IF NOT EXISTS / DO blocks correctly. - Why it matters: Drizzle tracker prevents double-runs in normal flow, but disaster-recovery partial replay would fail.
- Suggested fix: Document that 0000-0036 are not re-runnable without dropping schema first; standardize on IF NOT EXISTS / DO block pattern for all new migrations.
🟡 MEDIUM SC-03: companies table missing soft-delete partial index for archivedAt
- File:
src/lib/db/schema/companies.ts:39-45 - What: Other entities (clients, interests, yachts, berths, residentialClients, residentialInterests) have
idx_*_archived ... WHERE archived_at IS NULLpartial indexes (migration 0046). Companies missing. - Suggested fix:
CREATE INDEX IF NOT EXISTS idx_companies_archived ON companies (port_id) WHERE archived_at IS NULL;
🟡 MEDIUM SC-04: FTS GIN indexes missing for interests and berths
- File:
src/lib/db/migrations/0057_search_fts_indexes.sql - What: Migration 0057 creates GIN indexes for clients/yachts/residentialClients but explicitly notes companies uses ILIKE. Interests and berths also lack GIN indexes.
- Suggested fix:
CREATE INDEX CONCURRENTLY IF NOT EXISTS idx_interests_fulltext ON interests USING gin (...)and similar for berths.
🟡 MEDIUM SC-08: audit_logs.searchText declared as plain column in Drizzle but is GENERATED ALWAYS in DB
- File:
src/lib/db/schema/system.ts:53-54 - What: Drizzle
tsvector('search_text')without generated annotation. If any service auto-includes this column in an UPDATE, it errors on the generated column.audit_logsis insert-only so likely not hit in practice, but schema-DB mismatch. - Suggested fix: Annotate as non-updateable or add a generated-column marker.
🟡 MEDIUM SC-09: documents.clientId Drizzle nullable but DB is ON DELETE NO ACTION
- File:
src/lib/db/schema/documents.ts:72, migration0000_narrow_longshot.sql:814 - What: Drizzle says nullable (intent: SET NULL on parent delete); DB constraint is NO ACTION (blocks delete). Migration 0042 fixed
documents.interestId/yachtId/companyIdbut missedclientId. - Why it matters: Client hard-delete fails unless service explicitly nulls
documents.clientIdfirst. - Suggested fix: Migration to mirror what 0059 did for
files.client_id— drop and re-add FK withON DELETE SET NULL.
✅ Passing checks
- MT-01 clean: clients/interests/invoices/documents/files/tags/companies/berth-reservations GET/PATCH/DELETE all use
and(id, portId)SQL filter; notes-serviceverifyParentBelongsToPortcorrect - MT-04 document-folders.service.ts clean (
listTree,createFolder,renameFolder,moveFolder,deleteFolderSoftRescueall applyeq(documentFolders.portId, portId)) - MT-05 audit.service.ts
listAuditLogsfilters by portId first - MT-07 settings.service.ts clean (port-specific then global fallback by design)
- MT-08 tags.service.ts clean
- MT-09 custom-fields read/create/delete clean (only update missed; covered above)
- MT-11 seed.ts idempotent (
SELECT count(*) FROM companies WHERE port_id = $1early-exit) - SC-02 interestBerths.berthId/interestId, files.clientId/yachtId/companyId, documents.interestId/yachtId/companyId/reservationId all have explicit onDelete
- SC-05 doc folder sibling-name unique, entity-folder partial unique, isPrimary partial unique all present
- SC-06 idx_brochures_default partial unique present
- SC-07 chk_system_folder_shape present (tightened by migration 0052)
- SC-12 Migration 0062 normalizes legacy stages, 0066 normalizes statusOverrideMode='auto' → NULL
- SC-13 Currency code stored as text + app-level validation (consistent)
- SC-14 Address components stored as ISO 3166-2/alpha-2 text columns (consistent)
- SC-15 Polymorphic owner reads use service helpers (eoi-context.ts, interests.service.ts, berth-reservations.service.ts); raw column reads only in JOIN conditions