iceshrimp-legacy/src/config.ts

167 lines
3.7 KiB
TypeScript
Raw Normal View History

2016-12-28 23:49:51 +01:00
/**
* Config loader
*/
import * as fs from 'fs';
2018-03-26 06:57:28 +02:00
import { URL } from 'url';
2016-12-28 23:49:51 +01:00
import * as yaml from 'js-yaml';
2017-01-18 08:34:21 +01:00
import isUrl = require('is-url');
2016-12-28 23:49:51 +01:00
/**
* Path of configuration directory
*/
const dir = `${__dirname}/../.config`;
/**
* Path of configuration file
*/
2017-02-21 18:27:19 +01:00
export const path = process.env.NODE_ENV == 'test'
? `${dir}/test.yml`
: `${dir}/default.yml`;
2017-01-17 00:19:34 +01:00
2016-12-28 23:49:51 +01:00
/**
*
*/
2017-05-24 13:50:17 +02:00
type Source = {
/**
*
*/
maintainer: {
/**
*
*/
name: string;
/**
* (URLかmailto形式のURL)
*/
url: string;
};
2016-12-28 23:49:51 +01:00
url: string;
secondary_url: string;
port: number;
2017-11-25 00:11:58 +01:00
https?: { [x: string]: string };
2016-12-28 23:49:51 +01:00
mongodb: {
host: string;
port: number;
db: string;
2017-01-17 00:57:31 +01:00
user: string;
2016-12-28 23:49:51 +01:00
pass: string;
};
redis: {
host: string;
port: number;
pass: string;
};
elasticsearch: {
enable: boolean;
host: string;
port: number;
pass: string;
};
recaptcha: {
site_key: string;
secret_key: string;
2016-12-28 23:49:51 +01:00
};
2017-01-31 16:12:49 +01:00
accesslog?: string;
2017-04-05 02:58:29 +02:00
accesses?: {
enable: boolean;
port: number;
};
2017-01-31 16:12:49 +01:00
twitter?: {
2017-01-20 03:09:54 +01:00
consumer_key: string;
consumer_secret: string;
};
2017-01-31 16:12:49 +01:00
github_bot?: {
hook_secret: string;
2017-01-31 16:43:06 +01:00
username: string;
2017-01-31 16:12:49 +01:00
};
2018-03-13 20:20:15 +01:00
othello_ai?: {
id: string;
i: string;
};
2017-10-06 20:36:46 +02:00
line_bot?: {
channel_secret: string;
2017-10-06 21:30:57 +02:00
channel_access_token: string;
2017-10-06 20:36:46 +02:00
};
2017-09-07 06:31:31 +02:00
analysis?: {
2017-09-06 14:29:56 +02:00
mecab_command?: string;
};
2017-11-20 19:40:09 +01:00
/**
* Service Worker
*/
sw?: {
public_key: string;
private_key: string;
2017-11-20 19:40:09 +01:00
};
google_maps_api_key: string;
2017-05-24 13:50:17 +02:00
};
2016-12-28 23:49:51 +01:00
/**
* Misskeyが自動的に()
*/
2017-05-24 13:50:17 +02:00
type Mixin = {
2016-12-28 23:49:51 +01:00
host: string;
hostname: string;
2016-12-28 23:49:51 +01:00
scheme: string;
2018-03-16 14:38:28 +01:00
ws_scheme: string;
2016-12-28 23:49:51 +01:00
secondary_host: string;
secondary_hostname: string;
2016-12-28 23:49:51 +01:00
secondary_scheme: string;
api_url: string;
2018-03-16 14:38:28 +01:00
ws_url: string;
2016-12-28 23:49:51 +01:00
auth_url: string;
2017-12-16 17:41:22 +01:00
docs_url: string;
2017-11-03 09:44:52 +01:00
ch_url: string;
2017-08-12 08:17:03 +02:00
stats_url: string;
status_url: string;
2016-12-28 23:49:51 +01:00
dev_url: string;
drive_url: string;
2017-05-24 13:50:17 +02:00
};
2016-12-28 23:49:51 +01:00
2017-02-19 04:31:23 +01:00
export type Config = Source & Mixin;
2017-01-17 00:19:34 +01:00
export default function load() {
2017-02-08 15:52:14 +01:00
const config = yaml.safeLoad(fs.readFileSync(path, 'utf-8')) as Source;
2016-12-28 23:49:51 +01:00
2017-02-08 15:52:14 +01:00
const mixin = {} as Mixin;
2016-12-28 23:49:51 +01:00
2017-01-07 14:12:36 +01:00
// Validate URLs
if (!isUrl(config.url)) urlError(config.url);
if (!isUrl(config.secondary_url)) urlError(config.secondary_url);
2018-03-26 06:57:28 +02:00
const url = new URL(config.url);
const secondaryUrl = new URL(config.secondary_url);
2016-12-28 23:49:51 +01:00
config.url = normalizeUrl(config.url);
config.secondary_url = normalizeUrl(config.secondary_url);
2018-03-26 06:57:28 +02:00
mixin.host = url.host;
mixin.hostname = url.hostname;
2018-03-26 06:57:28 +02:00
mixin.scheme = url.protocol.replace(/:$/, '');
2018-03-16 14:38:28 +01:00
mixin.ws_scheme = mixin.scheme.replace('http', 'ws');
mixin.ws_url = `${mixin.ws_scheme}://api.${mixin.host}`;
2016-12-28 23:49:51 +01:00
mixin.secondary_host = config.secondary_url.substr(config.secondary_url.indexOf('://') + 3);
mixin.secondary_hostname = secondaryUrl.hostname;
2016-12-28 23:49:51 +01:00
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}`;
2017-10-31 19:17:14 +01:00
mixin.ch_url = `${mixin.scheme}://ch.${mixin.host}`;
2016-12-28 23:49:51 +01:00
mixin.dev_url = `${mixin.scheme}://dev.${mixin.host}`;
2017-12-16 17:41:22 +01:00
mixin.docs_url = `${mixin.scheme}://docs.${mixin.host}`;
2017-08-12 08:17:03 +02:00
mixin.stats_url = `${mixin.scheme}://stats.${mixin.host}`;
mixin.status_url = `${mixin.scheme}://status.${mixin.host}`;
2016-12-28 23:49:51 +01:00
mixin.drive_url = `${mixin.secondary_scheme}://file.${mixin.secondary_host}`;
2017-01-17 00:06:39 +01:00
return Object.assign(config, mixin);
}
2016-12-28 23:49:51 +01:00
2017-01-17 00:06:39 +01:00
function normalizeUrl(url: string) {
2016-12-28 23:49:51 +01:00
return url[url.length - 1] === '/' ? url.substr(0, url.length - 1) : url;
}
2017-01-07 14:12:36 +01:00
2017-01-17 00:06:39 +01:00
function urlError(url: string) {
2017-01-07 14:12:36 +01:00
console.error(`${url}」は、正しいURLではありません。先頭に http:// または https:// をつけ忘れてないかなど確認してください。`);
process.exit();
}