2021-09-07 07:42:46 -07:00
|
|
|
const NotificationProvider = require("./notification-provider");
|
|
|
|
const axios = require("axios");
|
|
|
|
|
|
|
|
class Telegram extends NotificationProvider {
|
|
|
|
name = "telegram";
|
|
|
|
|
2023-08-11 00:46:41 -07:00
|
|
|
/**
|
|
|
|
* @inheritdoc
|
|
|
|
*/
|
2021-09-07 07:42:46 -07:00
|
|
|
async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
|
2024-03-14 06:21:15 -07:00
|
|
|
const okMsg = "Sent Successfully.";
|
|
|
|
const url = "https://api.telegram.org";
|
2021-09-07 07:42:46 -07:00
|
|
|
|
|
|
|
try {
|
2023-02-23 04:59:24 -08:00
|
|
|
let params = {
|
2023-01-12 05:09:05 -08:00
|
|
|
chat_id: notification.telegramChatID,
|
|
|
|
text: msg,
|
2023-02-24 00:54:58 -08:00
|
|
|
disable_notification: notification.telegramSendSilently ?? false,
|
2023-01-12 05:09:05 -08:00
|
|
|
protect_content: notification.telegramProtectContent ?? false,
|
|
|
|
};
|
2023-02-23 04:59:24 -08:00
|
|
|
if (notification.telegramMessageThreadID) {
|
|
|
|
params.message_thread_id = notification.telegramMessageThreadID;
|
2023-01-12 05:09:05 -08:00
|
|
|
}
|
2023-02-23 04:59:24 -08:00
|
|
|
|
2024-03-14 06:21:15 -07:00
|
|
|
await axios.get(`${url}/bot${notification.telegramBotToken}/sendMessage`, {
|
2023-02-23 04:59:24 -08:00
|
|
|
params: params,
|
2022-04-13 09:30:32 -07:00
|
|
|
});
|
2021-09-07 07:42:46 -07:00
|
|
|
return okMsg;
|
|
|
|
|
|
|
|
} catch (error) {
|
2023-09-23 12:40:11 -07:00
|
|
|
this.throwGeneralAxiosError(error);
|
2021-09-07 07:42:46 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = Telegram;
|