uptime-kuma/server/notification-providers/zoho-cliq.js

117 lines
3.5 KiB
JavaScript
Raw Normal View History

2022-12-08 11:32:10 +00:00
const NotificationProvider = require("./notification-provider");
const axios = require("axios");
2022-12-08 11:53:02 +00:00
const { DOWN, UP } = require("../../src/util");
2022-12-08 11:32:10 +00:00
class ZohoCliq extends NotificationProvider {
name = "ZohoCliq";
/**
* Generate the message to send
* @param {const} status The status constant
* @param {string} monitorName Name of monitor
* @returns {string}
*/
_statusMessageFactory = (status, monitorName) => {
if (status === DOWN) {
return `🔴 Application [${monitorName}] went down\n`;
} else if (status === UP) {
return `✅ Application [${monitorName}] is back online\n`;
}
return "Notification\n";
};
/**
* Send the notification
* @param {string} webhookUrl URL to send the request to
* @param {Array} payload Payload generated by _notificationPayloadFactory
*/
2022-12-08 11:56:02 +00:00
_sendNotification = async (webhookUrl, payload) => {
await axios.post(webhookUrl, { text: payload.join("\n") });
2022-12-08 11:32:10 +00:00
};
/**
* Generate payload for notification
* @param {const} status The status of the monitor
* @param {string} monitorMessage Message to send
* @param {string} monitorName Name of monitor affected
* @param {string} monitorUrl URL of monitor affected
* @returns {Array}
*/
_notificationPayloadFactory = ({
2022-12-08 11:56:02 +00:00
status,
monitorMessage,
monitorName,
monitorUrl,
2022-12-08 11:41:05 +00:00
}) => {
2022-12-08 11:53:02 +00:00
const payload = [];
payload.push("### Uptime Kuma\n");
2022-12-08 11:32:10 +00:00
payload.push(this._statusMessageFactory(status, monitorName));
payload.push(`*Description:* ${monitorMessage}`);
if (monitorName) {
payload.push(`*Monitor:* ${monitorName}`);
}
if (monitorUrl && monitorUrl !== "https://") {
payload.push(`*URL:* [${monitorUrl}](${monitorUrl})`);
}
return payload;
};
/**
* Send a general notification
* @param {string} webhookUrl URL to send request to
* @param {string} msg Message to send
* @returns {Promise<void>}
*/
_handleGeneralNotification = (webhookUrl, msg) => {
const payload = this._notificationPayloadFactory({
monitorMessage: msg
});
return this._sendNotification(webhookUrl, payload);
};
async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
let okMsg = "Sent Successfully.";
try {
if (heartbeatJSON == null) {
await this._handleGeneralNotification(notification.webhookUrl, msg);
return okMsg;
}
2022-12-08 11:41:05 +00:00
let url;
2022-12-08 11:53:02 +00:00
switch (monitorJSON["type"]) {
2022-12-08 11:41:05 +00:00
case "http":
case "keywork":
url = monitorJSON["url"];
break;
case "docker":
url = monitorJSON["docker_host"];
break;
default:
url = monitorJSON["hostname"];
break;
}
2022-12-08 11:32:10 +00:00
const payload = this._notificationPayloadFactory({
monitorMessage: heartbeatJSON.msg,
monitorName: monitorJSON.name,
2022-12-08 11:41:05 +00:00
monitorUrl: url,
2022-12-08 11:53:02 +00:00
status: heartbeatJSON.status
2022-12-08 11:32:10 +00:00
});
await this._sendNotification(notification.webhookUrl, payload);
return okMsg;
2022-12-08 11:56:02 +00:00
} catch (error) {
2022-12-08 11:32:10 +00:00
this.throwGeneralAxiosError(error);
}
}
}
module.exports = ZohoCliq;