2018-04-01 22:15:53 -06:00
|
|
|
/**
|
|
|
|
* Config loader
|
|
|
|
*/
|
|
|
|
|
2023-01-12 21:40:33 -07:00
|
|
|
import * as fs from "node:fs";
|
|
|
|
import { fileURLToPath } from "node:url";
|
|
|
|
import { dirname } from "node:path";
|
|
|
|
import * as yaml from "js-yaml";
|
|
|
|
import type { Source, Mixin } from "./types.js";
|
2023-11-23 12:16:40 -07:00
|
|
|
import Path from "node:path";
|
2023-11-25 14:25:24 -07:00
|
|
|
import parseDuration from 'parse-duration'
|
2021-08-19 03:33:41 -06:00
|
|
|
|
2023-11-23 12:16:40 -07:00
|
|
|
export default function load() {
|
|
|
|
const _filename = fileURLToPath(import.meta.url);
|
|
|
|
const _dirname = dirname(_filename);
|
2018-04-01 22:15:53 -06:00
|
|
|
|
2023-11-23 12:16:40 -07:00
|
|
|
const dir = `${_dirname}/../../../..`;
|
|
|
|
const {
|
|
|
|
ICESHRIMP_CONFIG: configFile,
|
2023-11-24 19:03:47 -07:00
|
|
|
ICESHRIMP_SECRETS: secretsFile,
|
2023-11-23 12:16:40 -07:00
|
|
|
ICESHRIMP_MEDIA_DIR: mediaDir,
|
|
|
|
} = process.env;
|
2018-04-01 22:15:53 -06:00
|
|
|
|
2023-11-23 12:16:40 -07:00
|
|
|
const path =
|
|
|
|
process.env.NODE_ENV === "test"
|
|
|
|
? `${dir}/.config/test.yml`
|
|
|
|
: configFile ?? `${dir}/.config/default.yml`;
|
2018-04-01 22:15:53 -06:00
|
|
|
|
2023-01-12 21:40:33 -07:00
|
|
|
const meta = JSON.parse(
|
|
|
|
fs.readFileSync(`${_dirname}/../../../../built/meta.json`, "utf-8"),
|
|
|
|
);
|
|
|
|
const clientManifest = JSON.parse(
|
|
|
|
fs.readFileSync(
|
|
|
|
`${_dirname}/../../../../built/_client_dist_/manifest.json`,
|
|
|
|
"utf-8",
|
|
|
|
),
|
|
|
|
);
|
2023-11-24 19:03:47 -07:00
|
|
|
let config = yaml.load(fs.readFileSync(path, "utf-8")) as Source;
|
|
|
|
if (secretsFile !== undefined)
|
|
|
|
config = Object.assign(config, yaml.load(fs.readFileSync(secretsFile, "utf-8")) as Source);
|
2018-04-01 22:15:53 -06:00
|
|
|
|
2019-02-07 05:02:33 -07:00
|
|
|
const mixin = {} as Mixin;
|
2018-04-01 22:15:53 -06:00
|
|
|
|
2019-04-09 09:40:10 -06:00
|
|
|
const url = tryCreateUrl(config.url);
|
2019-02-06 06:44:55 -07:00
|
|
|
|
2019-04-09 09:40:10 -06:00
|
|
|
config.url = url.origin;
|
2019-02-07 05:02:33 -07:00
|
|
|
|
2023-01-12 21:40:33 -07:00
|
|
|
config.port = config.port || parseInt(process.env.PORT || "", 10);
|
2019-04-05 03:21:08 -06:00
|
|
|
|
2023-08-30 17:09:20 -06:00
|
|
|
config.images = {
|
|
|
|
info: '/twemoji/1f440.svg',
|
|
|
|
notFound: '/twemoji/2049.svg',
|
|
|
|
error: '/twemoji/1f480.svg',
|
2023-10-16 17:18:29 -06:00
|
|
|
...config.images,
|
2023-08-30 17:09:20 -06:00
|
|
|
};
|
|
|
|
|
2024-06-17 10:37:56 -06:00
|
|
|
config.pinLimit = config.pinLimit || parseInt(process.env.pinLimit || "", 100);
|
|
|
|
|
2023-11-25 14:25:24 -07:00
|
|
|
config.htmlCache = {
|
|
|
|
ttlSeconds: parseDuration(config.htmlCache?.ttl ?? '1h', 's')!,
|
|
|
|
prewarm: false,
|
|
|
|
dbFallback: false,
|
|
|
|
...config.htmlCache,
|
|
|
|
}
|
|
|
|
|
2023-11-27 09:56:03 -07:00
|
|
|
if (config.htmlCache.ttlSeconds == null) throw new Error('Failed to parse config.htmlCache.ttl');
|
|
|
|
|
|
|
|
config.wordMuteCache = {
|
|
|
|
ttlSeconds: parseDuration(config.wordMuteCache?.ttl ?? '24h', 's')!,
|
|
|
|
}
|
|
|
|
|
|
|
|
if (config.wordMuteCache.ttlSeconds == null) throw new Error('Failed to parse config.wordMuteCache.ttl');
|
2023-11-25 14:25:24 -07:00
|
|
|
|
2023-09-12 07:11:55 -06:00
|
|
|
config.searchEngine = config.searchEngine ?? 'https://duckduckgo.com/?q=';
|
2024-07-01 17:56:13 -06:00
|
|
|
config.enableMetrics = config.enableMetrics ?? false;
|
|
|
|
config.enableObliterate = config.enableObliterate ?? false;
|
2023-09-12 07:11:55 -06:00
|
|
|
|
2019-11-01 07:34:26 -06:00
|
|
|
mixin.version = meta.version;
|
2019-04-09 09:40:10 -06:00
|
|
|
mixin.host = url.host;
|
|
|
|
mixin.hostname = url.hostname;
|
2023-09-05 13:04:30 -06:00
|
|
|
mixin.domain = config.accountDomain ?? url.host;
|
2023-01-12 21:40:33 -07:00
|
|
|
mixin.scheme = url.protocol.replace(/:$/, "");
|
|
|
|
mixin.wsScheme = mixin.scheme.replace("http", "ws");
|
2019-02-23 20:53:22 -07:00
|
|
|
mixin.wsUrl = `${mixin.wsScheme}://${mixin.host}`;
|
|
|
|
mixin.apiUrl = `${mixin.scheme}://${mixin.host}/api`;
|
|
|
|
mixin.authUrl = `${mixin.scheme}://${mixin.host}/auth`;
|
|
|
|
mixin.driveUrl = `${mixin.scheme}://${mixin.host}/files`;
|
2023-08-21 08:14:53 -06:00
|
|
|
mixin.userAgent = `Iceshrimp/${meta.version} (${config.url})`;
|
2023-01-12 21:40:33 -07:00
|
|
|
mixin.clientEntry = clientManifest["src/init.ts"];
|
2023-11-23 12:16:40 -07:00
|
|
|
mixin.mediaDir = mediaDir ?? `${dir}/files`;
|
2019-02-07 05:02:33 -07:00
|
|
|
|
2023-07-16 23:48:53 -06:00
|
|
|
if (!config.redis.prefix) config.redis.prefix = mixin.hostname;
|
2019-12-14 11:34:11 -07:00
|
|
|
|
2019-02-07 05:02:33 -07:00
|
|
|
return Object.assign(config, mixin);
|
2018-04-01 22:15:53 -06:00
|
|
|
}
|
|
|
|
|
2019-02-05 21:37:20 -07:00
|
|
|
function tryCreateUrl(url: string) {
|
2019-02-03 08:09:24 -07:00
|
|
|
try {
|
|
|
|
return new URL(url);
|
|
|
|
} catch (e) {
|
2022-08-04 03:00:02 -06:00
|
|
|
throw new Error(`url="${url}" is not a valid URL.`);
|
2019-02-03 08:09:24 -07:00
|
|
|
}
|
|
|
|
}
|