2021-09-07 14:42:46 +00:00
|
|
|
const NotificationProvider = require("./notification-provider");
|
|
|
|
const axios = require("axios");
|
|
|
|
const { DOWN, UP } = require("../../src/util");
|
|
|
|
|
|
|
|
class Discord extends NotificationProvider {
|
|
|
|
name = "discord";
|
|
|
|
|
2023-08-11 07:46:41 +00:00
|
|
|
/**
|
|
|
|
* @inheritdoc
|
|
|
|
*/
|
2021-09-07 14:42:46 +00:00
|
|
|
async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
|
2024-03-14 13:21:15 +00:00
|
|
|
const okMsg = "Sent Successfully.";
|
2021-09-07 14:42:46 +00:00
|
|
|
|
|
|
|
try {
|
|
|
|
const discordDisplayName = notification.discordUsername || "Uptime Kuma";
|
2024-05-19 19:14:13 +00:00
|
|
|
const webhookUrl = new URL(notification.discordWebhookUrl);
|
|
|
|
if (notification.discordChannelType === "postToThread") {
|
|
|
|
webhookUrl.searchParams.append("thread_id", notification.threadId);
|
|
|
|
}
|
2021-09-07 14:42:46 +00:00
|
|
|
|
|
|
|
// If heartbeatJSON is null, assume we're testing.
|
|
|
|
if (heartbeatJSON == null) {
|
|
|
|
let discordtestdata = {
|
|
|
|
username: discordDisplayName,
|
|
|
|
content: msg,
|
2022-04-13 16:30:32 +00:00
|
|
|
};
|
2024-05-19 19:14:13 +00:00
|
|
|
|
|
|
|
if (notification.discordChannelType === "createNewForumPost") {
|
|
|
|
discordtestdata.thread_name = notification.postName;
|
|
|
|
}
|
|
|
|
|
|
|
|
await axios.post(webhookUrl.toString(), discordtestdata);
|
2021-09-07 14:42:46 +00:00
|
|
|
return okMsg;
|
|
|
|
}
|
|
|
|
|
2024-10-10 01:35:26 +00:00
|
|
|
const address = this.extractAddress(monitorJSON);
|
|
|
|
|
2024-10-09 22:03:48 +00:00
|
|
|
const embedFields = [
|
|
|
|
{
|
|
|
|
name: "Service Name",
|
|
|
|
value: monitorJSON["name"],
|
|
|
|
},
|
2024-10-10 01:35:26 +00:00
|
|
|
...((address !== "" && address !== monitorJSON["hostname"]) ? [{
|
|
|
|
name: "Service URL",
|
|
|
|
value: address
|
|
|
|
}] : []),
|
2024-10-09 22:03:48 +00:00
|
|
|
{
|
|
|
|
name: `Time (${heartbeatJSON["timezone"]})`,
|
|
|
|
value: heartbeatJSON["localDateTime"],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Error",
|
2024-10-10 00:50:57 +00:00
|
|
|
value: msg,
|
2024-10-09 22:03:48 +00:00
|
|
|
},
|
|
|
|
];
|
|
|
|
|
2021-09-07 14:42:46 +00:00
|
|
|
// If heartbeatJSON is not null, we go into the normal alerting loop.
|
2022-04-17 07:43:03 +00:00
|
|
|
if (heartbeatJSON["status"] === DOWN) {
|
2021-09-07 14:42:46 +00:00
|
|
|
let discorddowndata = {
|
|
|
|
username: discordDisplayName,
|
|
|
|
embeds: [{
|
|
|
|
title: "❌ Your service " + monitorJSON["name"] + " went down. ❌",
|
|
|
|
color: 16711680,
|
|
|
|
timestamp: heartbeatJSON["time"],
|
2024-10-09 22:03:48 +00:00
|
|
|
fields: embedFields,
|
2021-09-07 14:42:46 +00:00
|
|
|
}],
|
2022-04-13 16:30:32 +00:00
|
|
|
};
|
2024-05-19 19:14:13 +00:00
|
|
|
if (notification.discordChannelType === "createNewForumPost") {
|
|
|
|
discorddowndata.thread_name = notification.postName;
|
|
|
|
}
|
2021-09-12 15:54:12 +00:00
|
|
|
if (notification.discordPrefixMessage) {
|
|
|
|
discorddowndata.content = notification.discordPrefixMessage;
|
|
|
|
}
|
|
|
|
|
2024-05-19 19:14:13 +00:00
|
|
|
await axios.post(webhookUrl.toString(), discorddowndata);
|
2021-09-07 14:42:46 +00:00
|
|
|
return okMsg;
|
|
|
|
|
2022-04-17 07:43:03 +00:00
|
|
|
} else if (heartbeatJSON["status"] === UP) {
|
2021-09-07 14:42:46 +00:00
|
|
|
let discordupdata = {
|
|
|
|
username: discordDisplayName,
|
|
|
|
embeds: [{
|
|
|
|
title: "✅ Your service " + monitorJSON["name"] + " is up! ✅",
|
|
|
|
color: 65280,
|
|
|
|
timestamp: heartbeatJSON["time"],
|
2024-10-09 22:03:48 +00:00
|
|
|
fields: embedFields,
|
2021-09-07 14:42:46 +00:00
|
|
|
}],
|
2022-04-13 16:30:32 +00:00
|
|
|
};
|
2021-09-12 15:54:12 +00:00
|
|
|
|
2024-05-19 19:14:13 +00:00
|
|
|
if (notification.discordChannelType === "createNewForumPost") {
|
|
|
|
discordupdata.thread_name = notification.postName;
|
|
|
|
}
|
|
|
|
|
2021-09-12 15:54:12 +00:00
|
|
|
if (notification.discordPrefixMessage) {
|
|
|
|
discordupdata.content = notification.discordPrefixMessage;
|
|
|
|
}
|
|
|
|
|
2024-05-19 19:14:13 +00:00
|
|
|
await axios.post(webhookUrl.toString(), discordupdata);
|
2021-09-07 14:42:46 +00:00
|
|
|
return okMsg;
|
|
|
|
}
|
|
|
|
} catch (error) {
|
2022-04-13 16:30:32 +00:00
|
|
|
this.throwGeneralAxiosError(error);
|
2021-09-07 14:42:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = Discord;
|