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

54 lines
1.8 KiB
JavaScript
Raw Normal View History

2021-09-07 14:42:46 +00:00
const NotificationProvider = require("./notification-provider");
const axios = require("axios");
const { DOWN, UP } = require("../../src/util");
class LunaSea extends NotificationProvider {
name = "lunasea";
async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
2021-10-05 19:40:59 +00:00
let okMsg = "Sent Successfully.";
let lunaseaurl = "";
if (notification.lunaseaTarget === "user") {
lunaseaurl = "https://notify.lunasea.app/v1/custom/user/" + notification.lunaseaUserID;
} else {
lunaseaurl = "https://notify.lunasea.app/v1/custom/device/" + notification.lunaseaDevice;
}
2023-02-08 20:16:02 +00:00
2021-09-07 14:42:46 +00:00
try {
if (heartbeatJSON == null) {
let testdata = {
"title": "Uptime Kuma Alert",
"body": msg,
2022-04-13 16:30:32 +00:00
};
await axios.post(lunaseaurl, testdata);
2021-09-07 14:42:46 +00:00
return okMsg;
}
2022-04-17 07:43:03 +00:00
if (heartbeatJSON["status"] === DOWN) {
2021-09-07 14:42:46 +00:00
let downdata = {
"title": "UptimeKuma Alert: " + monitorJSON["name"],
"body": "[🔴 Down] " + heartbeatJSON["msg"] + "\nTime (UTC): " + heartbeatJSON["time"],
2022-04-13 16:30:32 +00:00
};
await axios.post(lunaseaurl, downdata);
2021-09-07 14:42:46 +00:00
return okMsg;
}
2022-04-17 07:43:03 +00:00
if (heartbeatJSON["status"] === UP) {
2021-09-07 14:42:46 +00:00
let updata = {
"title": "UptimeKuma Alert: " + monitorJSON["name"],
"body": "[✅ Up] " + heartbeatJSON["msg"] + "\nTime (UTC): " + heartbeatJSON["time"],
2022-04-13 16:30:32 +00:00
};
await axios.post(lunaseaurl, updata);
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 = LunaSea;