|
|
@ -8,12 +8,19 @@ class Ntfy extends NotificationProvider {
|
|
|
|
async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
|
|
|
|
async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
|
|
|
|
let okMsg = "Sent Successfully.";
|
|
|
|
let okMsg = "Sent Successfully.";
|
|
|
|
try {
|
|
|
|
try {
|
|
|
|
await axios.post(`${notification.ntfyserverurl}`, {
|
|
|
|
let headers = {};
|
|
|
|
|
|
|
|
if (notification.ntfyusername.length > 0) {
|
|
|
|
|
|
|
|
headers = {
|
|
|
|
|
|
|
|
"Authorization": "Basic " + Buffer.from(notification.ntfyusername + ":" + notification.ntfypassword).toString("base64"),
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
let data = {
|
|
|
|
"topic": notification.ntfytopic,
|
|
|
|
"topic": notification.ntfytopic,
|
|
|
|
"message": msg,
|
|
|
|
"message": msg,
|
|
|
|
"priority": notification.ntfyPriority || 4,
|
|
|
|
"priority": notification.ntfyPriority || 4,
|
|
|
|
"title": "Uptime-Kuma",
|
|
|
|
"title": "Uptime-Kuma",
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
await axios.post(`${notification.ntfyserverurl}`, data, { headers: headers });
|
|
|
|
|
|
|
|
|
|
|
|
return okMsg;
|
|
|
|
return okMsg;
|
|
|
|
|
|
|
|
|
|
|
|