Some checks failed
Release Workflow / checks (push) Has been cancelled
Release Workflow / e2e-tests (push) Has been cancelled
Release Workflow / determine-release-type (push) Has been cancelled
Release Workflow / build-images (push) Has been cancelled
Release Workflow / publish-release (push) Has been cancelled
* test(e2e): admin user registration * ci: e2e workflow * feat: disable rate limiting env var * test(e2e): fix order of execution in registration tests * ci: run e2e tests before release
61 lines
1.8 KiB
TypeScript
61 lines
1.8 KiB
TypeScript
import { readFileSync } from "node:fs";
|
|
import os from "node:os";
|
|
import { type } from "arktype";
|
|
import "dotenv/config";
|
|
|
|
const getResticHostname = () => {
|
|
try {
|
|
const mountinfo = readFileSync("/proc/self/mountinfo", "utf-8");
|
|
const hostnameLine = mountinfo.split("\n").find((line) => line.includes(" /etc/hostname "));
|
|
const hostname = os.hostname();
|
|
|
|
if (hostnameLine) {
|
|
const containerIdMatch = hostnameLine.match(/[0-9a-f]{64}/);
|
|
const containerId = containerIdMatch ? containerIdMatch[0] : null;
|
|
|
|
if (containerId?.startsWith(hostname)) {
|
|
return "zerobyte";
|
|
}
|
|
|
|
return hostname || "zerobyte";
|
|
}
|
|
} catch {}
|
|
|
|
return "zerobyte";
|
|
};
|
|
|
|
const envSchema = type({
|
|
NODE_ENV: type.enumerated("development", "production", "test").default("production"),
|
|
SERVER_IP: 'string = "localhost"',
|
|
SERVER_IDLE_TIMEOUT: 'string.integer.parse = "60"',
|
|
RESTIC_HOSTNAME: "string?",
|
|
PORT: 'string.integer.parse = "4096"',
|
|
MIGRATIONS_PATH: "string?",
|
|
APP_VERSION: "string = 'dev'",
|
|
TRUSTED_ORIGINS: "string?",
|
|
DISABLE_RATE_LIMITING: 'string = "false"',
|
|
}).pipe((s) => ({
|
|
__prod__: s.NODE_ENV === "production",
|
|
environment: s.NODE_ENV,
|
|
serverIp: s.SERVER_IP,
|
|
serverIdleTimeout: s.SERVER_IDLE_TIMEOUT,
|
|
resticHostname: s.RESTIC_HOSTNAME || getResticHostname(),
|
|
port: s.PORT,
|
|
migrationsPath: s.MIGRATIONS_PATH,
|
|
appVersion: s.APP_VERSION,
|
|
trustedOrigins: s.TRUSTED_ORIGINS?.split(",").map((origin) => origin.trim()),
|
|
disableRateLimiting: s.DISABLE_RATE_LIMITING === "true",
|
|
}));
|
|
|
|
const parseConfig = (env: unknown) => {
|
|
const result = envSchema(env);
|
|
|
|
if (result instanceof type.errors) {
|
|
console.error(`Environment variable validation failed: ${result.toString()}`);
|
|
throw new Error("Invalid environment variables");
|
|
}
|
|
|
|
return result;
|
|
};
|
|
|
|
export const config = parseConfig(process.env);
|