firefish/packages/backend/src/config/load.ts

90 lines
2.3 KiB
TypeScript
Raw Normal View History

2018-04-02 04:15:53 +00:00
/**
* Config loader
*/
2023-01-13 04:40:33 +00:00
import * as fs from "node:fs";
2023-11-26 20:33:46 +00:00
import { fileURLToPath } from "node:url";
import { dirname } from "node:path";
import type { Mixin } from "./types.js";
import { readServerConfig } from "backend-rs";
const _filename = fileURLToPath(import.meta.url);
const _dirname = dirname(_filename);
2018-04-02 04:15:53 +00:00
/**
* Path of configuration directory
*/
2021-11-11 17:02:25 +00:00
const dir = `${_dirname}/../../../../.config`;
2018-04-02 04:15:53 +00:00
/**
* Path of configuration file
*/
2023-01-13 04:40:33 +00:00
const path =
process.env.NODE_ENV === "test" ? `${dir}/test.yml` : `${dir}/default.yml`;
2018-04-02 04:15:53 +00:00
export default function load() {
2023-01-13 04:40:33 +00: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",
),
);
const config = readServerConfig();
2018-04-02 04:15:53 +00:00
const mixin = {} as Mixin;
2018-04-02 04:15:53 +00:00
2019-04-09 15:40:10 +00:00
const url = tryCreateUrl(config.url);
2019-04-09 15:40:10 +00:00
config.url = url.origin;
2023-01-13 04:40:33 +00:00
config.port = config.port || parseInt(process.env.PORT || "", 10);
2023-07-16 11:13:24 +00:00
config.bind = config.bind || process.env.BIND;
mixin.version = meta.version;
2019-04-09 15:40:10 +00:00
mixin.host = url.host;
mixin.hostname = url.hostname;
2023-01-13 04:40:33 +00:00
mixin.scheme = url.protocol.replace(/:$/, "");
mixin.wsScheme = mixin.scheme.replace("http", "ws");
2019-02-24 03:53:22 +00: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-07-02 22:18:30 +00:00
mixin.userAgent = `Firefish/${meta.version} (${config.url})`;
2023-01-13 04:40:33 +00:00
mixin.clientEntry = clientManifest["src/init.ts"];
if (config.proxyRemoteFiles == null) config.proxyRemoteFiles = true;
if (!config.redis.prefix) config.redis.prefix = mixin.hostname;
if (config.cacheServer && !config.cacheServer.prefix)
config.cacheServer.prefix = mixin.hostname;
if (!config.clusterLimits) {
config.clusterLimits = {
web: 1,
queue: 1,
};
} else {
config.clusterLimits = {
web: 1,
queue: 1,
...config.clusterLimits,
};
if (config.clusterLimits.web! < 1 || config.clusterLimits.queue! < 1) {
throw new Error("Invalid cluster limits");
}
}
return Object.assign(config, mixin);
2018-04-02 04:15:53 +00:00
}
2019-02-06 04:37:20 +00:00
function tryCreateUrl(url: string) {
2019-02-03 15:09:24 +00:00
try {
return new URL(url);
} catch (e) {
2022-08-04 09:00:02 +00:00
throw new Error(`url="${url}" is not a valid URL.`);
2019-02-03 15:09:24 +00:00
}
}