2021-09-07 14:42:46 +00:00
|
|
|
const NotificationProvider = require("./notification-provider");
|
|
|
|
const axios = require("axios");
|
|
|
|
|
|
|
|
class Telegram extends NotificationProvider {
|
|
|
|
|
|
|
|
name = "telegram";
|
|
|
|
|
|
|
|
async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
|
2021-10-05 19:40:59 +00:00
|
|
|
let okMsg = "Sent Successfully.";
|
2021-09-07 14:42:46 +00:00
|
|
|
|
|
|
|
try {
|
|
|
|
await axios.get(`https://api.telegram.org/bot${notification.telegramBotToken}/sendMessage`, {
|
|
|
|
params: {
|
|
|
|
chat_id: notification.telegramChatID,
|
|
|
|
text: msg,
|
|
|
|
},
|
2022-04-13 16:30:32 +00:00
|
|
|
});
|
2021-09-07 14:42:46 +00:00
|
|
|
return okMsg;
|
|
|
|
|
|
|
|
} catch (error) {
|
2022-04-13 16:30:32 +00:00
|
|
|
let msg = (error.response.data.description) ? error.response.data.description : "Error without description";
|
|
|
|
throw new Error(msg);
|
2021-09-07 14:42:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = Telegram;
|