mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-01 12:10:40 +00:00
26 lines
700 B
JavaScript
26 lines
700 B
JavaScript
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 {
|
|
await axios.post(`${notification.ntfyserverurl}`, {
|
|
"topic": notification.ntfytopic,
|
|
"message": msg,
|
|
"priority": notification.ntfyPriority || 4,
|
|
"title": "Uptime-Kuma",
|
|
});
|
|
|
|
return okMsg;
|
|
|
|
} catch (error) {
|
|
this.throwGeneralAxiosError(error);
|
|
}
|
|
}
|
|
}
|
|
|
|
module.exports = Ntfy;
|