2023-07-27 14:31:52 +09:00
|
|
|
/*
|
2024-02-14 00:59:27 +09:00
|
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
2023-07-27 14:31:52 +09:00
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2022-09-18 03:27:08 +09:00
|
|
|
import * as fs from 'node:fs';
|
|
|
|
import { fileURLToPath } from 'node:url';
|
2023-04-25 15:18:03 +09:00
|
|
|
import { dirname, resolve } from 'node:path';
|
2022-09-18 03:27:08 +09:00
|
|
|
import * as yaml from 'js-yaml';
|
2023-12-25 01:16:24 +09:00
|
|
|
import { globSync } from 'glob';
|
2024-05-28 17:06:33 +09:00
|
|
|
import * as Sentry from '@sentry/node';
|
2024-01-01 02:22:02 +09:00
|
|
|
import type { RedisOptions } from 'ioredis';
|
2023-07-20 19:50:31 +09:00
|
|
|
|
|
|
|
type RedisOptionsSource = Partial<RedisOptions> & {
|
2024-07-21 19:02:46 +09:00
|
|
|
host?: string;
|
|
|
|
port?: number;
|
2023-07-20 19:50:31 +09:00
|
|
|
family?: number;
|
2024-07-21 19:02:46 +09:00
|
|
|
path?: string,
|
2023-07-20 19:50:31 +09:00
|
|
|
pass: string;
|
|
|
|
db?: number;
|
|
|
|
prefix?: string;
|
|
|
|
};
|
2022-09-18 03:27:08 +09:00
|
|
|
|
|
|
|
/**
|
2023-09-05 15:03:50 +09:00
|
|
|
* 設定ファイルの型
|
2022-09-18 03:27:08 +09:00
|
|
|
*/
|
2023-09-05 15:03:50 +09:00
|
|
|
type Source = {
|
2024-07-14 21:33:22 +09:00
|
|
|
url?: string;
|
2023-07-17 14:12:02 +09:00
|
|
|
port?: number;
|
|
|
|
socket?: string;
|
|
|
|
chmodSocket?: string;
|
2022-09-18 03:27:08 +09:00
|
|
|
disableHsts?: boolean;
|
|
|
|
db: {
|
|
|
|
host: string;
|
|
|
|
port: number;
|
2024-07-14 21:33:22 +09:00
|
|
|
db?: string;
|
|
|
|
user?: string;
|
|
|
|
pass?: string;
|
2022-09-18 03:27:08 +09:00
|
|
|
disableCache?: boolean;
|
|
|
|
extra?: { [x: string]: string };
|
|
|
|
};
|
2023-04-08 15:53:36 +09:00
|
|
|
dbReplications?: boolean;
|
|
|
|
dbSlaves?: {
|
|
|
|
host: string;
|
|
|
|
port: number;
|
|
|
|
db: string;
|
|
|
|
user: string;
|
|
|
|
pass: string;
|
|
|
|
}[];
|
2023-07-20 19:50:31 +09:00
|
|
|
redis: RedisOptionsSource;
|
|
|
|
redisForPubsub?: RedisOptionsSource;
|
|
|
|
redisForJobQueue?: RedisOptionsSource;
|
2023-10-03 20:26:11 +09:00
|
|
|
redisForTimelines?: RedisOptionsSource;
|
2023-05-05 08:52:14 +09:00
|
|
|
meilisearch?: {
|
2022-09-18 03:27:08 +09:00
|
|
|
host: string;
|
2023-05-05 08:52:14 +09:00
|
|
|
port: string;
|
|
|
|
apiKey: string;
|
2023-05-06 04:02:34 +09:00
|
|
|
ssl?: boolean;
|
2023-05-11 21:09:29 +09:00
|
|
|
index: string;
|
2023-07-15 09:59:19 +09:00
|
|
|
scope?: 'local' | 'global' | string[];
|
2022-09-18 03:27:08 +09:00
|
|
|
};
|
2024-05-28 17:06:33 +09:00
|
|
|
sentryForBackend?: { options: Partial<Sentry.NodeOptions>; enableNodeProfiling: boolean; };
|
|
|
|
sentryForFrontend?: { options: Partial<Sentry.NodeOptions> };
|
2022-09-18 03:27:08 +09:00
|
|
|
|
2024-02-17 13:34:50 +09:00
|
|
|
publishTarballInsteadOfProvideRepositoryUrl?: boolean;
|
|
|
|
|
2022-09-18 03:27:08 +09:00
|
|
|
proxy?: string;
|
|
|
|
proxySmtp?: string;
|
|
|
|
proxyBypassHosts?: string[];
|
|
|
|
|
|
|
|
allowedPrivateNetworks?: string[];
|
|
|
|
|
|
|
|
maxFileSize?: number;
|
2024-01-01 02:22:02 +09:00
|
|
|
maxNoteLength?: number;
|
2022-09-18 03:27:08 +09:00
|
|
|
|
|
|
|
clusterLimit?: number;
|
|
|
|
|
|
|
|
id: string;
|
|
|
|
|
2023-08-20 13:20:01 +09:00
|
|
|
outgoingAddress?: string;
|
2022-09-18 03:27:08 +09:00
|
|
|
outgoingAddressFamily?: 'ipv4' | 'ipv6' | 'dual';
|
|
|
|
|
|
|
|
deliverJobConcurrency?: number;
|
|
|
|
inboxJobConcurrency?: number;
|
2024-01-28 15:08:45 +09:00
|
|
|
relationshipJobConcurrency?: number;
|
2022-09-18 03:27:08 +09:00
|
|
|
deliverJobPerSec?: number;
|
|
|
|
inboxJobPerSec?: number;
|
2024-01-28 15:08:45 +09:00
|
|
|
relationshipJobPerSec?: number;
|
2022-09-18 03:27:08 +09:00
|
|
|
deliverJobMaxAttempts?: number;
|
|
|
|
inboxJobMaxAttempts?: number;
|
|
|
|
|
|
|
|
mediaProxy?: string;
|
|
|
|
proxyRemoteFiles?: boolean;
|
2023-02-12 09:13:47 +09:00
|
|
|
videoThumbnailGenerator?: string;
|
2022-09-18 03:27:08 +09:00
|
|
|
|
2023-12-22 21:10:21 +09:00
|
|
|
customMOTD?: string[];
|
|
|
|
|
2022-09-18 03:27:08 +09:00
|
|
|
signToActivityPubGet?: boolean;
|
2023-12-20 21:17:59 +09:00
|
|
|
checkActivityPubGetSignature?: boolean;
|
2023-09-05 15:03:50 +09:00
|
|
|
|
|
|
|
perChannelMaxNoteCacheCount?: number;
|
|
|
|
perUserNotificationsMaxCount?: number;
|
2023-09-07 16:20:28 +09:00
|
|
|
deactivateAntennaThreshold?: number;
|
2024-06-04 01:29:19 +09:00
|
|
|
|
|
|
|
import?: {
|
|
|
|
downloadTimeout: number;
|
|
|
|
maxFileSize: number;
|
|
|
|
};
|
|
|
|
|
2023-09-27 09:32:36 +09:00
|
|
|
pidFile: string;
|
2022-09-18 03:27:08 +09:00
|
|
|
};
|
|
|
|
|
2023-09-05 15:03:50 +09:00
|
|
|
export type Config = {
|
|
|
|
url: string;
|
|
|
|
port: number;
|
|
|
|
socket: string | undefined;
|
|
|
|
chmodSocket: string | undefined;
|
|
|
|
disableHsts: boolean | undefined;
|
|
|
|
db: {
|
|
|
|
host: string;
|
|
|
|
port: number;
|
|
|
|
db: string;
|
|
|
|
user: string;
|
|
|
|
pass: string;
|
|
|
|
disableCache?: boolean;
|
|
|
|
extra?: { [x: string]: string };
|
|
|
|
};
|
|
|
|
dbReplications: boolean | undefined;
|
|
|
|
dbSlaves: {
|
|
|
|
host: string;
|
|
|
|
port: number;
|
|
|
|
db: string;
|
|
|
|
user: string;
|
|
|
|
pass: string;
|
|
|
|
}[] | undefined;
|
|
|
|
meilisearch: {
|
|
|
|
host: string;
|
|
|
|
port: string;
|
|
|
|
apiKey: string;
|
|
|
|
ssl?: boolean;
|
|
|
|
index: string;
|
|
|
|
scope?: 'local' | 'global' | string[];
|
|
|
|
} | undefined;
|
|
|
|
proxy: string | undefined;
|
|
|
|
proxySmtp: string | undefined;
|
|
|
|
proxyBypassHosts: string[] | undefined;
|
|
|
|
allowedPrivateNetworks: string[] | undefined;
|
|
|
|
maxFileSize: number | undefined;
|
2024-01-01 02:22:02 +09:00
|
|
|
maxNoteLength: number;
|
2023-09-05 15:03:50 +09:00
|
|
|
clusterLimit: number | undefined;
|
|
|
|
id: string;
|
|
|
|
outgoingAddress: string | undefined;
|
|
|
|
outgoingAddressFamily: 'ipv4' | 'ipv6' | 'dual' | undefined;
|
|
|
|
deliverJobConcurrency: number | undefined;
|
|
|
|
inboxJobConcurrency: number | undefined;
|
2024-01-28 15:08:45 +09:00
|
|
|
relationshipJobConcurrency: number | undefined;
|
2023-09-05 15:03:50 +09:00
|
|
|
deliverJobPerSec: number | undefined;
|
|
|
|
inboxJobPerSec: number | undefined;
|
2024-01-28 15:08:45 +09:00
|
|
|
relationshipJobPerSec: number | undefined;
|
2023-09-05 15:03:50 +09:00
|
|
|
deliverJobMaxAttempts: number | undefined;
|
|
|
|
inboxJobMaxAttempts: number | undefined;
|
|
|
|
proxyRemoteFiles: boolean | undefined;
|
2023-12-22 21:10:21 +09:00
|
|
|
customMOTD: string[] | undefined;
|
2024-01-13 20:47:55 +09:00
|
|
|
signToActivityPubGet: boolean;
|
2023-12-20 21:17:59 +09:00
|
|
|
checkActivityPubGetSignature: boolean | undefined;
|
2023-09-05 15:03:50 +09:00
|
|
|
|
2022-09-18 03:27:08 +09:00
|
|
|
version: string;
|
2024-02-17 13:34:50 +09:00
|
|
|
publishTarballInsteadOfProvideRepositoryUrl: boolean;
|
2022-09-18 03:27:08 +09:00
|
|
|
host: string;
|
|
|
|
hostname: string;
|
|
|
|
scheme: string;
|
|
|
|
wsScheme: string;
|
|
|
|
apiUrl: string;
|
|
|
|
wsUrl: string;
|
|
|
|
authUrl: string;
|
|
|
|
driveUrl: string;
|
|
|
|
userAgent: string;
|
|
|
|
clientEntry: string;
|
2022-12-20 13:05:36 +09:00
|
|
|
clientManifestExists: boolean;
|
2023-02-04 13:38:51 +09:00
|
|
|
mediaProxy: string;
|
|
|
|
externalMediaProxyEnabled: boolean;
|
2023-02-12 09:13:47 +09:00
|
|
|
videoThumbnailGenerator: string | null;
|
2023-07-20 19:50:31 +09:00
|
|
|
redis: RedisOptions & RedisOptionsSource;
|
|
|
|
redisForPubsub: RedisOptions & RedisOptionsSource;
|
|
|
|
redisForJobQueue: RedisOptions & RedisOptionsSource;
|
2023-10-03 20:26:11 +09:00
|
|
|
redisForTimelines: RedisOptions & RedisOptionsSource;
|
2024-05-28 17:06:33 +09:00
|
|
|
sentryForBackend: { options: Partial<Sentry.NodeOptions>; enableNodeProfiling: boolean; } | undefined;
|
|
|
|
sentryForFrontend: { options: Partial<Sentry.NodeOptions> } | undefined;
|
2023-09-05 15:03:50 +09:00
|
|
|
perChannelMaxNoteCacheCount: number;
|
|
|
|
perUserNotificationsMaxCount: number;
|
2023-09-07 16:20:28 +09:00
|
|
|
deactivateAntennaThreshold: number;
|
2024-06-04 01:29:19 +09:00
|
|
|
|
|
|
|
import: {
|
|
|
|
downloadTimeout: number;
|
|
|
|
maxFileSize: number;
|
|
|
|
} | undefined;
|
|
|
|
|
2023-09-27 09:32:36 +09:00
|
|
|
pidFile: string;
|
2022-09-18 03:27:08 +09:00
|
|
|
};
|
|
|
|
|
|
|
|
const _filename = fileURLToPath(import.meta.url);
|
|
|
|
const _dirname = dirname(_filename);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Path of configuration directory
|
|
|
|
*/
|
|
|
|
const dir = `${_dirname}/../../../.config`;
|
|
|
|
|
|
|
|
/**
|
2023-12-28 00:35:14 +09:00
|
|
|
* Path of configuration file
|
2022-09-18 03:27:08 +09:00
|
|
|
*/
|
2023-12-28 00:35:14 +09:00
|
|
|
const path = process.env.MISSKEY_CONFIG_YML
|
|
|
|
? resolve(dir, process.env.MISSKEY_CONFIG_YML)
|
|
|
|
: process.env.NODE_ENV === 'test'
|
|
|
|
? resolve(dir, 'test.yml')
|
|
|
|
: resolve(dir, 'default.yml');
|
2023-05-05 08:52:14 +09:00
|
|
|
|
2023-09-05 15:03:50 +09:00
|
|
|
export function loadConfig(): Config {
|
2022-09-18 03:27:08 +09:00
|
|
|
const meta = JSON.parse(fs.readFileSync(`${_dirname}/../../../built/meta.json`, 'utf-8'));
|
2023-12-25 01:16:24 +09:00
|
|
|
const clientManifestExists = fs.existsSync(`${_dirname}/../../../built/_vite_/manifest.json`);
|
2023-12-28 00:35:14 +09:00
|
|
|
const clientManifest = clientManifestExists ?
|
|
|
|
JSON.parse(fs.readFileSync(`${_dirname}/../../../built/_vite_/manifest.json`, 'utf-8'))
|
2023-05-15 19:08:46 +09:00
|
|
|
: { 'src/_boot_.ts': { file: 'src/_boot_.ts' } };
|
2023-12-25 01:16:24 +09:00
|
|
|
|
2024-08-04 00:42:59 +09:00
|
|
|
const configFiles = globSync(path).sort();
|
|
|
|
|
|
|
|
if (configFiles.length === 0
|
|
|
|
&& !process.env['MK_WARNED_ABOUT_CONFIG']) {
|
|
|
|
console.log('No config files loaded, check if this is intentional');
|
|
|
|
process.env['MK_WARNED_ABOUT_CONFIG'] = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
const config = configFiles.map(path => fs.readFileSync(path, 'utf-8'))
|
2023-12-25 01:16:24 +09:00
|
|
|
.map(contents => yaml.load(contents) as Source)
|
|
|
|
.reduce(
|
|
|
|
(acc: Source, cur: Source) => Object.assign(acc, cur),
|
|
|
|
{} as Source,
|
|
|
|
) as Source;
|
2022-09-18 03:27:08 +09:00
|
|
|
|
2024-03-21 00:38:20 +09:00
|
|
|
applyEnvOverrides(config);
|
|
|
|
|
2024-07-14 21:33:22 +09:00
|
|
|
const url = tryCreateUrl(config.url ?? process.env.MISSKEY_URL ?? '');
|
2023-09-05 15:03:50 +09:00
|
|
|
const version = meta.version;
|
|
|
|
const host = url.host;
|
|
|
|
const hostname = url.hostname;
|
|
|
|
const scheme = url.protocol.replace(/:$/, '');
|
|
|
|
const wsScheme = scheme.replace('http', 'ws');
|
2022-09-18 03:27:08 +09:00
|
|
|
|
2024-07-14 21:33:22 +09:00
|
|
|
const dbDb = config.db.db ?? process.env.DATABASE_DB ?? '';
|
|
|
|
const dbUser = config.db.user ?? process.env.DATABASE_USER ?? '';
|
|
|
|
const dbPass = config.db.pass ?? process.env.DATABASE_PASSWORD ?? '';
|
|
|
|
|
2023-02-04 13:38:51 +09:00
|
|
|
const externalMediaProxy = config.mediaProxy ?
|
|
|
|
config.mediaProxy.endsWith('/') ? config.mediaProxy.substring(0, config.mediaProxy.length - 1) : config.mediaProxy
|
|
|
|
: null;
|
2023-09-05 15:03:50 +09:00
|
|
|
const internalMediaProxy = `${scheme}://${host}/proxy`;
|
|
|
|
const redis = convertRedisOptions(config.redis, host);
|
2023-02-04 13:38:51 +09:00
|
|
|
|
2023-09-05 15:03:50 +09:00
|
|
|
return {
|
|
|
|
version,
|
2024-02-17 13:34:50 +09:00
|
|
|
publishTarballInsteadOfProvideRepositoryUrl: !!config.publishTarballInsteadOfProvideRepositoryUrl,
|
2023-09-05 15:03:50 +09:00
|
|
|
url: url.origin,
|
2024-08-03 22:21:44 +09:00
|
|
|
port: config.port ?? parseInt(process.env.PORT ?? '3000', 10),
|
2023-09-05 15:03:50 +09:00
|
|
|
socket: config.socket,
|
|
|
|
chmodSocket: config.chmodSocket,
|
|
|
|
disableHsts: config.disableHsts,
|
|
|
|
host,
|
|
|
|
hostname,
|
|
|
|
scheme,
|
|
|
|
wsScheme,
|
|
|
|
wsUrl: `${wsScheme}://${host}`,
|
|
|
|
apiUrl: `${scheme}://${host}/api`,
|
|
|
|
authUrl: `${scheme}://${host}/auth`,
|
|
|
|
driveUrl: `${scheme}://${host}/files`,
|
2024-07-14 21:33:22 +09:00
|
|
|
db: { ...config.db, db: dbDb, user: dbUser, pass: dbPass },
|
2023-09-05 15:03:50 +09:00
|
|
|
dbReplications: config.dbReplications,
|
|
|
|
dbSlaves: config.dbSlaves,
|
|
|
|
meilisearch: config.meilisearch,
|
|
|
|
redis,
|
|
|
|
redisForPubsub: config.redisForPubsub ? convertRedisOptions(config.redisForPubsub, host) : redis,
|
|
|
|
redisForJobQueue: config.redisForJobQueue ? convertRedisOptions(config.redisForJobQueue, host) : redis,
|
2023-10-03 20:26:11 +09:00
|
|
|
redisForTimelines: config.redisForTimelines ? convertRedisOptions(config.redisForTimelines, host) : redis,
|
2024-05-28 17:06:33 +09:00
|
|
|
sentryForBackend: config.sentryForBackend,
|
|
|
|
sentryForFrontend: config.sentryForFrontend,
|
2023-09-05 15:03:50 +09:00
|
|
|
id: config.id,
|
|
|
|
proxy: config.proxy,
|
|
|
|
proxySmtp: config.proxySmtp,
|
|
|
|
proxyBypassHosts: config.proxyBypassHosts,
|
|
|
|
allowedPrivateNetworks: config.allowedPrivateNetworks,
|
|
|
|
maxFileSize: config.maxFileSize,
|
2024-01-01 02:22:02 +09:00
|
|
|
maxNoteLength: config.maxNoteLength ?? 3000,
|
2023-09-05 15:03:50 +09:00
|
|
|
clusterLimit: config.clusterLimit,
|
|
|
|
outgoingAddress: config.outgoingAddress,
|
|
|
|
outgoingAddressFamily: config.outgoingAddressFamily,
|
|
|
|
deliverJobConcurrency: config.deliverJobConcurrency,
|
|
|
|
inboxJobConcurrency: config.inboxJobConcurrency,
|
2024-01-28 15:08:45 +09:00
|
|
|
relationshipJobConcurrency: config.relationshipJobConcurrency,
|
2023-09-05 15:03:50 +09:00
|
|
|
deliverJobPerSec: config.deliverJobPerSec,
|
|
|
|
inboxJobPerSec: config.inboxJobPerSec,
|
2024-01-28 15:08:45 +09:00
|
|
|
relationshipJobPerSec: config.relationshipJobPerSec,
|
2023-09-05 15:03:50 +09:00
|
|
|
deliverJobMaxAttempts: config.deliverJobMaxAttempts,
|
|
|
|
inboxJobMaxAttempts: config.inboxJobMaxAttempts,
|
|
|
|
proxyRemoteFiles: config.proxyRemoteFiles,
|
2023-12-22 21:10:21 +09:00
|
|
|
customMOTD: config.customMOTD,
|
2024-01-13 20:47:55 +09:00
|
|
|
signToActivityPubGet: config.signToActivityPubGet ?? true,
|
2023-12-20 21:17:59 +09:00
|
|
|
checkActivityPubGetSignature: config.checkActivityPubGetSignature,
|
2023-09-05 15:03:50 +09:00
|
|
|
mediaProxy: externalMediaProxy ?? internalMediaProxy,
|
|
|
|
externalMediaProxyEnabled: externalMediaProxy !== null && externalMediaProxy !== internalMediaProxy,
|
|
|
|
videoThumbnailGenerator: config.videoThumbnailGenerator ?
|
|
|
|
config.videoThumbnailGenerator.endsWith('/') ? config.videoThumbnailGenerator.substring(0, config.videoThumbnailGenerator.length - 1) : config.videoThumbnailGenerator
|
|
|
|
: null,
|
|
|
|
userAgent: `Misskey/${version} (${config.url})`,
|
|
|
|
clientEntry: clientManifest['src/_boot_.ts'],
|
|
|
|
clientManifestExists: clientManifestExists,
|
|
|
|
perChannelMaxNoteCacheCount: config.perChannelMaxNoteCacheCount ?? 1000,
|
2023-11-01 14:00:31 +09:00
|
|
|
perUserNotificationsMaxCount: config.perUserNotificationsMaxCount ?? 500,
|
2023-09-07 16:20:28 +09:00
|
|
|
deactivateAntennaThreshold: config.deactivateAntennaThreshold ?? (1000 * 60 * 60 * 24 * 7),
|
2024-06-04 01:29:19 +09:00
|
|
|
import: config.import,
|
2023-09-27 09:32:36 +09:00
|
|
|
pidFile: config.pidFile,
|
2023-09-05 15:03:50 +09:00
|
|
|
};
|
2022-09-18 03:27:08 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
function tryCreateUrl(url: string) {
|
|
|
|
try {
|
|
|
|
return new URL(url);
|
|
|
|
} catch (e) {
|
2023-05-29 11:54:49 +09:00
|
|
|
throw new Error(`url="${url}" is not a valid URL.`);
|
2022-09-18 03:27:08 +09:00
|
|
|
}
|
|
|
|
}
|
2023-07-20 19:50:31 +09:00
|
|
|
|
|
|
|
function convertRedisOptions(options: RedisOptionsSource, host: string): RedisOptions & RedisOptionsSource {
|
|
|
|
return {
|
|
|
|
...options,
|
2023-07-21 01:22:47 +09:00
|
|
|
password: options.pass,
|
2023-07-20 19:50:31 +09:00
|
|
|
prefix: options.prefix ?? host,
|
2023-07-31 19:14:20 +09:00
|
|
|
family: options.family ?? 0,
|
2023-07-20 19:50:31 +09:00
|
|
|
keyPrefix: `${options.prefix ?? host}:`,
|
|
|
|
db: options.db ?? 0,
|
|
|
|
};
|
|
|
|
}
|
2024-03-21 00:38:20 +09:00
|
|
|
|
|
|
|
/*
|
|
|
|
this function allows overriding any string-valued config option with
|
|
|
|
a sensible-named environment variable
|
|
|
|
|
2024-03-24 20:12:17 +09:00
|
|
|
e.g. `MK_CONFIG_MEILISEARCH_APIKEY` sets `config.meilisearch.apikey`
|
2024-03-21 00:38:20 +09:00
|
|
|
|
|
|
|
you can also override a single `dbSlave` value,
|
|
|
|
e.g. `MK_CONFIG_DBSLAVES_1_PASS` sets the password for the 2nd
|
|
|
|
database replica (the first one would be
|
2024-03-24 20:12:17 +09:00
|
|
|
`MK_CONFIG_DBSLAVES_0_PASS`); in this case, `config.dbSlaves` must
|
|
|
|
be set to an array of the right size already in the file
|
2024-03-21 00:38:20 +09:00
|
|
|
|
|
|
|
values can be read from files, too: setting `MK_DB_PASS_FILE` to
|
|
|
|
`/some/file` would set the main database password to the contents of
|
|
|
|
`/some/file` (trimmed of whitespaces)
|
|
|
|
*/
|
|
|
|
function applyEnvOverrides(config: Source) {
|
|
|
|
// these inner functions recurse through the config structure, using
|
|
|
|
// the given steps, building the env variable name
|
|
|
|
|
2024-05-18 23:56:21 +09:00
|
|
|
function _apply_top(steps: (string | string[] | number | number[])[]) {
|
2024-03-24 20:12:17 +09:00
|
|
|
_walk('', [], steps);
|
2024-03-21 00:38:20 +09:00
|
|
|
}
|
|
|
|
|
2024-05-18 23:56:21 +09:00
|
|
|
function _walk(name: string, path: (string | number)[], steps: (string | string[] | number | number[])[]) {
|
2024-03-21 00:38:20 +09:00
|
|
|
// are there more steps after this one? recurse
|
|
|
|
if (steps.length > 1) {
|
|
|
|
const thisStep = steps.shift();
|
|
|
|
if (thisStep === null || thisStep === undefined) return;
|
|
|
|
|
|
|
|
// if a step is not a simple value, iterate through it
|
|
|
|
if (typeof thisStep === 'object') {
|
|
|
|
for (const thisOneStep of thisStep) {
|
2024-03-24 20:12:17 +09:00
|
|
|
_descend(name, path, thisOneStep, steps);
|
2024-03-21 00:38:20 +09:00
|
|
|
}
|
|
|
|
} else {
|
2024-03-24 20:12:17 +09:00
|
|
|
_descend(name, path, thisStep, steps);
|
2024-03-21 00:38:20 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
// the actual override has happened at the bottom of the
|
|
|
|
// recursion, we're done
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// this is the last step, same thing as above
|
|
|
|
const lastStep = steps[0];
|
|
|
|
|
|
|
|
if (typeof lastStep === 'object') {
|
|
|
|
for (const lastOneStep of lastStep) {
|
2024-03-24 20:12:17 +09:00
|
|
|
_lastBit(name, path, lastOneStep);
|
2024-03-21 00:38:20 +09:00
|
|
|
}
|
|
|
|
} else {
|
2024-03-24 20:12:17 +09:00
|
|
|
_lastBit(name, path, lastStep);
|
2024-03-21 00:38:20 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-03-21 19:00:16 +09:00
|
|
|
function _step2name(step: string|number): string {
|
2024-05-31 21:00:59 +09:00
|
|
|
return step.toString().replaceAll(/[^a-z0-9]+/gi, '').toUpperCase();
|
2024-03-21 19:00:16 +09:00
|
|
|
}
|
|
|
|
|
2024-03-21 00:38:20 +09:00
|
|
|
// this recurses down, bailing out if there's no config to override
|
2024-05-18 23:56:21 +09:00
|
|
|
function _descend(name: string, path: (string | number)[], thisStep: string | number, steps: (string | string[] | number | number[])[]) {
|
2024-03-21 19:00:16 +09:00
|
|
|
name = `${name}${_step2name(thisStep)}_`;
|
2024-05-31 21:00:59 +09:00
|
|
|
path = [...path, thisStep];
|
2024-03-24 20:12:17 +09:00
|
|
|
_walk(name, path, steps);
|
2024-03-21 00:38:20 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
// this is the bottom of the recursion: look at the environment and
|
|
|
|
// set the value
|
2024-03-24 20:12:17 +09:00
|
|
|
function _lastBit(name: string, path: (string | number)[], lastStep: string | number) {
|
|
|
|
name = `MK_CONFIG_${name}${_step2name(lastStep)}`;
|
2024-03-21 00:38:20 +09:00
|
|
|
|
2024-03-24 20:12:17 +09:00
|
|
|
const val = process.env[name];
|
2024-05-31 21:00:59 +09:00
|
|
|
if (val !== null && val !== undefined) {
|
2024-03-24 20:12:17 +09:00
|
|
|
_assign(path, lastStep, val);
|
2024-03-21 00:38:20 +09:00
|
|
|
}
|
|
|
|
|
2024-03-24 20:12:17 +09:00
|
|
|
const file = process.env[`${name}_FILE`];
|
2024-03-21 00:38:20 +09:00
|
|
|
if (file) {
|
2024-03-24 20:12:17 +09:00
|
|
|
_assign(path, lastStep, fs.readFileSync(file, 'utf-8').trim());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-05-30 19:29:31 +09:00
|
|
|
const alwaysStrings = { 'chmodSocket': true } as { [key: string]: boolean };
|
2024-03-24 20:17:55 +09:00
|
|
|
|
2024-03-24 20:12:17 +09:00
|
|
|
function _assign(path: (string | number)[], lastStep: string | number, value: string) {
|
2024-05-18 23:56:21 +09:00
|
|
|
let thisConfig = config as any;
|
2024-03-24 20:12:17 +09:00
|
|
|
for (const step of path) {
|
|
|
|
if (!thisConfig[step]) {
|
|
|
|
thisConfig[step] = {};
|
|
|
|
}
|
|
|
|
thisConfig = thisConfig[step];
|
2024-03-21 00:38:20 +09:00
|
|
|
}
|
2024-03-24 20:12:17 +09:00
|
|
|
|
2024-03-24 20:17:55 +09:00
|
|
|
if (!alwaysStrings[lastStep]) {
|
|
|
|
if (value.match(/^[0-9]+$/)) {
|
2024-05-18 23:56:21 +09:00
|
|
|
thisConfig[lastStep] = parseInt(value);
|
|
|
|
return;
|
2024-03-24 20:17:55 +09:00
|
|
|
} else if (value.match(/^(true|false)$/i)) {
|
2024-05-18 23:56:21 +09:00
|
|
|
thisConfig[lastStep] = !!value.match(/^true$/i);
|
|
|
|
return;
|
2024-03-24 20:17:55 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-03-24 20:12:17 +09:00
|
|
|
thisConfig[lastStep] = value;
|
2024-03-21 00:38:20 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
// these are all the settings that can be overridden
|
|
|
|
|
2024-08-03 22:56:29 +09:00
|
|
|
_apply_top([['url', 'port', 'socket', 'chmodSocket', 'disableHsts', 'id', 'dbReplications']]);
|
2024-08-03 23:29:09 +09:00
|
|
|
_apply_top(['db', ['host', 'port', 'db', 'user', 'pass', 'disableCache']]);
|
2024-05-18 23:56:21 +09:00
|
|
|
_apply_top(['dbSlaves', Array.from((config.dbSlaves ?? []).keys()), ['host', 'port', 'db', 'user', 'pass']]);
|
2024-03-21 00:38:20 +09:00
|
|
|
_apply_top([
|
|
|
|
['redis', 'redisForPubsub', 'redisForJobQueue', 'redisForTimelines'],
|
2024-05-31 21:00:59 +09:00
|
|
|
['host', 'port', 'username', 'pass', 'db', 'prefix'],
|
2024-03-21 00:38:20 +09:00
|
|
|
]);
|
|
|
|
_apply_top(['meilisearch', ['host', 'port', 'apikey', 'ssl', 'index', 'scope']]);
|
2024-05-31 21:10:02 +09:00
|
|
|
_apply_top([['sentryForFrontend', 'sentryForBackend'], 'options', ['dsn', 'profileSampleRate', 'serverName', 'includeLocalVariables', 'proxy', 'keepAlive', 'caCerts']]);
|
|
|
|
_apply_top(['sentryForBackend', 'enableNodeProfiling']);
|
2024-03-21 00:38:20 +09:00
|
|
|
_apply_top([['clusterLimit', 'deliverJobConcurrency', 'inboxJobConcurrency', 'relashionshipJobConcurrency', 'deliverJobPerSec', 'inboxJobPerSec', 'relashionshipJobPerSec', 'deliverJobMaxAttempts', 'inboxJobMaxAttempts']]);
|
2024-08-03 22:56:29 +09:00
|
|
|
_apply_top([['outgoingAddress', 'outgoingAddressFamily', 'proxy', 'proxySmtp', 'mediaProxy', 'proxyRemoteFiles','videoThumbnailGenerator']]);
|
2024-03-21 00:38:20 +09:00
|
|
|
_apply_top([['maxFileSize', 'maxNoteLength', 'pidFile']]);
|
2024-06-04 01:29:19 +09:00
|
|
|
_apply_top(['import', ['downloadTimeout', 'maxFileSize']]);
|
2024-08-03 22:56:29 +09:00
|
|
|
_apply_top([['signToActivityPubGet', 'checkActivityPubGetSignature']]);
|
2024-03-21 00:38:20 +09:00
|
|
|
}
|