mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-10-01 01:25:45 -04:00
24 lines
645 B
JavaScript
24 lines
645 B
JavaScript
|
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;
|