uptime-kuma/server/notification-providers/telegram.js

37 lines
1.1 KiB
JavaScript
Raw Normal View History

2021-09-07 14:42:46 +00:00
const NotificationProvider = require("./notification-provider");
const axios = require("axios");
class Telegram extends NotificationProvider {
name = "telegram";
/**
* @inheritdoc
*/
2021-09-07 14:42:46 +00:00
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 = {
chat_id: notification.telegramChatID,
text: msg,
2023-02-24 08:54:58 +00:00
disable_notification: notification.telegramSendSilently ?? false,
protect_content: notification.telegramProtectContent ?? false,
};
2023-02-23 12:59:24 +00:00
if (notification.telegramMessageThreadID) {
params.message_thread_id = notification.telegramMessageThreadID;
}
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) {
this.throwGeneralAxiosError(error);
2021-09-07 14:42:46 +00:00
}
}
}
module.exports = Telegram;