1
0
mirror of https://github.com/louislam/uptime-kuma.git synced 2025-01-24 03:48:40 +02:00

37 lines
1.1 KiB
JavaScript
Raw Normal View History

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