uptime-kuma/server/notification-providers/techulus-push.js

27 lines
685 B
JavaScript
Raw Normal View History

2022-01-21 02:42:03 -05:00
const NotificationProvider = require("./notification-provider");
const axios = require("axios");
class TechulusPush extends NotificationProvider {
name = "PushByTechulus";
/**
* @inheritdoc
*/
2022-01-21 02:42:03 -05:00
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",
"body": msg,
2022-04-13 12:30:32 -04:00
});
2022-01-21 02:42:03 -05:00
return okMsg;
} catch (error) {
2022-04-13 12:30:32 -04:00
this.throwGeneralAxiosError(error);
2022-01-21 02:42:03 -05:00
}
}
}
module.exports = TechulusPush;