2022-01-21 07:42:03 +00:00
|
|
|
const NotificationProvider = require("./notification-provider");
|
|
|
|
const axios = require("axios");
|
|
|
|
|
|
|
|
class TechulusPush extends NotificationProvider {
|
|
|
|
|
|
|
|
name = "PushByTechulus";
|
|
|
|
|
|
|
|
async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
|
|
|
|
let okMsg = "Sent Successfully.";
|
|
|
|
|
|
|
|
try {
|
|
|
|
await axios.post(`https://push.techulus.com/api/v1/notify/${notification.pushAPIKey}`, {
|
|
|
|
"title": "Uptime-Kuma",
|
2022-01-21 09:42:08 +00:00
|
|
|
"body": msg,
|
2022-04-13 16:30:32 +00:00
|
|
|
});
|
2022-01-21 07:42:03 +00:00
|
|
|
return okMsg;
|
|
|
|
} catch (error) {
|
2022-04-13 16:30:32 +00:00
|
|
|
this.throwGeneralAxiosError(error);
|
2022-01-21 07:42:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = TechulusPush;
|