Apply suggestions from code review

Co-authored-by: Frank Elsinga <frank@elsinga.de>
pull/4485/head
Humberto Evans 3 months ago committed by GitHub
parent 673f9a7744
commit 4cdc8f344b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -3,9 +3,6 @@ const { setting } = require("../util-server");
const NotificationProvider = require("./notification-provider");
const axios = require("axios");
const heiiOnCallBaseUrl = "https://heiioncall.com";
class HeiiOnCall extends NotificationProvider {
name = "HeiiOnCall";
@ -13,28 +10,24 @@ class HeiiOnCall extends NotificationProvider {
* @inheritdoc
*/
async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
// Payload to Heii On-Call is the entire heartbat JSON
const payload = heartbeatJSON ? heartbeatJSON : {};
const payload = heartbeatJSON || {};
// If we can, add url back to monitor to payload
const baseURL = await setting("primaryBaseURL");
if (baseURL && monitorJSON) {
payload["url"] = baseURL + getMonitorRelativeURL(monitorJSON.id);
}
if (!heartbeatJSON) {
// No heartbeatJSON. Could be test button, but not necessarily. Just pull msg into payload.
// Testing or general notification like certificate expiry
payload["msg"] = msg;
return this.postNotification(notification, "alert", payload);
}
if (heartbeatJSON.status === DOWN) {
// Monitor is DOWN, alert on Heii On-Call
return this.postNotification(notification, "alert", payload);
}
if (heartbeatJSON.status === UP) {
// Monitor is UP, resolve on Heii On-Call
return this.postNotification(notification, "resolve", payload);
}
}
@ -58,7 +51,7 @@ class HeiiOnCall extends NotificationProvider {
// Post to Heii On-Call Trigger https://heiioncall.com/docs#manual-triggers
try {
await axios.post(
`${heiiOnCallBaseUrl}/triggers/${notification.heiiOnCallTriggerId}/${action}`,
`https://heiioncall.com/triggers/${notification.heiiOnCallTriggerId}/${action}`,
payload,
config
);
@ -66,7 +59,7 @@ class HeiiOnCall extends NotificationProvider {
this.throwGeneralAxiosError(error);
}
return "Heii On-Call post sent successfully.";
return "Sent Successfully";
}
}

@ -19,7 +19,7 @@
</div>
<div class="form-text">
<i18n-t tag="p" keypath="wayToGetHeiiOnCallDetails" style="margin-top: 8px;">
<a href="https://heiioncall.com/docs" target="_blank">Heii On-Call Documentation</a>
<a href="https://heiioncall.com/docs" target="_blank">{{ $t("documentationOf", ["Heii On-Call"]) }}</a>
</i18n-t>
</div>
</template>

@ -885,5 +885,5 @@
"Browser Screenshot": "Browser Screenshot",
"What is a Remote Browser?": "What is a Remote Browser?",
"Trigger ID": "Trigger ID",
"wayToGetHeiiOnCallDetails": "To get a Heii On-Call Tigger ID and Api Token visit: {0}"
"wayToGetHeiiOnCallDetails": "How to get the Tigger ID and API Keys is explained in the {documentation}"
}

Loading…
Cancel
Save