-
Notifications
You must be signed in to change notification settings - Fork 49
/
subServiceHealth.js
97 lines (88 loc) · 3.53 KB
/
subServiceHealth.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
/*****
License
--------------
Copyright © 2017 Bill & Melinda Gates Foundation
The Mojaloop files are made available by the Bill & Melinda Gates Foundation under the Apache License, Version 2.0 (the "License") and you may not use these files except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, the Mojaloop files are distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Contributors
--------------
This is the official list of the Mojaloop project contributors for this file.
Names of the original copyright holders (individuals or organizations)
should be listed with a '*' in the first column. People who have
contributed from an organization can be listed under the organization
that actually holds the copyright for their contributions (see the
Gates Foundation organization for an example). Those individuals should have
their names indented and be marked with a '-'. Email address can be added
optionally within square brackets <email>.
* Gates Foundation
- Name Surname <name.surname@gatesfoundation.com>
* Lewis Daly <lewis@vesselstech.com>
--------------
******/
'use strict'
const { statusEnum, serviceName } = require('@mojaloop/central-services-shared').HealthCheck.HealthCheckEnums
const Logger = require('@mojaloop/central-services-logger')
const Config = require('../../lib/config')
const Notification = require('../../handlers/notification')
const Producer = require('@mojaloop/central-services-stream').Util.Producer
const axios = require('axios')
/**
* @function getSubServiceHealthBroker
*
* @description Gets the health for the Notification broker
* @returns Promise<object> The SubService health object for the broker
*/
const getSubServiceHealthBroker = async () => {
let status = statusEnum.OK
try {
if (!Config.HANDLERS_DISABLED) {
const notificationStatus = Notification.isConnected()
if (!notificationStatus) {
throw new Error('Not connected!')
}
}
status = await Producer.isConnected()
status = status === Producer.stateList.PENDING ? statusEnum.OK : status
} catch (err) {
Logger.isDebugEnabled && Logger.debug(`getSubServiceHealthBroker failed with error: ${err.message}.`)
status = statusEnum.DOWN
}
return {
name: serviceName.broker,
status
}
}
/**
* @function getSubServiceHealthCentralLedger
*
* @description Gets the health of the central-ledger service
* @returns Promise<SubServiceHealth> The SubService health object for the central-ledger service
*/
const getSubServiceHealthCentralLedger = async () => {
const url = Config.ENDPOINT_HEALTH_URL
let status = statusEnum.DOWN
try {
const response = await axios.get(url)
const responseStatus = response.data && response.data.status
switch (responseStatus) {
case statusEnum.OK:
case statusEnum.DOWN:
status = responseStatus
break
default:
throw new Error(`getSubServiceHealthCentralLedger request failed with unknown status: ${response.status}`)
}
} catch (err) {
Logger.isDebugEnabled && Logger.debug(`getSubServiceHealthCentralLedger failed with error: ${err.message}.`)
status = statusEnum.DOWN
}
return {
name: serviceName.participantEndpointService,
status
}
}
module.exports = {
getSubServiceHealthBroker,
getSubServiceHealthCentralLedger
}