uptime-kuma/server/notification-providers/goalert.js

33 lines
959 B
JavaScript
Raw Normal View History

2022-08-23 17:52:54 +00:00
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,
};
2022-08-23 17:52:54 +00:00
if (heartbeatJSON["status"] === UP) {
parameters["action"] = closeAction;
}
try {
2022-08-24 04:16:20 +00:00
await axios.post(`${notification.goAlertBaseURL}/api/v2/generic/incoming`, {
2022-08-23 17:52:54 +00:00
params: parameters,
});
return okMsg;
} catch (error) {
let msg = (error.response.data) ? error.response.data : "Error without response";
throw new Error(msg);
}
}
}
module.exports = GoAlert;