sipher/tests/docker/sipher-b.env.example
Nixyan 660c17b319 feat: add client-side identity system, rate limiting, proxy hardening, and full test suite
### Major changes

- **Client-side identity** — New session key store (`sessionKey.ts`) backed by
  `sessionStorage` with a module-level caching, a `crypto.subtle` cache, a `useIdentityLock`
  hook for decrypt-once signing, `followSignature.ts` for signed follows, and
  two new UI modals (`IdentityBackup.tsx`, `UnlockIdentityModal.tsx`).
  `CreateIdentity.tsx` is rewritten to generate BIP-39 mnemonics and encrypt the
  Ed25519 keypair with AES-256-GCM via PBKDF2 (600k iterations) before storing
  in IndexedDB.

- **Rate limiting** — New `rate-limit-config.ts` and `rate-limit.ts` provide a
  per-IP sliding-window rate limiter backed by Redis. All external-facing routes
  (`/discover`, `/discover/rotate/*`, `/proxy`, social API endpoints) now have
  conservative defaults wired into the custom HTTP server before requests reach
  Next.js handlers.

- **Proxy route hardening** — The `/proxy` route now enforces a 256 KB payload
  limit (HTTP 413), validates JSON before parsing, applies a per-origin rate
  limit (100 req/min), and imports the `blocks` table to reject requests from
  blocked servers.

- **Docker integration-test cluster** — New `Dockerfile`, `.dockerignore`, and
  `tests/docker-compose.yml` orchestrate three SiPher instances (A, B, C) plus
  shared PostgreSQL and Redis. Key generation (`generate-keys.ts`) and discovery
  setup (`setup-discovery.ts`) scripts automate cluster bootstrap. Three example
  env files document required per-instance configuration.

- **Full test suite overhaul** — Replaces the old attack/auth/discover/key/proxy
  tests with a structured suite:
  * `tests/federation/` — Keytools unit tests + key-rotation e2e test
  * `tests/proxy/` — Proxy relay e2e tests (single-server validation)
  * `tests/integration/` — Multi-instance integration tests for discover,
    proxy-chain relay, and federated post delivery via BullMQ
  * `tests/helpers/` — Reusable DB, identity, and auth-user utilities
  * Playwright config updated to match new file conventions
  * Unused helpers (`tests/helpers/queue.ts`) removed

- **Social plugin endpoints** — Rewritten `follows.ts`, `blocks.ts`, `mutes.ts`,
  and `posts.ts` with proper federation integration. `social.ts` gains helpers
  for looking up posts by federation URL.

### Minor changes

- **README** — Expanded from a 42-line stub to a full architecture guide with
  tables for every layer (auth, DB, queues, storage, real-time), API route
  documentation, setup instructions, environment variables, test coverage, and
  the updated roadmap.

- **Federation helpers** — `keytools.ts` refactors imports and cleans up the public surface.
  `fetch.ts`, `registry.ts`, and `proxy-helpers/federated-post.ts` pick up small
  improvements. `PostFederationSchema` simplifies its encryption type assertion.

- **Plugin infrastructure** — Oven plugin schema and server index gain minor
  refactors. Social client adds a `muteUser` method.

- **UI components** — `switch.tsx` and `tooltip.tsx` rewritten for Radix v2 /
  Tailwind 4; `accordion.tsx`, `dropdown-menu.tsx`, `form`, `button`, `card` get
  minor consistency fixes. `dialog.tsx` removes unused `DialogHeader`.

- **Server bootstrap** — `server.ts` imports DB schema before `instrumentation`
  for correct Drizzle initialization, rate-limiting routes are wired, and CORS
  allows federation origins. `auth.ts` regenerates Oven and social plugin schemas.

- **Dependencies** — Added `@noble/ciphers` and `@noble/hashes` (crypto
  primitives). Removed `@signalapp/libsignal-client`, `base58-js`, `nanostores`,
  `tweetnacl-util`, `dexie-react-hooks`, `socket.io-client`. Updated all Better
  Auth packages to 1.6.11, BullMQ to 5.76.10, and various dev deps across the
  board.

- **.gitignore** — Added `/audits` and `tests/docker/*.env` to prevent secret
  leakage.

- **DB schema** — `blocks` table imported in `src/lib/db/schema/index.ts`.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-18 09:48:42 -03:00

60 lines
2.4 KiB
Text

# ── Server B (port 3001) ─────────────────────────────────────────────────────
# Copy this file to tests/docker/sipher-b.env, then run:
# bun run docker:generate-keys
# That will write unique federation keypairs into each tests/docker/sipher-*.env file.
NODE_ENV=development
PORT=3001
# Signals to auth.ts that this is the federation test cluster — disables the
# real EmailService construction without affecting Next.js dev/prod heuristics
# (Next.js statically rewrites process.env.NODE_ENV, which would otherwise
# defeat any NODE_ENV-based check at runtime).
SIPHER_TEST_MODE=true
# Public base URL as seen by OTHER federation peers inside the Docker network.
# Integration test scripts also run inside Docker on the same network, so this
# is always the right value; no host.docker.internal tricks needed.
BETTER_AUTH_URL=http://sipher-b:3001
# Must be unique per instance and kept secret in production.
BETTER_AUTH_SECRET=CHANGE_ME_SECRET_B
# Each instance gets its own Postgres database.
DATABASE_URL=postgresql://sipher:sipher_test@postgres:5432/sipher_b
# Each instance gets its own Redis logical DB so BullMQ queues don't cross-contaminate.
REDIS_URL=redis://redis:6379/1
# Allow federation fetches to other sipher-* service names (Docker internal DNS).
# The url-guard checks these by hostname before doing IP resolution, so this
# safely bypasses the private-IP block for intra-cluster traffic only.
DEV_ALLOWED_HOSTNAMES=sipher-a,sipher-b,sipher-c
# Needed because Docker container IPs are in the 172.x private range.
FEDERATION_ALLOW_PRIVATE_URLS=true
DEBUG=app:*,test:*
# ── Email (not required for federation tests — leave empty to disable) ────────
EMAIL_HOST=
EMAIL_PORT=
EMAIL_SECURE=
EMAIL_USER=
EMAIL_PASSWORD=
# ── MinIO (not exercised by the federation tests, but minio.client.ts throws
# at import time if any of these are unset, so dummy values keep auth loadable)
MINIO_BUCKET=sipher-test
MINIO_ENDPOINT=minio.local
MINIO_PORT=9000
MINIO_USE_SSL=false
MINIO_ACCESS_KEY=test-access-key
MINIO_SECRET_KEY=test-secret-key
# ── Federation keys — filled in by: bun run docker:generate-keys ─────────────
FEDERATION_PUBLIC_KEY=
FEDERATION_PRIVATE_KEY=
FEDERATION_ENCRYPTION_PUBLIC_KEY=
FEDERATION_ENCRYPTION_PRIVATE_KEY=