Closes the second wave of HIGH-priority audit findings: * fetchWithTimeout helper (new src/lib/fetch-with-timeout.ts) wraps Documenso, OCR, currency, Umami, IMAP, etc. — a hung upstream can no longer pin a worker concurrency slot indefinitely. OpenAI client passes timeout: 30_000. ImapFlow gets socket / greeting / connection timeouts. * SIGTERM / SIGINT handler in src/server.ts drains in-flight HTTP, closes Socket.io, and disconnects Redis before exit; compose stop_grace_period bumped to 30s. Adds closeSocketServer() helper. * env.ts gains zod-validated PORT and MULTI_NODE_DEPLOYMENT, and filesystem.ts now reads from env (a typo can no longer silently disable the multi-node guard). * Per-port Documenso template + recipient IDs land in system_settings with env fallback (PortDocumensoConfig now exposes eoiTemplateId, clientRecipientId, developerRecipientId, approvalRecipientId). document-templates.ts uses the per-port config and threads portId into documensoGenerateFromTemplate(). * Migration 0042 wires the eleven HIGH-tier missing FK constraints (documents/files/interests/reminders/berth_waiting_list/ form_submissions) plus polymorphic CHECK round 2 (yacht_ownership_history.owner_type, document_sends.document_kind), invoices.billing_entity_id NOT EMPTY, and clients.merged_into self-FK. Drizzle schema columns updated to .references(...) where possible so the misleading "FK wired in relations.ts" comments are gone. Test status: 1168/1168 vitest, tsc clean. Refs: docs/audit-comprehensive-2026-05-05.md HIGH §§5,6,7,8,9,10 + MED §§14,15,16,18. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
105 lines
3.6 KiB
TypeScript
105 lines
3.6 KiB
TypeScript
import { z } from 'zod';
|
|
|
|
const envSchema = z.object({
|
|
// Database
|
|
DATABASE_URL: z.string().url().startsWith('postgresql://'),
|
|
|
|
// Redis
|
|
REDIS_URL: z.string().url().startsWith('redis://'),
|
|
|
|
// Auth
|
|
BETTER_AUTH_SECRET: z.string().min(32),
|
|
BETTER_AUTH_URL: z.string().url(),
|
|
CSRF_SECRET: z.string().min(32),
|
|
|
|
// MinIO
|
|
MINIO_ENDPOINT: z.string().min(1),
|
|
MINIO_PORT: z.coerce.number().int().positive(),
|
|
MINIO_ACCESS_KEY: z.string().min(1),
|
|
MINIO_SECRET_KEY: z.string().min(1),
|
|
MINIO_BUCKET: z.string().min(1),
|
|
MINIO_USE_SSL: z.enum(['true', 'false']).transform((v) => v === 'true'),
|
|
|
|
// Documenso
|
|
DOCUMENSO_API_URL: z.string().url(),
|
|
DOCUMENSO_API_KEY: z.string().min(1),
|
|
DOCUMENSO_API_VERSION: z.enum(['v1', 'v2']).default('v1'),
|
|
DOCUMENSO_WEBHOOK_SECRET: z.string().min(16),
|
|
DOCUMENSO_TEMPLATE_ID_EOI: z.coerce.number().int().positive().default(8),
|
|
DOCUMENSO_CLIENT_RECIPIENT_ID: z.coerce.number().int().positive().default(192),
|
|
DOCUMENSO_DEVELOPER_RECIPIENT_ID: z.coerce.number().int().positive().default(193),
|
|
DOCUMENSO_APPROVAL_RECIPIENT_ID: z.coerce.number().int().positive().default(194),
|
|
|
|
// Email
|
|
SMTP_HOST: z.string().min(1),
|
|
SMTP_PORT: z.coerce.number().int().positive(),
|
|
SMTP_USER: z.string().optional(),
|
|
SMTP_PASS: z.string().optional(),
|
|
SMTP_FROM: z.string().optional(),
|
|
// Dev/test safety net: when set, sendEmail redirects every outbound message
|
|
// to this address regardless of the requested recipient. Leave empty in prod.
|
|
EMAIL_REDIRECT_TO: z.string().email().optional(),
|
|
|
|
// Encryption
|
|
EMAIL_CREDENTIAL_KEY: z
|
|
.string()
|
|
.length(64)
|
|
.regex(/^[0-9a-f]+$/i, 'Must be a 64-character hex string'),
|
|
|
|
// Google OAuth (optional)
|
|
GOOGLE_CLIENT_ID: z.string().optional(),
|
|
GOOGLE_CLIENT_SECRET: z.string().optional(),
|
|
|
|
// Shared secret used by the marketing website's server-side dual-write
|
|
// helper (POST to /api/public/website-inquiries). Set the SAME value on
|
|
// the website's CRM_INTAKE_SECRET env. Leave unset in dev/staging until
|
|
// the website's CRM_INTAKE_URL is also set — without this, the public
|
|
// intake endpoint refuses every request.
|
|
WEBSITE_INTAKE_SECRET: z.string().min(16).optional(),
|
|
|
|
// OpenAI (optional)
|
|
OPENAI_API_KEY: z.string().optional(),
|
|
|
|
// App
|
|
APP_URL: z.string().url(),
|
|
PUBLIC_SITE_URL: z.string().url(),
|
|
NODE_ENV: z.enum(['development', 'production', 'test']).default('development'),
|
|
LOG_LEVEL: z.enum(['fatal', 'error', 'warn', 'info', 'debug', 'trace']).default('info'),
|
|
/**
|
|
* HTTP listener port. zod-coerced from PORT so a typo (`PORT=foo`) hard-
|
|
* fails at boot rather than silently listening on an ephemeral port.
|
|
*/
|
|
PORT: z.coerce.number().int().positive().default(3000),
|
|
/**
|
|
* When true, the filesystem storage backend refuses to start (per
|
|
* src/lib/storage/filesystem.ts:192). Reading via the zod schema means
|
|
* a typo on the env var hard-fails at boot rather than silently
|
|
* disabling the multi-node guard. Per CLAUDE.md, multi-node deploys
|
|
* MUST use the s3-compatible backend.
|
|
*/
|
|
MULTI_NODE_DEPLOYMENT: z
|
|
.enum(['true', 'false'])
|
|
.default('false')
|
|
.transform((v) => v === 'true'),
|
|
});
|
|
|
|
export type Env = z.infer<typeof envSchema>;
|
|
|
|
function validateEnv(): Env {
|
|
if (process.env.SKIP_ENV_VALIDATION === '1') {
|
|
return process.env as unknown as Env;
|
|
}
|
|
|
|
const result = envSchema.safeParse(process.env);
|
|
if (!result.success) {
|
|
console.error('Invalid environment variables:');
|
|
for (const issue of result.error.issues) {
|
|
console.error(` ${issue.path.join('.')}: ${issue.message}`);
|
|
}
|
|
process.exit(1);
|
|
}
|
|
return result.data;
|
|
}
|
|
|
|
export const env = validateEnv();
|