You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
645 B
24 lines
645 B
const NotificationProvider = require("./notification-provider");
|
|
const axios = require("axios");
|
|
|
|
class CallMeBot extends NotificationProvider {
|
|
name = "CallMeBot";
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
|
|
const okMsg = "Sent Successfully.";
|
|
try {
|
|
const url = new URL(notification.callMeBotEndpoint);
|
|
url.searchParams.set("text", msg);
|
|
await axios.get(url.toString());
|
|
return okMsg;
|
|
} catch (error) {
|
|
this.throwGeneralAxiosError(error);
|
|
}
|
|
}
|
|
}
|
|
|
|
module.exports = CallMeBot;
|