2016-12-29 07:49:51 +09:00
|
|
|
/**
|
|
|
|
* Config loader
|
|
|
|
*/
|
|
|
|
|
|
|
|
import * as fs from 'fs';
|
|
|
|
import * as yaml from 'js-yaml';
|
2017-01-18 16:34:21 +09:00
|
|
|
import isUrl = require('is-url');
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2017-01-17 08:37:24 +09:00
|
|
|
/**
|
|
|
|
* Path of configuration directory
|
|
|
|
*/
|
|
|
|
const dir = `${__dirname}/../.config`;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Path of configuration file
|
|
|
|
*/
|
|
|
|
export const path = (global as any).MISSKEY_CONFIG_PATH
|
|
|
|
? (global as any).MISSKEY_CONFIG_PATH
|
|
|
|
: process.env.NODE_ENV == 'test'
|
|
|
|
? `${dir}/test.yml`
|
|
|
|
: `${dir}/default.yml`;
|
2017-01-17 08:19:34 +09:00
|
|
|
|
2016-12-29 07:49:51 +09:00
|
|
|
/**
|
|
|
|
* ユーザーが設定する必要のある情報
|
|
|
|
*/
|
2017-02-08 23:52:14 +09:00
|
|
|
interface Source {
|
2016-12-29 07:49:51 +09:00
|
|
|
maintainer: string;
|
|
|
|
url: string;
|
|
|
|
secondary_url: string;
|
|
|
|
port: number;
|
|
|
|
https: {
|
|
|
|
enable: boolean;
|
|
|
|
key: string;
|
|
|
|
cert: string;
|
|
|
|
ca: string;
|
|
|
|
};
|
|
|
|
mongodb: {
|
|
|
|
host: string;
|
|
|
|
port: number;
|
|
|
|
db: string;
|
2017-01-17 08:57:31 +09:00
|
|
|
user: string;
|
2016-12-29 07:49:51 +09:00
|
|
|
pass: string;
|
|
|
|
};
|
|
|
|
redis: {
|
|
|
|
host: string;
|
|
|
|
port: number;
|
|
|
|
pass: string;
|
|
|
|
};
|
|
|
|
elasticsearch: {
|
|
|
|
enable: boolean;
|
|
|
|
host: string;
|
|
|
|
port: number;
|
|
|
|
pass: string;
|
|
|
|
};
|
|
|
|
recaptcha: {
|
|
|
|
siteKey: string;
|
|
|
|
secretKey: string;
|
|
|
|
};
|
2017-02-01 00:12:49 +09:00
|
|
|
accesslog?: string;
|
|
|
|
twitter?: {
|
2017-01-20 11:09:54 +09:00
|
|
|
consumer_key: string;
|
|
|
|
consumer_secret: string;
|
|
|
|
};
|
2017-02-01 00:12:49 +09:00
|
|
|
github_bot?: {
|
|
|
|
hook_secret: string;
|
2017-02-01 00:43:06 +09:00
|
|
|
username: string;
|
2017-02-01 00:12:49 +09:00
|
|
|
};
|
2016-12-29 07:49:51 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Misskeyが自動的に(ユーザーが設定した情報から推論して)設定する情報
|
|
|
|
*/
|
|
|
|
interface Mixin {
|
|
|
|
themeColor: string;
|
|
|
|
themeColorForeground: string;
|
|
|
|
host: string;
|
|
|
|
scheme: string;
|
|
|
|
secondary_host: string;
|
|
|
|
secondary_scheme: string;
|
|
|
|
api_url: string;
|
|
|
|
auth_url: string;
|
2017-02-19 12:31:23 +09:00
|
|
|
about_url: string;
|
2016-12-29 07:49:51 +09:00
|
|
|
dev_url: string;
|
|
|
|
drive_url: string;
|
|
|
|
}
|
|
|
|
|
2017-02-19 12:31:23 +09:00
|
|
|
export type Config = Source & Mixin;
|
|
|
|
|
2017-01-17 08:19:34 +09:00
|
|
|
export default function load() {
|
2017-02-08 23:52:14 +09:00
|
|
|
const config = yaml.safeLoad(fs.readFileSync(path, 'utf-8')) as Source;
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2017-02-08 23:52:14 +09:00
|
|
|
const mixin = {} as Mixin;
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2017-01-07 22:12:36 +09:00
|
|
|
// Validate URLs
|
|
|
|
if (!isUrl(config.url)) urlError(config.url);
|
|
|
|
if (!isUrl(config.secondary_url)) urlError(config.secondary_url);
|
|
|
|
|
2016-12-29 07:49:51 +09:00
|
|
|
config.url = normalizeUrl(config.url);
|
|
|
|
config.secondary_url = normalizeUrl(config.secondary_url);
|
|
|
|
|
|
|
|
mixin.themeColor = '#f76d6c';
|
|
|
|
mixin.themeColorForeground = '#fff';
|
|
|
|
mixin.host = config.url.substr(config.url.indexOf('://') + 3);
|
|
|
|
mixin.scheme = config.url.substr(0, config.url.indexOf('://'));
|
|
|
|
mixin.secondary_host = config.secondary_url.substr(config.secondary_url.indexOf('://') + 3);
|
|
|
|
mixin.secondary_scheme = config.secondary_url.substr(0, config.secondary_url.indexOf('://'));
|
|
|
|
mixin.api_url = `${mixin.scheme}://api.${mixin.host}`;
|
|
|
|
mixin.auth_url = `${mixin.scheme}://auth.${mixin.host}`;
|
|
|
|
mixin.dev_url = `${mixin.scheme}://dev.${mixin.host}`;
|
2017-02-19 12:31:23 +09:00
|
|
|
mixin.about_url = `${mixin.scheme}://about.${mixin.host}`;
|
2016-12-29 07:49:51 +09:00
|
|
|
mixin.drive_url = `${mixin.secondary_scheme}://file.${mixin.secondary_host}`;
|
|
|
|
|
2017-01-17 08:06:39 +09:00
|
|
|
return Object.assign(config, mixin);
|
|
|
|
}
|
2016-12-29 07:49:51 +09:00
|
|
|
|
2017-01-17 08:06:39 +09:00
|
|
|
function normalizeUrl(url: string) {
|
2016-12-29 07:49:51 +09:00
|
|
|
return url[url.length - 1] === '/' ? url.substr(0, url.length - 1) : url;
|
|
|
|
}
|
2017-01-07 22:12:36 +09:00
|
|
|
|
2017-01-17 08:06:39 +09:00
|
|
|
function urlError(url: string) {
|
2017-01-07 22:12:36 +09:00
|
|
|
console.error(`「${url}」は、正しいURLではありません。先頭に http:// または https:// をつけ忘れてないかなど確認してください。`);
|
|
|
|
process.exit();
|
|
|
|
}
|