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

54 lines
1.5 KiB
JavaScript
Raw Normal View History

2021-09-07 14:42:46 +00:00
const NotificationProvider = require("./notification-provider");
const axios = require("axios");
const FormData = require("form-data");
class Webhook extends NotificationProvider {
name = "webhook";
async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
2021-10-05 19:40:59 +00:00
let okMsg = "Sent Successfully.";
2021-09-07 14:42:46 +00:00
try {
let data = {
heartbeat: heartbeatJSON,
monitor: monitorJSON,
msg,
};
let finalData;
let config = {
headers: {}
};
2021-09-07 14:42:46 +00:00
if (notification.webhookContentType === "form-data") {
finalData = new FormData();
finalData.append("data", JSON.stringify(data));
config.headers = finalData.getHeaders();
2021-09-07 14:42:46 +00:00
} else {
finalData = data;
}
if (notification.webhookAdditionalHeaders) {
try {
config.headers = {
...config.headers,
...JSON.parse(notification.webhookAdditionalHeaders)
};
} catch (err) {
2022-12-05 09:55:45 +00:00
throw "Additional Headers is not a valid JSON";
}
}
2022-04-13 16:30:32 +00:00
await axios.post(notification.webhookURL, finalData, config);
2021-09-07 14:42:46 +00:00
return okMsg;
} catch (error) {
2022-04-13 16:30:32 +00:00
this.throwGeneralAxiosError(error);
2021-09-07 14:42:46 +00:00
}
}
}
module.exports = Webhook;