2018-04-02 13:15:53 +09:00
|
|
|
/**
|
|
|
|
* Config loader
|
|
|
|
*/
|
|
|
|
|
2023-01-12 20:40:33 -08: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";
|
2021-08-19 18:33:41 +09:00
|
|
|
|
2022-02-27 11:07:39 +09:00
|
|
|
const _filename = fileURLToPath(import.meta.url);
|
2021-08-19 18:33:41 +09:00
|
|
|
const _dirname = dirname(_filename);
|
2018-04-02 13:15:53 +09:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Path of configuration directory
|
|
|
|
*/
|
2021-11-12 02:02:25 +09:00
|
|
|
const dir = `${_dirname}/../../../../.config`;
|
2018-04-02 13:15:53 +09:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Path of configuration file
|
|
|
|
*/
|
2023-01-12 20:40:33 -08:00
|
|
|
const path =
|
|
|
|
process.env.NODE_ENV === "test" ? `${dir}/test.yml` : `${dir}/default.yml`;
|
2018-04-02 13:15:53 +09:00
|
|
|
|
|
|
|
export default function load() {
|
2023-01-12 20:40:33 -08: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 = yaml.load(fs.readFileSync(path, "utf-8")) as Source;
|
2018-04-02 13:15:53 +09:00
|
|
|
|
2019-02-07 21:02:33 +09:00
|
|
|
const mixin = {} as Mixin;
|
2018-04-02 13:15:53 +09:00
|
|
|
|
2019-04-10 00:40:10 +09:00
|
|
|
const url = tryCreateUrl(config.url);
|
2019-02-06 22:44:55 +09:00
|
|
|
|
2019-04-10 00:40:10 +09:00
|
|
|
config.url = url.origin;
|
2019-02-07 21:02:33 +09:00
|
|
|
|
2023-08-01 21:23:32 +02:00
|
|
|
if (!config.accountDomain) config.accountDomain = url.hostname
|
|
|
|
|
2023-01-12 20:40:33 -08:00
|
|
|
config.port = config.port || parseInt(process.env.PORT || "", 10);
|
2019-04-05 18:21:08 +09:00
|
|
|
|
2019-11-01 22:34:26 +09:00
|
|
|
mixin.version = meta.version;
|
2019-04-10 00:40:10 +09:00
|
|
|
mixin.host = url.host;
|
|
|
|
mixin.hostname = url.hostname;
|
2023-01-12 20:40:33 -08:00
|
|
|
mixin.scheme = url.protocol.replace(/:$/, "");
|
|
|
|
mixin.wsScheme = mixin.scheme.replace("http", "ws");
|
2019-02-24 12:53:22 +09: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 15:18:30 -07:00
|
|
|
mixin.userAgent = `Firefish/${meta.version} (${config.url})`;
|
2023-01-12 20:40:33 -08:00
|
|
|
mixin.clientEntry = clientManifest["src/init.ts"];
|
2019-02-07 21:02:33 +09:00
|
|
|
|
2023-07-17 01:48:53 -04:00
|
|
|
if (!config.redis.prefix) config.redis.prefix = mixin.hostname;
|
2023-07-06 17:06:31 -04:00
|
|
|
if (config.cacheServer && !config.cacheServer.prefix)
|
2023-07-17 01:48:53 -04:00
|
|
|
config.cacheServer.prefix = mixin.hostname;
|
2019-12-15 03:34:11 +09:00
|
|
|
|
2019-02-07 21:02:33 +09:00
|
|
|
return Object.assign(config, mixin);
|
2018-04-02 13:15:53 +09:00
|
|
|
}
|
|
|
|
|
2019-02-06 13:37:20 +09:00
|
|
|
function tryCreateUrl(url: string) {
|
2019-02-04 00:09:24 +09:00
|
|
|
try {
|
|
|
|
return new URL(url);
|
|
|
|
} catch (e) {
|
2022-08-04 11:00:02 +02:00
|
|
|
throw new Error(`url="${url}" is not a valid URL.`);
|
2019-02-04 00:09:24 +09:00
|
|
|
}
|
|
|
|
}
|