uptime-kuma/server/notification-providers/signal.js

28 lines
758 B
JavaScript
Raw Normal View History

2021-09-07 07:42:46 -07:00
const NotificationProvider = require("./notification-provider");
const axios = require("axios");
class Signal extends NotificationProvider {
name = "signal";
async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
2021-10-05 12:40:59 -07:00
let okMsg = "Sent Successfully.";
2021-09-07 07:42:46 -07:00
try {
let data = {
"message": msg,
"number": notification.signalNumber,
"recipients": notification.signalRecipients.replace(/\s/g, "").split(","),
};
let config = {};
2022-04-13 09:30:32 -07:00
await axios.post(notification.signalURL, data, config);
2021-09-07 07:42:46 -07:00
return okMsg;
} catch (error) {
2022-04-13 09:30:32 -07:00
this.throwGeneralAxiosError(error);
2021-09-07 07:42:46 -07:00
}
}
}
module.exports = Signal;