FoundKey/src/config/load.ts

56 lines
1.3 KiB
TypeScript
Raw Normal View History

2018-04-02 04:15:53 +00:00
/**
* Config loader
*/
import * as fs from 'fs';
import * as yaml from 'js-yaml';
import { Source, Mixin } from './types';
import * as meta from '../meta.json';
2018-04-02 04:15:53 +00:00
/**
* Path of configuration directory
*/
const dir = `${__dirname}/../../.config`;
/**
* Path of configuration file
*/
const path = process.env.NODE_ENV == 'test'
? `${dir}/test.yml`
: `${dir}/default.yml`;
export default function load() {
const config = yaml.safeLoad(fs.readFileSync(path, 'utf-8')) as Source;
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;
config.port = config.port || parseInt(process.env.PORT || '', 10);
mixin.version = meta.version;
2019-04-09 15:40:10 +00:00
mixin.host = url.host;
mixin.hostname = url.hostname;
mixin.scheme = url.protocol.replace(/:$/, '');
2019-02-24 03:53:22 +00:00
mixin.wsScheme = mixin.scheme.replace('http', 'ws');
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`;
mixin.userAgent = `Misskey/${meta.version} (${config.url})`;
if (config.autoAdmin == null) config.autoAdmin = false;
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) {
2019-02-06 04:37:20 +00:00
throw `url="${url}" is not a valid URL.`;
2019-02-03 15:09:24 +00:00
}
}