FoundKey/src/config/load.ts

68 lines
1.9 KiB
TypeScript
Raw Normal View History

2018-04-02 04:15:53 +00:00
/**
* Config loader
*/
import * as fs from 'fs';
import { URL } from 'url';
import * as yaml from 'js-yaml';
import { Source, Mixin } from './types';
import * as pkg from '../../package.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;
const mixin = {} as Mixin;
2019-02-03 15:09:24 +00:00
const url = validateUrl(config.url);
2018-04-02 04:15:53 +00:00
config.url = normalizeUrl(config.url);
mixin.host = url.host;
mixin.hostname = url.hostname;
mixin.scheme = url.protocol.replace(/:$/, '');
mixin.ws_scheme = mixin.scheme.replace('http', 'ws');
mixin.ws_url = `${mixin.ws_scheme}://${mixin.host}`;
mixin.api_url = `${mixin.scheme}://${mixin.host}/api`;
mixin.auth_url = `${mixin.scheme}://${mixin.host}/auth`;
mixin.dev_url = `${mixin.scheme}://${mixin.host}/dev`;
mixin.docs_url = `${mixin.scheme}://${mixin.host}/docs`;
mixin.stats_url = `${mixin.scheme}://${mixin.host}/stats`;
mixin.status_url = `${mixin.scheme}://${mixin.host}/status`;
mixin.drive_url = `${mixin.scheme}://${mixin.host}/files`;
2018-09-04 08:44:21 +00:00
mixin.user_agent = `Misskey/${pkg.version} (${config.url})`;
2018-04-02 04:15:53 +00:00
2018-11-05 21:24:31 +00:00
if (config.autoAdmin == null) config.autoAdmin = false;
2018-04-02 04:15:53 +00:00
return Object.assign(config, mixin);
}
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
}
}
2019-02-06 04:37:20 +00:00
function validateUrl(url: string) {
const result = tryCreateUrl(url);
if (result.pathname.replace('/', '').length) throw `url="${url}" is not a valid URL, has a pathname.`;
if (!url.includes(result.host)) throw `url="${url}" is not a valid URL, has an invalid hostname.`;
return result;
}
2018-04-02 04:15:53 +00:00
function normalizeUrl(url: string) {
2018-08-26 04:55:39 +00:00
return url.endsWith('/') ? url.substr(0, url.length - 1) : url;
2018-04-02 04:15:53 +00:00
}