2021-09-07 10:42:46 -04:00
|
|
|
const NotificationProvider = require("./notification-provider");
|
|
|
|
const axios = require("axios");
|
|
|
|
const { DOWN, UP } = require("../../src/util");
|
|
|
|
|
|
|
|
class LunaSea extends NotificationProvider {
|
|
|
|
|
|
|
|
name = "lunasea";
|
|
|
|
|
2023-08-11 03:46:41 -04:00
|
|
|
/**
|
|
|
|
* @inheritdoc
|
|
|
|
*/
|
2021-09-07 10:42:46 -04:00
|
|
|
async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
|
2021-10-05 15:40:59 -04:00
|
|
|
let okMsg = "Sent Successfully.";
|
2023-02-08 15:08:25 -05:00
|
|
|
let lunaseaurl = "";
|
2023-02-28 10:47:35 -05:00
|
|
|
if (notification.lunaseaTarget === "user") {
|
|
|
|
lunaseaurl = "https://notify.lunasea.app/v1/custom/user/" + notification.lunaseaUserID;
|
2023-02-08 15:08:25 -05:00
|
|
|
} else {
|
2023-02-09 09:49:19 -05:00
|
|
|
lunaseaurl = "https://notify.lunasea.app/v1/custom/device/" + notification.lunaseaDevice;
|
2023-02-08 15:08:25 -05:00
|
|
|
}
|
2023-02-08 15:16:02 -05:00
|
|
|
|
2021-09-07 10:42:46 -04:00
|
|
|
try {
|
|
|
|
if (heartbeatJSON == null) {
|
|
|
|
let testdata = {
|
|
|
|
"title": "Uptime Kuma Alert",
|
2022-06-21 03:12:24 -04:00
|
|
|
"body": msg,
|
2022-04-13 12:30:32 -04:00
|
|
|
};
|
2023-02-08 15:08:25 -05:00
|
|
|
await axios.post(lunaseaurl, testdata);
|
2021-09-07 10:42:46 -04:00
|
|
|
return okMsg;
|
|
|
|
}
|
|
|
|
|
2022-04-17 03:43:03 -04:00
|
|
|
if (heartbeatJSON["status"] === DOWN) {
|
2021-09-07 10:42:46 -04:00
|
|
|
let downdata = {
|
|
|
|
"title": "UptimeKuma Alert: " + monitorJSON["name"],
|
2023-05-29 13:24:40 -04:00
|
|
|
"body": "[🔴 Down] " +
|
|
|
|
heartbeatJSON["msg"] +
|
|
|
|
`\nTime (${heartbeatJSON["timezone"]}): ${heartbeatJSON["localDateTime"]}`
|
2022-04-13 12:30:32 -04:00
|
|
|
};
|
2023-02-08 15:08:25 -05:00
|
|
|
await axios.post(lunaseaurl, downdata);
|
2021-09-07 10:42:46 -04:00
|
|
|
return okMsg;
|
|
|
|
}
|
|
|
|
|
2022-04-17 03:43:03 -04:00
|
|
|
if (heartbeatJSON["status"] === UP) {
|
2021-09-07 10:42:46 -04:00
|
|
|
let updata = {
|
|
|
|
"title": "UptimeKuma Alert: " + monitorJSON["name"],
|
2023-05-29 13:24:40 -04:00
|
|
|
"body": "[✅ Up] " +
|
|
|
|
heartbeatJSON["msg"] +
|
|
|
|
`\nTime (${heartbeatJSON["timezone"]}): ${heartbeatJSON["localDateTime"]}`
|
2022-04-13 12:30:32 -04:00
|
|
|
};
|
2023-02-08 15:08:25 -05:00
|
|
|
await axios.post(lunaseaurl, updata);
|
2021-09-07 10:42:46 -04:00
|
|
|
return okMsg;
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (error) {
|
2022-04-13 12:30:32 -04:00
|
|
|
this.throwGeneralAxiosError(error);
|
2021-09-07 10:42:46 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = LunaSea;
|