-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
648 lines (558 loc) · 18.1 KB
/
index.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
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
const { exec } = require("child_process");
const { existsSync, readdirSync, writeFileSync, mkdirSync } = require("fs");
const http = require("http");
const os = require("os");
const { resolve } = require("path");
const path = require("path");
// test remove todo
if(process.env.NODE_DEBUG === 'true') {
process.env.NGINX_DIST = path.resolve(__dirname, 'test/dist1');
process.env.NGINX_CONFIG_D_DIR = path.resolve(__dirname, 'test/nginx-config/micro-config.d');
}
const S_NAMESPACE = process.env.S_NAMESPACE || 'hzero_front_';
const S_NO_CHANGE_MICRO = process.env.S_NO_CHANGE_MICRO === 'true';
const NGINX_DIST = process.env.NGINX_DIST || `/usr/share/nginx/html`;
const NGINX_CONFIG_D_DIR = process.env.NGINX_CONFIG_D_DIR || `/etc/nginx/conf.d/micro-config.d`;
if (!existsSync(NGINX_CONFIG_D_DIR)) {
mkdirSync(NGINX_CONFIG_D_DIR, { recursive: true });
}
const packages_dir = path.resolve(NGINX_DIST, 'packages');
if (!existsSync(packages_dir)) {
mkdirSync(packages_dir);
}
const promisify = function promisify(fn, callbackErr = true, reverse = false) {
if ({}.toString.call(fn) !== '[object Function]') throw new TypeError('Only normal function can be promisified');
return function (...args) {
return new Promise((resolve, reject) => {
const callback = function (...args) {
if (!callbackErr) {
if (args.length === 1) return resolve(args[0]);
return resolve(args);
}
const err = args.shift();
const rest = args;
if ({}.toString.call(err) === '[object Error]') return reject(err);
if (rest.length === 1) return resolve(rest[0]);
return resolve(rest);
};
try {
if (reverse === true) fn.apply(null, [callback, ...args]);
else fn.apply(null, [...args, callback]);
} catch (err) {
reject(err);
}
});
}
};
const getIp = () => {
const networkInterfaces = os.networkInterfaces();
const allInterNames = Object.keys(networkInterfaces);
let currentInterName = allInterNames.find(k => (k === 'eth0' || k === 'en0'));
if (!currentInterName) {
currentInterName = allInterNames[0]
}
if (currentInterName) {
const inter = networkInterfaces[currentInterName].find(item => (item.family === 'IPv4' || item.family === 4));
if(inter) {
return inter.address;
} else {
networkInterfaces[currentInterName][0].address
}
}
return '127.0.0.1';
};
const throttle = function (func, wait = 300) {
var timeout, context, args, result;
// 上一次执行回调的时间戳
var previous = 0;
let options;
// 无传入参数时,初始化 options 为空对象
if (!options) options = {};
var later = function () {
// 当设置 { leading: false } 时
// 每次触发回调函数后设置 previous 为 0
// 不然为当前时间
previous = options.leading === false ? 0 : Date.now();
// 防止内存泄漏,置为 null 便于后面根据 !timeout 设置新的 timeout
timeout = null;
// 执行函数
result = func.apply(context, args);
if (!timeout) context = args = null;
};
// 每次触发事件回调都执行这个函数
// 函数内判断是否执行 func
// func 才是我们业务层代码想要执行的函数
var throttled = function () {
// 记录当前时间
var now = Date.now();
// 第一次执行时(此时 previous 为 0,之后为上一次时间戳)
// 并且设置了 { leading: false }(表示第一次回调不执行)
// 此时设置 previous 为当前值,表示刚执行过,本次就不执行了
if (!previous && options.leading === false) previous = now;
// 距离下次触发 func 还需要等待的时间
var remaining = wait - (now - previous);
context = this;
args = arguments;
// 要么是到了间隔时间了,随即触发方法(remaining <= 0)
// 要么是没有传入 {leading: false},且第一次触发回调,即立即触发
// 此时 previous 为 0,wait - (now - previous) 也满足 <= 0
// 之后便会把 previous 值迅速置为 now
if (remaining <= 0 || remaining > wait) {
if (timeout) {
clearTimeout(timeout);
// clearTimeout(timeout) 并不会把 timeout 设为 null
// 手动设置,便于后续判断
timeout = null;
}
// 设置 previous 为当前时间
previous = now;
// 执行 func 函数
result = func.apply(context, args);
if (!timeout) context = args = null;
} else if (!timeout && options.trailing !== false) {
// 最后一次需要触发的情况
// 如果已经存在一个定时器,则不会进入该 if 分支
// 如果 {trailing: false},即最后一次不需要触发了,也不会进入这个分支
// 间隔 remaining milliseconds 后触发 later 方法
timeout = setTimeout(later, remaining);
}
return result;
};
// 手动取消
throttled.cancel = function () {
clearTimeout(timeout);
previous = 0;
timeout = context = args = null;
};
// 执行 _.throttle 返回 throttled 函数
return throttled;
};
function parsePackageName(name) {
return name.replace(/([\\\/])|(\-)/g, '_').replace(/^@/, '');
}
const delay = (timeout = 0) => {
return new Promise(resolve => {
setTimeout(() => {
resolve(null);
}, timeout);
});
};
const getCurrentPackageMap = (nginxDist) => {
const configMap = {};
/*
const mainPackageJsonFile = path.resolve(nginxDist, 'package.json');
if (existsSync(mainPackageJsonFile)) {
const mainPackageInfo = require(mainPackageJsonFile);
if (mainPackageInfo.name) {
configMap[parsePackageName(mainPackageInfo.name)] = {
packageInfo: mainPackageInfo,
_isMainPackage: true
}
}
}
*/
const mainPackagesDir = path.resolve(nginxDist, 'packages');
if (existsSync(mainPackagesDir)) {
readdirSync(mainPackagesDir).forEach(packageName => {
const packageJsonFile = path.resolve(mainPackagesDir, packageName, 'package.json');
if (existsSync(packageJsonFile)) {
const packageInfo = require(packageJsonFile);
configMap[packageName] = {
packageInfo: packageInfo,
}
return;
}
const remoteEntryFile = path.resolve(mainPackagesDir, packageName, 'remoteEntry.js');
if (existsSync(remoteEntryFile)) {
configMap[packageName] = {
packageInfo: {
name: packageName
},
}
return;
}
})
}
return configMap;
};
const nginxReload = throttle((cb) => {
if(process.env.NODE_DEBUG==='true') {
// console.log(`exec('nginx -p /etc/nginx/ -c nginx.conf -s reload')`);
return;
}
exec('nginx -p /etc/nginx/ -c nginx.conf -s reload', (err, res) => {
if (err) {
console.error(err);
}
if (res) {
console.log(res);
}
if (cb) {
cb();
}
});
}, 1000);
const refreshMicroConfig = throttle((onlineNginxClientMap, currentIP) => {
// console.log('refreshMicroConfig:', JSON.stringify(onlineNginxClientMap, null, 2));
const microConfig = {};
let NginxMicroConfig = {};
const currentPackageMap = onlineNginxClientMap[currentIP];
if(!currentPackageMap) {
return;
}
Object.keys(onlineNginxClientMap).forEach(nginxIp => {
const _microConfig = onlineNginxClientMap[nginxIp];
Object.keys(_microConfig).forEach(packageName => {
if(packageName === '_lastCheckTime') {
return;
}
// if (microConfig[packageName]) {
// return;
// }
if (nginxIp === currentIP && _microConfig[packageName]._isMainPackage) {
return;
}
if(nginxIp !== currentIP && currentPackageMap[packageName] && _microConfig[packageName]) {
return;
}
microConfig[packageName] = _microConfig[packageName].packageInfo;
if (nginxIp === currentIP) {
return;
}
if (_microConfig[packageName]._isMainPackage) {
NginxMicroConfig[packageName] = `
location /packages/${packageName}/ {
proxy_pass http://${nginxIp}/;
proxy_set_header host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
`
} else {
NginxMicroConfig[packageName] = `
location /packages/${packageName}/ {
proxy_pass http://${nginxIp};
proxy_set_header host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
`
}
});
});
const microConfigJsonFile = path.resolve(packages_dir, 'microConfig.json');
const NginxMicroConfigFile = path.resolve(NGINX_CONFIG_D_DIR, 'default.conf');
writeFileSync(microConfigJsonFile, JSON.stringify(microConfig, null, 2));
const NginxMicroConf = Object.values(NginxMicroConfig).join('\n');
writeFileSync(NginxMicroConfigFile, NginxMicroConf);
nginxReload(() => {
console.log(NginxMicroConf);
});
}, 1000);
const checkAliveAwait = async (onlineNginxClientMap, currentIP) => {
while (true) {
let hasUpdate = false;
await Promise.all(Object.keys(onlineNginxClientMap).map(async (nginxIp) => {
// 检查是否下线
if (nginxIp === currentIP) {
return;
}
const _microConfig = onlineNginxClientMap[nginxIp];
if (!_microConfig._lastCheckTime) {
_microConfig._lastCheckTime = 0;
}
if (Date.now() - _microConfig._lastCheckTime > 60000) {
try {
await (new Promise((resolve, reject) => {
const r = http.get({
host: nginxIp,
path: '/_currentPackageMap.json',
// url: `http://${data.ip}/_currentPackageMap.json`,
headers: {
'Host': 'localhost'
}
}, (res) => {
if(res.statusCode === 200) {
resolve(res.statusCode);
} else {
reject(res.statusCode);
}
});
r.on('error', (err) => reject(err));
r.on('connect', (res) => resolve(res));
}));
_microConfig._lastCheckTime = Date.now();
} catch {
if(onlineNginxClientMap[nginxIp]) {
delete onlineNginxClientMap[nginxIp];
hasUpdate = true;
}
}
}
}));
if (hasUpdate) {
refreshMicroConfig(onlineNginxClientMap, currentIP);
}
await delay(60000);
}
}
const useRedis = async () => {
const S_REDIS_HOST = process.env.S_REDIS_HOST || 'redis';
const S_REDIS_PORT = process.env.S_REDIS_PORT || '6379';
if (!existsSync(NGINX_DIST)) {
console.error(`dir \`${NGINX_DIST}\` not exist! maybe env 'NGINX_DIST' not set!`)
process.exit(1);
// NGINX_DIST = path.resolve(__dirname, 'test/dist1');
}
const currentIP = getIp();
const onlineNginxClientMap = {};
const currentPackageMap = getCurrentPackageMap(NGINX_DIST);
writeFileSync(resolve(NGINX_DIST, '_currentPackageMap.json'), JSON.stringify(currentPackageMap));
// console.log('currentPackageMap', {
// currentPackageMap
// });
// process.exit();
const { createClient } = require('redis');
const client = createClient({
url: `redis://${S_REDIS_HOST}:${S_REDIS_PORT}`
});
client.on('error', (err) => console.log('Redis Client Error', err));
await client.connect();
let isExiting = false;
const clean = async () => {
if(isExiting) {
return;
}
isExiting = true;
try {
console.log('beforeExit: cleaning');
await client.publish(`${S_NAMESPACE}-offline`, currentIP);
await client.disconnect();
} catch(e) {
console.error(e);
}
console.log('beforeExit4: cleaned');
process.exit();
}
process.on('SIGTERM', () => {
clean();
});
process.on('SIGINT', () => {
clean();
});
await client.publish(`${S_NAMESPACE}-online`, JSON.stringify({
ip: currentIP,
packageMap: currentPackageMap,
}));
const getInfoReplySubscriber = client.duplicate();
await getInfoReplySubscriber.connect();
await getInfoReplySubscriber.subscribe(`${S_NAMESPACE}-get-info`, async (geter_ip) => {
await client.publish(`${S_NAMESPACE}-online-for-${geter_ip}`, JSON.stringify({
ip: currentIP,
packageMap: currentPackageMap,
}));
});
if(!S_NO_CHANGE_MICRO) {
const onlineSubscriber = client.duplicate();
const offLineSubscriber = client.duplicate();
await Promise.all([offLineSubscriber.connect(), onlineSubscriber.connect()]);
await Promise.all([offLineSubscriber.subscribe(`${S_NAMESPACE}-offline`, (data) => {
console.log(`offline: ${data}`)
if(delete onlineNginxClientMap[data]) {
delete onlineNginxClientMap[data];
refreshMicroConfig(onlineNginxClientMap, currentIP);
}
}), onlineSubscriber.subscribe([`${S_NAMESPACE}-online`, `${S_NAMESPACE}-online-for-${currentIP}`], (data) => {
const msgObj = JSON.parse(data);
onlineNginxClientMap[msgObj.ip] = msgObj.packageMap;
console.log(`${S_NAMESPACE}-online: ${msgObj.ip}`);
refreshMicroConfig(onlineNginxClientMap, currentIP);
})]);
await client.publish(`${S_NAMESPACE}-get-info`, currentIP);
}
console.log(`readey!!! (${process.pid})`);
if(!S_NO_CHANGE_MICRO) {
await checkAliveAwait(onlineNginxClientMap, currentIP);
}
};
const useMdns = async () => {
const encodeData = (data) => {
try {
return `${Buffer.from(JSON.stringify(data)).toString('base64')}`;
} catch {
return null;
}
}
const decodeData = (data) => {
try {
return JSON.parse(Buffer.from(data.toString(), 'base64').toString());
} catch(e) {
return null;
}
}
const mdns = require('multicast-dns')();
const onlineNginxClientMap = {};
const currentIP = getIp();
const currentPackageMap = getCurrentPackageMap(NGINX_DIST);
writeFileSync(resolve(NGINX_DIST, '_currentPackageMap.json'), JSON.stringify(currentPackageMap));
const onOnline = (ip) => {
mdns.respond({
answers: [
{
name: `${S_NAMESPACE}-online`,
type: 'TXT',
data: encodeData({ip})
}]
});
}
const onOffline = (ip) => {
mdns.respond({
answers: [
{
name: `${S_NAMESPACE}-offline`,
type: 'TXT',
data: encodeData({ip})
}]
});
}
const onGetinfo = (ip) => {
// ${Buffer.from('brunh33ilde.loc--0-s3....23///\\al').toString('base64')}
mdns.respond({
answers: [
{
name: `${S_NAMESPACE}-get-info`,
type: 'TXT',
data: encodeData({ip})
}]
});
}
mdns.on('response', function (response) {
// console.log('got a response packet:', response)
response.answers.forEach((ans) => {
if (!ans.name.startsWith(`${S_NAMESPACE}-`)) {
return;
}
const type = ans.name.replace(`${S_NAMESPACE}-`, '');
const data = decodeData(ans.data[0])
// console.log('type: ', type);
// console.log('data: ', data);
if(!S_NO_CHANGE_MICRO) {
if(type === 'online' ) {
(async () => {
let ccMap = null;
if(data.ip === currentIP) {
ccMap = currentPackageMap;
} else {
try{
// await delay(1000);
ccMap = await (new Promise((resolve, reject) => {
const r = http.get({
host: data.ip,
path: '/_currentPackageMap.json',
// url: `http://${data.ip}/_currentPackageMap.json`,
headers: {
'Host': 'localhost'
}
}, (res) => {
if(res.statusCode === 200) {
res.setEncoding('utf8');
let rawData = '';
res.on('data', (chunk) => { rawData += chunk; });
res.on('end', () => {
resolve(rawData);
});
} else {
reject(res.statusCode);
}
res.on('error', (err) => reject(err))
});
r.on('error', (err) => reject(err));
}));
ccMap = JSON.parse(ccMap);
}catch(e){
ccMap = null;
console.error('Error:', e);
}
}
if(ccMap) {
onlineNginxClientMap[data.ip] = ccMap
refreshMicroConfig(onlineNginxClientMap, currentIP)
}
})();
}
if(type === 'offline' ) {
if(onlineNginxClientMap[data.ip]) {
delete onlineNginxClientMap[data.ip];
refreshMicroConfig(onlineNginxClientMap, currentIP)
}
}
}
if(type === 'get-info') {
if(data.ip !== currentIP) {
onOnline(currentIP);
}
}
});
});
onOnline(currentIP);
if(!S_NO_CHANGE_MICRO) {
onGetinfo(currentIP);
}
// await client.publish(`${S_NAMESPACE}-get-info`, currentIP);
let isExiting = false;
const clean = async () => {
if(isExiting) {
return;
}
isExiting = true;
try {
console.log('beforeExit: cleaning');
onOffline(currentIP);
await delay(50);
await promisify(mdns.destroy)();
} catch(e) {
console.error(e);
}
console.log('beforeExit4: cleaned');
process.exit();
}
process.on('SIGTERM', () => {
clean();
});
process.on('SIGINT', () => {
clean();
});
process.on('exit', () => {
clean();
});
console.log(`readey!!! (${process.pid})`);
if(!S_NO_CHANGE_MICRO) {
await checkAliveAwait(onlineNginxClientMap, currentIP);
}
}
// useRedis();
if (process.env.USE_REDIS === 'true') {
useRedis();
} else {
if (process.env.USE_REDIS === 'none') {
(async () => {
const clean = () => {
process.exit();
}
process.on('SIGTERM', () => {
clean();
});
process.on('SIGINT', () => {
clean();
});
process.on('exit', () => {
clean();
});
while(true) {
await delay(24 * 60 * 60 * 1000);
}
})();
} else {
useMdns();
}
}