forked from fjc0k/docker-YApi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
start.js
347 lines (347 loc) · 10.5 KB
/
start.js
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const child_process_1 = __importDefault(require("child_process"));
const fs_1 = __importDefault(require("fs"));
const http_1 = __importDefault(require("http"));
const deepmerge_1 = __importDefault(require("deepmerge"));
// ==== 辅助函数 ====
class Helper {
/**
* 简单的 CONSTANT_CASE 实现。
*
* @param str 要转换的字符串
* @returns 返回转换后的字符串
*/
static constCase(str) {
return str
.replace(/(?<=[a-z])(?=[A-Z])/g, '_')
.toUpperCase();
}
/**
* 是否是假值。
*
* @param value 要判断的值
* @returns 返回判断结果
*/
static isFalsy(value) {
return [
'false', 'False', 'FALSE',
'off', 'Off', 'OFF',
'no', 'No', 'NO',
'0',
].includes(value);
}
/**
* 执行命令。
*
* @param cmd 要执行的命令
* @param log 记录执行过程
* @returns 返回执行结果
*/
static async exec(cmd, log) {
return new Promise(resolve => {
const child = child_process_1.default.spawn('sh', ['-c', `set -ex\n${cmd}`], {
stdio: 'pipe',
cwd: process.cwd(),
});
let stdout = '';
let stderr = '';
child.stdout.on('data', data => {
log && log(String(data));
stdout += data;
});
child.stderr.on('data', data => {
log && log(String(data));
stderr += data;
});
child.on('error', error => {
resolve({ error, stdout, stderr, cmd });
});
child.on('close', code => {
resolve({ stdout, stderr, cmd, code });
});
});
}
/**
* 执行 JS 文件。
*
* @param path 文件路径
* @param log 记录执行过程
* @returns 返回执行结果
*/
static async execJsFile(path, log) {
return Helper.exec(`node --unhandled-rejections=strict ${path}`, log);
}
}
// ==== 配置解析 ====
// 配置格式
// ref: https://hellosean1025.github.io/yapi/devops/index.html
const configShape = {
adminAccount: String,
// 管理员密码:
// 由 Docker-YApi 新增,
// 在 Dockerfile 里有对相关文件进行修改以支持该配置的命令
adminPassword: String,
// NPM 源:
// 由 Docker-YApi 新增,
// 目前仅在安装插件时使用
npmRegistry: String,
closeRegister: Boolean,
port: Number,
db: {
servername: String,
port: Number,
DATABASE: String,
user: String,
pass: String,
connectString: String,
authSource: String,
options: JSON,
},
mail: {
enable: Boolean,
host: String,
port: Number,
from: String,
auth: {
user: String,
pass: String,
},
// 传递给 NodeMailer 的额外参数:
// 由 Docker-YApi 新增,
// ref: https://nodemailer.com/smtp/
options: JSON,
},
ldapLogin: {
enable: Boolean,
server: String,
baseDn: String,
bindPassword: String,
searchDn: String,
searchStandard: String,
emailPostfix: String,
emailKey: String,
usernameKey: String,
},
plugins: [
{
name: String,
options: JSON,
},
],
};
class ConfigParser {
/**
* 从文件获取配置。
*
* @returns 返回获取到的配置
*/
static extractConfigFromFile() {
return fs_1.default.existsSync('./config.js')
? require('./config.js')
: fs_1.default.existsSync('./config.json')
? JSON.parse(fs_1.default.readFileSync('./config.json').toString())
: {};
}
/**
* 从环境变量获取配置。
*
* @param configCtx 配置上下文
* @param shapeCtx 格式上下文
* @param envPath 环境变量路径
* @returns 返回获取到的配置
*/
static extractConfigFromEnv(configCtx = {}, shapeCtx = configShape, envPath = ['YAPI']) {
for (const [key, shape] of Object.entries(shapeCtx)) {
const KEY = Helper.constCase(key);
if (Array.isArray(shape) || shape === JSON || typeof shape === 'function') {
const envKey = envPath.concat(KEY).join('_');
const envValue = process.env[envKey];
if (envValue != null) {
configCtx[key] = shape === Boolean
? !Helper.isFalsy(envValue)
: (Array.isArray(shape) || shape === JSON)
? JSON.parse(envValue.trim())
: shape(envValue);
}
}
else {
if (configCtx[key] == null) {
configCtx[key] = {};
}
ConfigParser.extractConfigFromEnv(configCtx[key], shape, envPath.concat(KEY));
}
}
return configCtx;
}
/**
* 合并配置,配置2覆盖配置1。
*
* @param config1 配置1
* @param config2 配置2
* @returns 返回合并后的配置
*/
static mergeConfig(config1, config2) {
return deepmerge_1.default(config1, config2, { arrayMerge: (_, source) => source });
}
/**
* 获取配置。
*/
static extractConfig() {
const configFromFile = ConfigParser.extractConfigFromFile();
const configFromEnv = ConfigParser.extractConfigFromEnv();
const config = ConfigParser.mergeConfig(configFromFile, configFromEnv);
// 端口固定为 3000,但支持通过环境变量 PORT 改变
// 注: Heroku 必须使用 PORT 环境变量
Object.assign(config, {
port: process.env.PORT || 3000,
});
return config;
}
}
// ==== 引导服务 ====
class BootstrapServer {
constructor(port) {
this.port = port;
this.logs = [];
}
/**
* 日志记录。
*/
log(message) {
this.logs.push(message);
}
/**
* 打开引导服务。
*/
open() {
this.server = http_1.default.createServer((req, res) => {
res.setHeader('Connection', 'close');
if (/\/logs$/.test(req.url || '')) {
res.setHeader('Content-Type', 'application/json; charset=utf-8');
res.end(JSON.stringify(this.logs));
}
else {
res.setHeader('Content-Type', 'text/html; charset=utf-8');
res.end(`
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>docker-YApi</title>
<script crossorigin="anonymous" src="https://cdn.staticfile.org/fetch/3.0.0/fetch.min.js"></script>
</head>
<body>
<h1>YApi 正在启动...</h1>
<hr />
<pre id="data"></pre>
<script>
function fetchData() {
var timer = setTimeout(fetchData, 500)
fetch('./logs')
.then(function (res) {
return res.json()
})
.then(function (data) {
document.querySelector('#data').innerHTML = data.join('\\n')
})
.catch(function () {
clearTimeout(timer)
setTimeout(function () { location.reload() }, 2000)
})
}
fetchData()
</script>
</body>
</html>
`);
}
});
this.server.listen(this.port);
}
/**
* 关闭引导服务。
*/
async close() {
return new Promise(resolve => {
this.server.close(resolve);
});
}
}
// ==== 入口 ====
class Main {
constructor() {
this.config = ConfigParser.extractConfig();
this.bootstrapServer = new BootstrapServer(this.config.port);
}
/**
* 日志记录。
*/
log(message, sendToClient = false) {
console.log(message);
if (sendToClient) {
this.bootstrapServer.log(message);
}
}
/**
* 写入配置。
*/
writeConfig(config) {
const finalConfig = JSON.parse(JSON.stringify(config));
const mailOptions = finalConfig.mail.options || {};
delete finalConfig.mail.options;
finalConfig.mail = deepmerge_1.default(finalConfig.mail, mailOptions);
fs_1.default.writeFileSync('./config.json', JSON.stringify(finalConfig));
}
/**
* 安装 YApi 插件。
*/
async installPluginsIfNeeded() {
if (Array.isArray(this.config.plugins) && this.config.plugins.length > 0) {
const packages = this.config.plugins
.map(plugin => `yapi-plugin-${plugin.name}`)
.join(' ');
await Helper.exec(`
cd /yapi/vendors
npm install ${packages} ${this.config.npmRegistry ? `--registry=${this.config.npmRegistry}` : ''} --no-audit
npm run build-client
`, message => this.log(message));
}
}
/**
* 等待 MongoDB 服务可用。
*/
async waitMongoDBAvailable() {
await Helper.exec(`
until nc -z ${this.config.db.servername} ${this.config.db.port || 27017}
do
sleep 0.5
done
`);
}
async start() {
this.log('启动引导服务...', true);
this.bootstrapServer.open();
this.log('写入配置...', true);
this.log(JSON.stringify(this.config, null, 2));
this.writeConfig(this.config);
this.log('等待 MongoDB 服务可用...', true);
await this.waitMongoDBAvailable();
this.log('安装 YApi 插件...', true);
await this.installPluginsIfNeeded();
this.log('尝试安装 YApi...', true);
await Helper.execJsFile('./vendors/server/install.js', message => this.log(message));
this.log('关闭引导服务...', true);
await this.bootstrapServer.close();
this.log('尝试启动 YApi...', true);
require('./vendors/server/app.js');
}
}
new Main()
.start()
.catch(err => {
throw err;
});