uptime-kuma/server/notification-providers/goalert.js
2022-08-24 08:46:20 +04:30

33 lines
959 B
JavaScript

const NotificationProvider = require("./notification-provider");
const axios = require("axios");
const { UP } = require("../../src/util");
class GoAlert extends NotificationProvider {
name = "goalert";
async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
let okMsg = "Sent Successfully.";
let closeAction = "close";
let parameters = {
token: notification.goAlertToken,
summary: msg,
};
if (heartbeatJSON["status"] === UP) {
parameters["action"] = closeAction;
}
try {
await axios.post(`${notification.goAlertBaseURL}/api/v2/generic/incoming`, {
params: parameters,
});
return okMsg;
} catch (error) {
let msg = (error.response.data) ? error.response.data : "Error without response";
throw new Error(msg);
}
}
}
module.exports = GoAlert;