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 {
|
2023-02-23 12:59:24 +00:00
|
|
|
let params = {
|
2023-01-12 13:09:05 +00:00
|
|
|
chat_id: notification.telegramChatID,
|
|
|
|
text: msg,
|
2023-02-24 08:54:58 +00:00
|
|
|
disable_notification: notification.telegramSendSilently ?? false,
|
2023-01-12 13:09:05 +00:00
|
|
|
protect_content: notification.telegramProtectContent ?? false,
|
|
|
|
};
|
2023-02-23 12:59:24 +00:00
|
|
|
if (notification.telegramMessageThreadID) {
|
|
|
|
params.message_thread_id = notification.telegramMessageThreadID;
|
2023-01-12 13:09:05 +00:00
|
|
|
}
|
2023-02-23 12:59:24 +00:00
|
|
|
|
2021-09-07 14:42:46 +00:00
|
|
|
await axios.get(`https://api.telegram.org/bot${notification.telegramBotToken}/sendMessage`, {
|
2023-02-23 12:59:24 +00:00
|
|
|
params: params,
|
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;
|