This repository has been archived by the owner on Apr 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
createScope.js
136 lines (106 loc) · 3.49 KB
/
createScope.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
const fs = require('fs');
const chalk = require('chalk');
const canhazdbClient = require('canhazdb-client');
const canhazdbServer = require('canhazdb-server');
const createNotifyServer = require('notify-over-http');
const createMetricsEngine = require('./common/createMetricsEngine');
const hint = require('hinton');
const createScheduler = require('skeddy');
const tls = {
key: fs.readFileSync('./certs/localhost.privkey.pem'),
cert: fs.readFileSync('./certs/localhost.cert.pem'),
ca: [fs.readFileSync('./certs/ca.cert.pem')],
requestCert: true
};
async function loadSettingsFromDatabase (config, db) {
const settings = await db.getAll('settings');
const objectifiedSettings = settings.reduce((result, setting) => {
result[setting.key] = setting.value;
return result;
}, {});
if (!objectifiedSettings.installed && !config.hideUninstalledWarning) {
console.log(chalk.yellow('Puzed instance is not installed'));
}
return objectifiedSettings;
}
function wrapMetrics (scope, db) {
function wrapCommand (command, args) {
const title = 'db.' + command + ':' + args[0].split('-')[0];
scope.metrics && scope.metrics.inc(title);
const startTime = Date.now();
return db[command](...args)
.then(result => {
const duration = Date.now() - startTime;
scope.metrics && scope.metrics.set(title, duration);
return result;
});
}
return {
...db,
count: (...args) => {
return wrapCommand('count', args);
},
getAll: (...args) => {
return wrapCommand('getAll', args);
},
getOne: (...args) => {
return wrapCommand('getOne', args);
},
post: (...args) => {
return wrapCommand('post', args);
},
put: (...args) => {
return wrapCommand('put', args);
},
patch: (...args) => {
return wrapCommand('patch', args);
},
delete: (...args) => {
return wrapCommand('delete', args);
}
};
}
async function createScope (config) {
process.env.HINT = process.env.HINT || config.hint;
const scope = {
config
};
hint('puzed.db', 'connecting');
scope.dataNode = config.createDataNode
? await canhazdbServer({
host: 'localhost', port: 7061, queryPort: 8061, dataDirectory: config.dataDirectory, single: true, tls
})
: null;
const dbConnection = await canhazdbClient(scope.dataNode ? scope.dataNode.url : 'https://localhost:8061', { tls });
scope.db = wrapMetrics(scope, dbConnection);
hint('puzed.settings', 'grabbing settings from dbx');
scope.settings = await loadSettingsFromDatabase(config, scope.db, 'settings');
hint('puzed.db', 'fetching all servers');
scope.servers = await scope.db.getAll('servers');
hint('puzed.metrics', 'starting metrics engine');
scope.metrics = createMetricsEngine(scope);
hint('puzed.notify', 'creating notify server');
scope.notify = createNotifyServer({
servers: scope.servers
.map(server => ({
url: `https://${server.hostname}:${server.apiPort}/notify`,
headers: {
host: scope.settings.domains.api[0]
}
}))
});
scope.scheduler = createScheduler();
scope.close = () => {
return Promise.all([
scope.db.close(),
scope.scheduler.cancelAndStop(),
scope.dataNode && scope.dataNode.close()
]);
};
scope.reloadSettings = async () => {
scope.settings = await loadSettingsFromDatabase(config, scope.db, 'settings');
};
scope.providers = require('./providers')(scope);
return scope;
}
module.exports = createScope;