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

38 lines
1.2 KiB
JavaScript
Raw Normal View History

2021-09-07 07:42:46 -07: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 12:40:59 -07:00
let okMsg = "Sent Successfully.";
2021-09-07 07:42:46 -07:00
try {
2023-02-23 04:59:24 -08:00
let params = {
chat_id: notification.telegramChatID,
text: msg,
2023-02-24 00:54:58 -08:00
disable_notification: notification.telegramSendSilently ?? false,
protect_content: notification.telegramProtectContent ?? false,
};
2023-02-23 04:59:24 -08:00
if (notification.telegramMessageThreadID) {
params.message_thread_id = notification.telegramMessageThreadID;
}
2023-02-23 04:59:24 -08:00
2021-09-07 07:42:46 -07:00
await axios.get(`https://api.telegram.org/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-05-08 07:52:41 -07:00
if (error.response && error.response.data && error.response.data.description) {
throw new Error(error.response.data.description);
} else {
throw new Error(error.message);
}
2021-09-07 07:42:46 -07:00
}
}
}
module.exports = Telegram;