-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyggdrasil.js
88 lines (75 loc) · 2.28 KB
/
yggdrasil.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
'use strict';
console.log('info: 🌳 Starting Yggdrasil');
console.log('info: 🌱 Planting the seed... (loading the config and core lib)');
console.time('time: ⏱ Planting and make the seed to grow took');
const ObjectID = require('mongodb').ObjectID;
const express = require('express');
// Yggdrasil is an express instance
let yggdrasil = express();
yggdrasil._startedAt = {
time: Date.now(),
hr: process.hrtime()
};
yggdrasil.rootPath = __dirname;
yggdrasil.socketIOListeners = [];
/**
* Configuration loader
* @param jsonConfig - the specific json configuration (allow specific config for testing purposes)
*/
yggdrasil.loadConfig = jsonConfig => {
if (jsonConfig) {
yggdrasil.config = jsonConfig;
} else {
yggdrasil.config = require('rc')('yggdrasil', require('./defaultConfig'));
}
};
/**
* Returns an UUID generated by Mongo ObjectID
* returns a real ObjectID
* @param {boolean} returnString - if true, send the hex string from ObjectID
* @returns {string|ObjectID}
*/
yggdrasil.uuid = (returnString = false) => {
let theUuid = new ObjectID();
if (!returnString) {
return theUuid;
}
return theUuid.toHexString();
};
/** Load the main Lib **/
yggdrasil.lib = require('./lib');
/**
* Allow to kill the current instance of Yggdrasil
* @param _yggdrasil
* @param callback
* @returns {Promise<void>}
*/
yggdrasil.kill = async (_yggdrasil, callback) => {
if (_yggdrasil.functionalTestingMode) {
_yggdrasil = await _yggdrasil.cleanupFunctionalTestingdata(_yggdrasil);
}
_yggdrasil.server.serverObject.close(async function () {
_yggdrasil.logger.info('🚧 The HTTP server is now closed');
_yggdrasil.logger.info('🔌 Disconnect from Redis and Mongo...');
await _yggdrasil.storage.mongo.disconnect();
_yggdrasil.storage.redis.disconnect();
_yggdrasil.logger.info('💀 Yggdrasil will die soon.');
if (callback) {
callback();
}
_yggdrasil.logger.info('🖖 Bye.');
process.exit(130);
});
};
/**
* Kill the current instance when the process receive the SIGINT signal
*/
process.on('SIGINT', async () => {
await yggdrasil.kill(yggdrasil);
});
console.timeEnd('time: ⏱ Planting and make the seed to grow took');
/**
* Start Yggdrasil !
*/
yggdrasil.lib.startup(yggdrasil);
module.exports = yggdrasil;