fixed formatting mistakes

This commit is contained in:
Frank Elsinga 2024-06-13 17:04:38 +02:00 committed by GitHub
parent c9132adfc7
commit 9f563adc1a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 6 additions and 9 deletions

View file

@ -48,7 +48,7 @@ class Discord extends NotificationProvider {
},
{
name: monitorJSON["type"] === "push" ? "Service Type" : "Service URL",
value: monitorJSON["type"] === "push" ? "Heartbeat" : address,
value: this.extractAdress(monitorJSON),
},
{
name: `Time (${heartbeatJSON["timezone"]})`,

View file

@ -21,13 +21,12 @@ class NotificationProvider {
/**
* Extracts the address from a monitor JSON object based on its type.
*
* @param {?object} monitorJSON Monitor details (For Up/Down only)
* @returns {string} The extracted address based on the monitor type.
*/
extractAdress(monitorJSON){
extractAdress(monitorJSON) {
if (!monitorJSON) {
return ""
return "";
}
switch (monitorJSON["type"]) {
case "push":
@ -41,7 +40,7 @@ class NotificationProvider {
if (monitorJSON["port"]) {
return monitorJSON["hostname"] + ":" + monitorJSON["port"];
}
return monitorJSON["hostname"]
return monitorJSON["hostname"];
default:
if (![ "https://", "http://", "" ].includes(monitorJSON["url"])) {
return monitorJSON["url"];

View file

@ -32,7 +32,7 @@ class SevenIO extends NotificationProvider {
return okMsg;
}
let address = extractAdress(monitorJSON);
let address = this.extractAdress(monitorJSON);
if (address !== "") {
address = `(${address}) `;
}

View file

@ -82,12 +82,10 @@ class ZohoCliq extends NotificationProvider {
return okMsg;
}
const payload = this._notificationPayloadFactory({
monitorMessage: heartbeatJSON.msg,
monitorName: monitorJSON.name,
monitorUrl: address,
monitorUrl: this.extractAdress(monitorJSON),
status: heartbeatJSON.status
});