2018-04-01 23:15:53 -05:00
|
|
|
/**
|
|
|
|
* Config loader
|
|
|
|
*/
|
|
|
|
|
|
|
|
import * as fs from 'fs';
|
|
|
|
import * as yaml from 'js-yaml';
|
2019-02-07 06:02:33 -06:00
|
|
|
import { Source, Mixin } from './types';
|
2019-11-01 08:34:26 -05:00
|
|
|
import * as meta from '../meta.json';
|
2018-04-01 23:15:53 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Path of configuration directory
|
|
|
|
*/
|
|
|
|
const dir = `${__dirname}/../../.config`;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Path of configuration file
|
|
|
|
*/
|
2020-04-03 18:46:54 -05:00
|
|
|
const path = process.env.NODE_ENV === 'test'
|
2018-04-01 23:15:53 -05:00
|
|
|
? `${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-04-09 10:40:10 -05:00
|
|
|
const url = tryCreateUrl(config.url);
|
2019-02-06 07:44:55 -06:00
|
|
|
|
2019-04-09 10:40:10 -05:00
|
|
|
config.url = url.origin;
|
2019-02-07 06:02:33 -06:00
|
|
|
|
2019-04-12 11:43:22 -05:00
|
|
|
config.port = config.port || parseInt(process.env.PORT || '', 10);
|
2019-04-05 04:21:08 -05:00
|
|
|
|
2019-11-01 08:34:26 -05:00
|
|
|
mixin.version = meta.version;
|
2019-04-09 10:40:10 -05:00
|
|
|
mixin.host = url.host;
|
|
|
|
mixin.hostname = url.hostname;
|
2019-02-07 06:02:33 -06:00
|
|
|
mixin.scheme = url.protocol.replace(/:$/, '');
|
2019-02-23 21:53:22 -06: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`;
|
2019-11-01 08:34:26 -05:00
|
|
|
mixin.userAgent = `Misskey/${meta.version} (${config.url})`;
|
2019-02-07 06:02:33 -06:00
|
|
|
|
2019-12-14 12:34:11 -06:00
|
|
|
if (!config.redis.prefix) config.redis.prefix = mixin.host;
|
|
|
|
|
2019-02-07 06:02:33 -06:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|