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

37 lines
1 KiB
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
let data = {
"title": notification?.pushTitle?.length ? notification.pushTitle : "Uptime-Kuma",
"body": msg,
"timeSensitive": notification.pushTimeSensitive ?? true,
};
if (notification.pushChannel) {
data.channel = notification.pushChannel;
}
if (notification.pushSound) {
data.sound = notification.pushSound;
}
2022-01-21 07:42:03 +00:00
try {
await axios.post(`https://push.techulus.com/api/v1/notify/${notification.pushAPIKey}`, data);
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;