2018-04-01 23:15:53 -05:00
|
|
|
/**
|
|
|
|
* Config loader
|
|
|
|
*/
|
|
|
|
|
|
|
|
import * as fs from 'fs';
|
|
|
|
import { URL } from 'url';
|
|
|
|
import * as yaml from 'js-yaml';
|
2019-02-07 06:02:33 -06:00
|
|
|
import { Source, Mixin } from './types';
|
2019-01-30 10:08:43 -06:00
|
|
|
import * as pkg from '../../package.json';
|
2018-04-01 23:15:53 -05: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() {
|
2019-02-07 06:02:33 -06:00
|
|
|
const config = yaml.safeLoad(fs.readFileSync(path, 'utf-8')) as Source;
|
2018-04-01 23:15:53 -05:00
|
|
|
|
2019-02-07 06:02:33 -06:00
|
|
|
const mixin = {} as Mixin;
|
2018-04-01 23:15:53 -05:00
|
|
|
|
2019-02-03 09:09:24 -06:00
|
|
|
const url = validateUrl(config.url);
|
2019-02-06 07:44:55 -06:00
|
|
|
|
2019-02-07 06:02:33 -06: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`;
|
|
|
|
mixin.user_agent = `Misskey/${pkg.version} (${config.url})`;
|
|
|
|
|
|
|
|
if (config.autoAdmin == null) config.autoAdmin = false;
|
|
|
|
|
|
|
|
return Object.assign(config, mixin);
|
2018-04-01 23:15:53 -05:00
|
|
|
}
|
|
|
|
|
2019-02-05 22:37:20 -06:00
|
|
|
function tryCreateUrl(url: string) {
|
2019-02-03 09:09:24 -06:00
|
|
|
try {
|
|
|
|
return new URL(url);
|
|
|
|
} catch (e) {
|
2019-02-05 22:37:20 -06:00
|
|
|
throw `url="${url}" is not a valid URL.`;
|
2019-02-03 09:09:24 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-05 22:37:20 -06: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-01 23:15:53 -05:00
|
|
|
function normalizeUrl(url: string) {
|
2018-08-25 23:55:39 -05:00
|
|
|
return url.endsWith('/') ? url.substr(0, url.length - 1) : url;
|
2018-04-01 23:15:53 -05:00
|
|
|
}
|