-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
89 lines (77 loc) · 2.4 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
const ApiConnection = require('./src/connection/ApiConnection');
const DbConnection = require('./src/connection/DbConnection');
const RedisConnection = require('./src/connection/RedisConnection');
const JsonApiFetch = require('./src/source/JsonApiFetch');
const JsonApiPost = require('./src/source/JsonApiPost');
module.exports = (logger, timers, metrics) => {
const apiConnection = (host, port, protocol) =>
ApiConnection(
logger,
timers,
host,
port,
protocol,
);
const dbConnection = (
host,
port,
username,
password,
dbName,
connectionOptions,
enableConnectionLogging,
) =>
DbConnection(
logger,
timers,
metrics,
host,
port,
username,
password,
dbName,
connectionOptions,
enableConnectionLogging,
);
const redisConnection = (host, port, dbIndex) =>
RedisConnection(
logger,
host,
port,
dbIndex,
);
const jsonApiFetch = (apiConn => JsonApiFetch(logger, apiConn));
const jsonApiPost = (apiConn => JsonApiPost(logger, apiConn));
function getHealthCheckCallback(sources = []) {
return () => (
async () => {
if (!sources || sources.length === 0) {
logger.error('data.healthcheck', 'No data sources provided');
throw new Error('No data sources passed');
}
const sourcesHealthchecks = await (Promise.all(sources.map(async (source) => {
try {
return source.isHealthy();
} catch (e) {
if (e instanceof TypeError) {
logger.error('data.healthcheck', { message: 'Data source does not implement healthcheck function' });
}
return false;
}
})));
if (sourcesHealthchecks.some(r => !r)) {
throw new Error();
}
return true;
}
);
}
return {
apiConnection,
dbConnection,
redisConnection,
jsonApiFetch,
jsonApiPost,
getHealthCheckCallback,
};
};