Revert 96bc17aa10
This commit is contained in:
parent
27768081e2
commit
5448c22031
19 changed files with 125 additions and 194 deletions
|
@ -4,10 +4,9 @@
|
|||
|
||||
import * as fs from 'fs';
|
||||
import { URL } from 'url';
|
||||
import $ from 'cafy';
|
||||
import * as yaml from 'js-yaml';
|
||||
import { Source, Mixin } from './types';
|
||||
import * as pkg from '../../package.json';
|
||||
import { fromNullable } from '../prelude/maybe';
|
||||
|
||||
/**
|
||||
* Path of configuration directory
|
||||
|
@ -22,148 +21,31 @@ const path = process.env.NODE_ENV == 'test'
|
|||
: `${dir}/default.yml`;
|
||||
|
||||
export default function load() {
|
||||
const config = yaml.safeLoad(fs.readFileSync(path, 'utf-8'));
|
||||
const config = yaml.safeLoad(fs.readFileSync(path, 'utf-8')) as Source;
|
||||
|
||||
if (typeof config.url !== 'string') {
|
||||
throw 'You need to configure the URL.';
|
||||
}
|
||||
const mixin = {} as Mixin;
|
||||
|
||||
const url = validateUrl(config.url);
|
||||
|
||||
if (typeof config.port !== 'number') {
|
||||
throw 'You need to configure the port.';
|
||||
}
|
||||
config.url = normalizeUrl(config.url);
|
||||
|
||||
if (config.https != null) {
|
||||
if (typeof config.https.key !== 'string') {
|
||||
throw 'You need to configure the https key.';
|
||||
}
|
||||
if (typeof config.https.cert !== 'string') {
|
||||
throw 'You need to configure the https cert.';
|
||||
}
|
||||
}
|
||||
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.mongodb == null) {
|
||||
throw 'You need to configure the MongoDB.';
|
||||
}
|
||||
if (config.autoAdmin == null) config.autoAdmin = false;
|
||||
|
||||
if (typeof config.mongodb.host !== 'string') {
|
||||
throw 'You need to configure the MongoDB host.';
|
||||
}
|
||||
|
||||
if (typeof config.mongodb.port !== 'number') {
|
||||
throw 'You need to configure the MongoDB port.';
|
||||
}
|
||||
|
||||
if (typeof config.mongodb.db !== 'string') {
|
||||
throw 'You need to configure the MongoDB database name.';
|
||||
}
|
||||
|
||||
if (config.drive == null) {
|
||||
throw 'You need to configure the drive.';
|
||||
}
|
||||
|
||||
if (typeof config.drive.storage !== 'string') {
|
||||
throw 'You need to configure the drive storage type.';
|
||||
}
|
||||
|
||||
if (!$.str.or(['db', 'minio']).ok(config.drive.storage)) {
|
||||
throw 'Unrecognized drive storage type is specified.';
|
||||
}
|
||||
|
||||
if (config.drive.storage === 'minio') {
|
||||
if (typeof config.drive.bucket !== 'string') {
|
||||
throw 'You need to configure the minio bucket.';
|
||||
}
|
||||
|
||||
if (typeof config.drive.prefix !== 'string') {
|
||||
throw 'You need to configure the minio prefix.';
|
||||
}
|
||||
|
||||
if (config.drive.prefix.config == null) {
|
||||
throw 'You need to configure the minio.';
|
||||
}
|
||||
}
|
||||
|
||||
if (config.redis != null) {
|
||||
if (typeof config.redis.host !== 'string') {
|
||||
throw 'You need to configure the Redis host.';
|
||||
}
|
||||
|
||||
if (typeof config.redis.port !== 'number') {
|
||||
throw 'You need to configure the Redis port.';
|
||||
}
|
||||
}
|
||||
|
||||
if (config.elasticsearch != null) {
|
||||
if (typeof config.elasticsearch.host !== 'string') {
|
||||
throw 'You need to configure the Elasticsearch host.';
|
||||
}
|
||||
|
||||
if (typeof config.elasticsearch.port !== 'number') {
|
||||
throw 'You need to configure the Elasticsearch port.';
|
||||
}
|
||||
}
|
||||
|
||||
const source = {
|
||||
url: normalizeUrl(config.url as string),
|
||||
port: config.port as number,
|
||||
https: fromNullable(config.https).map(x => ({
|
||||
key: x.key as string,
|
||||
cert: x.cert as string,
|
||||
ca: fromNullable<string>(x.ca)
|
||||
})),
|
||||
mongodb: {
|
||||
host: config.mongodb.host as string,
|
||||
port: config.mongodb.port as number,
|
||||
db: config.mongodb.db as string,
|
||||
user: fromNullable<string>(config.mongodb.user),
|
||||
pass: fromNullable<string>(config.mongodb.pass)
|
||||
},
|
||||
redis: fromNullable(config.redis).map(x => ({
|
||||
host: x.host as string,
|
||||
port: x.port as number,
|
||||
pass: fromNullable<string>(x.pass)
|
||||
})),
|
||||
elasticsearch: fromNullable(config.elasticsearch).map(x => ({
|
||||
host: x.host as string,
|
||||
port: x.port as number,
|
||||
pass: fromNullable<string>(x.pass)
|
||||
})),
|
||||
disableHsts: typeof config.disableHsts === 'boolean' ? config.disableHsts as boolean : false,
|
||||
drive: {
|
||||
storage: config.drive.storage as string,
|
||||
bucket: config.drive.bucket as string,
|
||||
prefix: config.drive.prefix as string,
|
||||
baseUrl: fromNullable<string>(config.drive.baseUrl),
|
||||
config: config.drive.config
|
||||
},
|
||||
autoAdmin: typeof config.autoAdmin === 'boolean' ? config.autoAdmin as boolean : false,
|
||||
proxy: fromNullable<string>(config.proxy),
|
||||
clusterLimit: typeof config.clusterLimit === 'number' ? config.clusterLimit as number : Infinity,
|
||||
};
|
||||
|
||||
const host = url.host;
|
||||
const scheme = url.protocol.replace(/:$/, '');
|
||||
const ws_scheme = scheme.replace('http', 'ws');
|
||||
|
||||
const mixin = {
|
||||
host: url.host,
|
||||
hostname: url.hostname,
|
||||
scheme: scheme,
|
||||
ws_scheme: ws_scheme,
|
||||
ws_url: `${ws_scheme}://${host}`,
|
||||
api_url: `${scheme}://${host}/api`,
|
||||
auth_url: `${scheme}://${host}/auth`,
|
||||
dev_url: `${scheme}://${host}/dev`,
|
||||
docs_url: `${scheme}://${host}/docs`,
|
||||
stats_url: `${scheme}://${host}/stats`,
|
||||
status_url: `${scheme}://${host}/status`,
|
||||
drive_url: `${scheme}://${host}/files`,
|
||||
user_agent: `Misskey/${pkg.version} (${config.url})`
|
||||
};
|
||||
|
||||
return Object.assign(source, mixin);
|
||||
return Object.assign(config, mixin);
|
||||
}
|
||||
|
||||
function tryCreateUrl(url: string) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue