All checks were successful
CD / Build and push images (push) Successful in 1m46s
CI / Lint, typecheck, test (push) Successful in 1m17s
CI / Auth e2e pack (push) Successful in 1m39s
CI / Build container images (push) Has been skipped
CD / Deploy to Test (push) Successful in 8s
CD / Smoke tests against Test (push) Successful in 1m6s
CD / Promote to Int (push) Successful in 10s
- quota_overrides + pond_usage models (BigInt values, unique per
subject+key); migration 20260705185146_quotas
- instance-default quota keys in the settings registry (editors 5,
readers 50, additional ponds 0, storage 1 GiB, max file 25 MiB)
- QuotaService: getEffective with pond → user → instance resolution
(zero counts as a value, not a gap); assertCanCreateSharedPond and
checkAndConsume serialize via pg_advisory_xact_lock inside the guarded
write's transaction; release never drops below zero
- pond creation enforces additional_ponds (personal ponds don't count);
quota errors carry code quota_exceeded + {quotaKey, limit}, localized
- seed grants fixtures an additional_ponds override (default is 0)
- table-driven resolution tests, parallel-consumption test, e2e for the
pond-creation limit
Closes #22
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01UpQz6ypHJsLfMf4S6fyQEB
207 lines
6.3 KiB
Plaintext
207 lines
6.3 KiB
Plaintext
// Prisma schema — the single source of truth for the database structure.
|
|
// The entity documentation lives in docs/architecture/data-model.md; keep
|
|
// both in sync when the schema evolves.
|
|
|
|
generator client {
|
|
provider = "prisma-client-js"
|
|
}
|
|
|
|
datasource db {
|
|
provider = "postgresql"
|
|
url = env("DATABASE_URL")
|
|
}
|
|
|
|
/// Typed key-value configuration for the instance (registration mode,
|
|
/// default quotas, legal pages, …). Values are validated with Zod before
|
|
/// writing; see the InstanceSettings service (issue #19).
|
|
model InstanceSetting {
|
|
key String @id
|
|
value Json
|
|
updatedAt DateTime @updatedAt
|
|
|
|
@@map("instance_settings")
|
|
}
|
|
|
|
enum UserStatus {
|
|
PENDING_VERIFICATION
|
|
ACTIVE
|
|
DISABLED
|
|
}
|
|
|
|
/// Account profile. Login methods live in UserIdentity (OIDC-ready,
|
|
/// ADR 0007); Site Admin is a user flag, all other roles are grants.
|
|
model User {
|
|
id String @id @default(uuid())
|
|
username String @unique
|
|
email String @unique
|
|
displayName String @map("display_name")
|
|
locale String @default("en")
|
|
isSiteAdmin Boolean @default(false) @map("is_site_admin")
|
|
status UserStatus @default(PENDING_VERIFICATION)
|
|
emailVerifiedAt DateTime? @map("email_verified_at")
|
|
createdAt DateTime @default(now()) @map("created_at")
|
|
lastLoginAt DateTime? @map("last_login_at")
|
|
|
|
identities UserIdentity[]
|
|
sessions Session[]
|
|
authTokens AuthToken[]
|
|
ponds Pond[]
|
|
|
|
@@map("users")
|
|
}
|
|
|
|
enum PondType {
|
|
PERSONAL
|
|
SHARED
|
|
}
|
|
|
|
/// Top-level content container (data-model.md §ponds). Personal ponds are
|
|
/// created automatically on e-mail verification; `settings` stores only
|
|
/// deviations from the defaults (pondSettingsSchema in @dorfteich/shared).
|
|
/// `deletedAt`/`deletedBy` implement the pond-level trash (ADR 0013).
|
|
model Pond {
|
|
id String @id @default(uuid())
|
|
slug String @unique
|
|
name String
|
|
description String @default("")
|
|
type PondType
|
|
ownerId String @map("owner_id")
|
|
settings Json @default("{}")
|
|
createdAt DateTime @default(now()) @map("created_at")
|
|
updatedAt DateTime @updatedAt @map("updated_at")
|
|
deletedAt DateTime? @map("deleted_at")
|
|
deletedBy String? @map("deleted_by")
|
|
|
|
owner User @relation(fields: [ownerId], references: [id])
|
|
usage PondUsage?
|
|
|
|
@@index([ownerId])
|
|
@@map("ponds")
|
|
}
|
|
|
|
enum QuotaSubjectType {
|
|
USER
|
|
POND
|
|
}
|
|
|
|
/// Per-user/per-pond quota values (ADR 0011). Resolution: pond override →
|
|
/// user override → instance default (QuotaService). `value` is BigInt so
|
|
/// storage limits beyond 2 GiB fit.
|
|
model QuotaOverride {
|
|
id String @id @default(uuid())
|
|
subjectType QuotaSubjectType @map("subject_type")
|
|
subjectId String @map("subject_id")
|
|
quotaKey String @map("quota_key")
|
|
value BigInt
|
|
updatedAt DateTime @updatedAt @map("updated_at")
|
|
|
|
@@unique([subjectType, subjectId, quotaKey])
|
|
@@map("quota_overrides")
|
|
}
|
|
|
|
/// Cached usage counters per pond, updated transactionally with the
|
|
/// guarded writes (uploads land in M2 #27, membership in M5); reconciled
|
|
/// nightly by a maintenance job (operations.md).
|
|
model PondUsage {
|
|
pondId String @id @map("pond_id")
|
|
storageBytesUsed BigInt @default(0) @map("storage_bytes_used")
|
|
editorCount Int @default(0) @map("editor_count")
|
|
readerCount Int @default(0) @map("reader_count")
|
|
updatedAt DateTime @updatedAt @map("updated_at")
|
|
|
|
pond Pond @relation(fields: [pondId], references: [id], onDelete: Cascade)
|
|
|
|
@@map("pond_usage")
|
|
}
|
|
|
|
/// One row per login method. `provider` is "password" today and
|
|
/// "oidc:<issuer>" later; `credential` holds the Argon2id hash for
|
|
/// password identities.
|
|
model UserIdentity {
|
|
id String @id @default(uuid())
|
|
userId String @map("user_id")
|
|
provider String
|
|
subject String
|
|
credential String?
|
|
createdAt DateTime @default(now()) @map("created_at")
|
|
|
|
user User @relation(fields: [userId], references: [id], onDelete: Cascade)
|
|
|
|
@@unique([provider, subject])
|
|
@@index([userId])
|
|
@@map("user_identities")
|
|
}
|
|
|
|
/// Server-side browser sessions (ADR 0007). `id` is the SHA-256 hash of
|
|
/// the opaque cookie token — the raw token is never stored.
|
|
model Session {
|
|
id String @id
|
|
userId String @map("user_id")
|
|
createdAt DateTime @default(now()) @map("created_at")
|
|
expiresAt DateTime @map("expires_at")
|
|
lastSeenAt DateTime @default(now()) @map("last_seen_at")
|
|
userAgent String? @map("user_agent")
|
|
|
|
user User @relation(fields: [userId], references: [id], onDelete: Cascade)
|
|
|
|
@@index([userId])
|
|
@@index([expiresAt])
|
|
@@map("sessions")
|
|
}
|
|
|
|
enum AuthTokenPurpose {
|
|
EMAIL_VERIFICATION
|
|
PASSWORD_RESET
|
|
}
|
|
|
|
/// Single-use, expiring tokens for e-mail flows. Stored hashed; consuming
|
|
/// sets `consumedAt` so replays are detectable.
|
|
model AuthToken {
|
|
id String @id @default(uuid())
|
|
tokenHash String @unique @map("token_hash")
|
|
userId String @map("user_id")
|
|
purpose AuthTokenPurpose
|
|
expiresAt DateTime @map("expires_at")
|
|
consumedAt DateTime? @map("consumed_at")
|
|
createdAt DateTime @default(now()) @map("created_at")
|
|
|
|
user User @relation(fields: [userId], references: [id], onDelete: Cascade)
|
|
|
|
@@index([userId, purpose])
|
|
@@map("auth_tokens")
|
|
}
|
|
|
|
/// Fixed-window rate-limit counters (ADR 0002: no Redis). `key` encodes
|
|
/// scope and subject, e.g. "login:ip:203.0.113.7".
|
|
model RateLimit {
|
|
key String @id
|
|
windowStart DateTime @map("window_start")
|
|
count Int @default(0)
|
|
|
|
@@map("rate_limits")
|
|
}
|
|
|
|
enum MailStatus {
|
|
PENDING
|
|
SENT
|
|
FAILED
|
|
}
|
|
|
|
/// Outbox for reliable e-mail delivery with retry (issue #12).
|
|
model MailOutbox {
|
|
id String @id @default(uuid())
|
|
toAddress String @map("to_address")
|
|
subject String
|
|
textBody String @map("text_body")
|
|
htmlBody String @map("html_body")
|
|
status MailStatus @default(PENDING)
|
|
attempts Int @default(0)
|
|
nextAttemptAt DateTime @default(now()) @map("next_attempt_at")
|
|
lastError String? @map("last_error")
|
|
createdAt DateTime @default(now()) @map("created_at")
|
|
sentAt DateTime? @map("sent_at")
|
|
|
|
@@index([status, nextAttemptAt])
|
|
@@map("mail_outbox")
|
|
}
|