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

26 lines
686 B
JavaScript
Raw Normal View History

2022-01-21 07:42:03 +00:00
const NotificationProvider = require("./notification-provider");
const axios = require("axios");
class TechulusPush extends NotificationProvider {
name = "PushByTechulus";
/**
* @inheritdoc
*/
2022-01-21 07:42:03 +00:00
async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
const okMsg = "Sent Successfully.";
2022-01-21 07:42:03 +00:00
try {
await axios.post(`https://push.techulus.com/api/v1/notify/${notification.pushAPIKey}`, {
"title": "Uptime-Kuma",
"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;