mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-15 01:54:10 -08:00
b287a25de7
Some checks failed
Auto Test / check-linters (push) Has been cancelled
CodeQL / Analyze (go) (push) Has been cancelled
CodeQL / Analyze (javascript-typescript) (push) Has been cancelled
Merge Conflict Labeler / Labeling (push) Has been cancelled
json-yaml-validate / json-yaml-validate (push) Has been cancelled
Auto Test / auto-test (18, ARM64) (push) Has been cancelled
Auto Test / auto-test (18, macos-latest) (push) Has been cancelled
Auto Test / auto-test (18, ubuntu-latest) (push) Has been cancelled
Auto Test / auto-test (18, windows-latest) (push) Has been cancelled
Auto Test / auto-test (20.5, ARM64) (push) Has been cancelled
Auto Test / auto-test (20.5, macos-latest) (push) Has been cancelled
Auto Test / auto-test (20.5, ubuntu-latest) (push) Has been cancelled
Auto Test / auto-test (20.5, windows-latest) (push) Has been cancelled
Auto Test / armv7-simple-test (18, ARMv7) (push) Has been cancelled
Auto Test / armv7-simple-test (20, ARMv7) (push) Has been cancelled
Auto Test / e2e-test (push) Has been cancelled
68 lines
2.2 KiB
JavaScript
68 lines
2.2 KiB
JavaScript
const NotificationProvider = require("./notification-provider");
|
|
const axios = require("axios");
|
|
const Slack = require("./slack");
|
|
const { getMonitorRelativeURL, DOWN } = require("../../src/util");
|
|
const { Settings } = require("../settings");
|
|
|
|
class RocketChat extends NotificationProvider {
|
|
name = "rocket.chat";
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
|
|
const okMsg = "Sent Successfully.";
|
|
|
|
try {
|
|
if (heartbeatJSON == null) {
|
|
let data = {
|
|
"text": msg,
|
|
"channel": notification.rocketchannel,
|
|
"username": notification.rocketusername,
|
|
"icon_emoji": notification.rocketiconemo,
|
|
};
|
|
await axios.post(notification.rocketwebhookURL, data);
|
|
return okMsg;
|
|
}
|
|
|
|
let data = {
|
|
"text": "Uptime Kuma Alert",
|
|
"channel": notification.rocketchannel,
|
|
"username": notification.rocketusername,
|
|
"icon_emoji": notification.rocketiconemo,
|
|
"attachments": [
|
|
{
|
|
"title": `Uptime Kuma Alert *Time (${heartbeatJSON["timezone"]})*\n${heartbeatJSON["localDateTime"]}`,
|
|
"text": "*Message*\n" + msg,
|
|
}
|
|
]
|
|
};
|
|
|
|
// Color
|
|
if (heartbeatJSON.status === DOWN) {
|
|
data.attachments[0].color = "#ff0000";
|
|
} else {
|
|
data.attachments[0].color = "#32cd32";
|
|
}
|
|
|
|
if (notification.rocketbutton) {
|
|
await Slack.deprecateURL(notification.rocketbutton);
|
|
}
|
|
|
|
const baseURL = await Settings.get("primaryBaseURL");
|
|
|
|
if (baseURL) {
|
|
data.attachments[0].title_link = baseURL + getMonitorRelativeURL(monitorJSON.id);
|
|
}
|
|
|
|
await axios.post(notification.rocketwebhookURL, data);
|
|
return okMsg;
|
|
} catch (error) {
|
|
this.throwGeneralAxiosError(error);
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
module.exports = RocketChat;
|