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

39 lines
1.1 KiB
JavaScript
Raw Normal View History

const NotificationProvider = require("./notification-provider");
const axios = require("axios");
class Ntfy extends NotificationProvider {
name = "ntfy";
async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
let okMsg = "Sent Successfully.";
try {
2022-07-19 08:57:52 +00:00
let headers = {};
2022-10-06 15:28:06 +00:00
if (notification.ntfyusername) {
2022-07-19 08:57:52 +00:00
headers = {
"Authorization": "Basic " + Buffer.from(notification.ntfyusername + ":" + notification.ntfypassword).toString("base64"),
};
}
let data = {
"topic": notification.ntfytopic,
"message": msg,
"priority": notification.ntfyPriority || 4,
"title": "Uptime-Kuma",
2022-07-19 08:57:52 +00:00
};
if (notification.ntfyIcon) {
data.icon = notification.ntfyIcon;
}
2022-07-19 08:57:52 +00:00
await axios.post(`${notification.ntfyserverurl}`, data, { headers: headers });
return okMsg;
} catch (error) {
this.throwGeneralAxiosError(error);
}
}
}
module.exports = Ntfy;