uptime-kuma/server/notification-providers/goalert.js
Muhammed Hussein Karimi d44663c57c provider name fix
2022-08-24 09:37:15 +04:30

34 lines
999 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";
console.log(error)
throw new Error(msg);
}
}
}
module.exports = GoAlert;