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

121 lines
4.8 KiB
JavaScript
Raw Normal View History

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