mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-10-01 01:25:45 -04:00
8a92054c2b
* Added JSDoc to eslint rules Signed-off-by: Matthew Nickson <mnickson@sidingsmedia.com> * Fixed JSDoc eslint errors Signed-off-by: Matthew Nickson <mnickson@sidingsmedia.com> * Update the check-linters workflow to Node.js 20 --------- Signed-off-by: Matthew Nickson <mnickson@sidingsmedia.com> Co-authored-by: Louis Lam <louislam@users.noreply.github.com>
41 lines
1.2 KiB
JavaScript
41 lines
1.2 KiB
JavaScript
const NotificationProvider = require("./notification-provider");
|
|
const axios = require("axios");
|
|
|
|
class Telegram extends NotificationProvider {
|
|
|
|
name = "telegram";
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
|
|
let okMsg = "Sent Successfully.";
|
|
|
|
try {
|
|
let params = {
|
|
chat_id: notification.telegramChatID,
|
|
text: msg,
|
|
disable_notification: notification.telegramSendSilently ?? false,
|
|
protect_content: notification.telegramProtectContent ?? false,
|
|
};
|
|
if (notification.telegramMessageThreadID) {
|
|
params.message_thread_id = notification.telegramMessageThreadID;
|
|
}
|
|
|
|
await axios.get(`https://api.telegram.org/bot${notification.telegramBotToken}/sendMessage`, {
|
|
params: params,
|
|
});
|
|
return okMsg;
|
|
|
|
} catch (error) {
|
|
if (error.response && error.response.data && error.response.data.description) {
|
|
throw new Error(error.response.data.description);
|
|
} else {
|
|
throw new Error(error.message);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
module.exports = Telegram;
|