blob: 2369b709fc2e998daed1ea7d8f9a6828233da564 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
/**
* Config loader
*/
import * as fs from 'fs';
import * as yaml from 'js-yaml';
/**
* ユーザーが設定する必要のある情報
*/
interface ISource {
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;
user_id: string;
pass: string;
};
redis: {
host: string;
port: number;
pass: string;
};
elasticsearch: {
enable: boolean;
host: string;
port: number;
pass: string;
};
recaptcha: {
siteKey: string;
secretKey: string;
};
}
/**
* Misskeyが自動的に(ユーザーが設定した情報から推論して)設定する情報
*/
interface Mixin {
themeColor: string;
themeColorForeground: string;
host: string;
scheme: string;
secondary_host: string;
secondary_scheme: string;
api_url: string;
auth_url: string;
dev_url: string;
drive_url: string;
proxy_url: string;
}
export type IConfig = ISource & Mixin;
/**
* 設定を取得します
* @param {string} path 設定ファイルのパス
* @return {IConfig} 設定
*/
export default (path: string) => {
const config = yaml.safeLoad(fs.readFileSync(path, 'utf8')) as ISource;
const mixin: Mixin = {} as Mixin;
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}`;
mixin.drive_url = `${mixin.secondary_scheme}://file.${mixin.secondary_host}`;
mixin.proxy_url = `${mixin.secondary_scheme}://proxy.${mixin.secondary_host}`;
return Object.assign(config || {}, mixin) as IConfig;
};
function normalizeUrl(url: string): string {
return url[url.length - 1] === '/' ? url.substr(0, url.length - 1) : url;
}
|