mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-09 23:24:07 -08:00
019702f8e5
Some checks are pending
Auto Test / auto-test (18, ARM64) (push) Blocked by required conditions
Auto Test / auto-test (18, macos-latest) (push) Blocked by required conditions
Auto Test / auto-test (18, ubuntu-latest) (push) Blocked by required conditions
Auto Test / auto-test (18, windows-latest) (push) Blocked by required conditions
Auto Test / auto-test (20, ARM64) (push) Blocked by required conditions
Auto Test / auto-test (20, macos-latest) (push) Blocked by required conditions
Auto Test / auto-test (20, ubuntu-latest) (push) Blocked by required conditions
Auto Test / auto-test (20, windows-latest) (push) Blocked by required conditions
Auto Test / armv7-simple-test (18, ARMv7) (push) Waiting to run
Auto Test / armv7-simple-test (20, ARMv7) (push) Waiting to run
Auto Test / check-linters (push) Waiting to run
Auto Test / e2e-test (push) Waiting to run
CodeQL / Analyze (go) (push) Waiting to run
CodeQL / Analyze (javascript-typescript) (push) Waiting to run
Merge Conflict Labeler / Labeling (push) Waiting to run
json-yaml-validate / json-yaml-validate (push) Waiting to run
121 lines
4.8 KiB
JavaScript
121 lines
4.8 KiB
JavaScript
const NotificationProvider = require("./notification-provider");
|
|
const axios = require("axios");
|
|
const { DOWN, UP } = require("../../src/util");
|
|
|
|
class Discord extends NotificationProvider {
|
|
name = "discord";
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
|
|
const okMsg = "Sent Successfully.";
|
|
|
|
try {
|
|
const discordDisplayName = notification.discordUsername || "Uptime Kuma";
|
|
const webhookUrl = new URL(notification.discordWebhookUrl);
|
|
if (notification.discordChannelType === "postToThread") {
|
|
webhookUrl.searchParams.append("thread_id", notification.threadId);
|
|
}
|
|
|
|
// If heartbeatJSON is null, assume we're testing.
|
|
if (heartbeatJSON == null) {
|
|
let discordtestdata = {
|
|
username: discordDisplayName,
|
|
content: msg,
|
|
};
|
|
|
|
if (notification.discordChannelType === "createNewForumPost") {
|
|
discordtestdata.thread_name = notification.postName;
|
|
}
|
|
|
|
await axios.post(webhookUrl.toString(), discordtestdata);
|
|
return okMsg;
|
|
}
|
|
|
|
// If heartbeatJSON is not null, we go into the normal alerting loop.
|
|
if (heartbeatJSON["status"] === DOWN) {
|
|
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",
|
|
value: this.extractAddress(monitorJSON),
|
|
},
|
|
{
|
|
name: `Time (${heartbeatJSON["timezone"]})`,
|
|
value: heartbeatJSON["localDateTime"],
|
|
},
|
|
{
|
|
name: "Error",
|
|
value: heartbeatJSON["msg"] == null ? "N/A" : heartbeatJSON["msg"],
|
|
},
|
|
],
|
|
}],
|
|
};
|
|
if (notification.discordChannelType === "createNewForumPost") {
|
|
discorddowndata.thread_name = notification.postName;
|
|
}
|
|
if (notification.discordPrefixMessage) {
|
|
discorddowndata.content = notification.discordPrefixMessage;
|
|
}
|
|
|
|
await axios.post(webhookUrl.toString(), discorddowndata);
|
|
return okMsg;
|
|
|
|
} else if (heartbeatJSON["status"] === UP) {
|
|
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.extractAddress(monitorJSON),
|
|
},
|
|
{
|
|
name: `Time (${heartbeatJSON["timezone"]})`,
|
|
value: heartbeatJSON["localDateTime"],
|
|
},
|
|
{
|
|
name: "Ping",
|
|
value: heartbeatJSON["ping"] == null ? "N/A" : heartbeatJSON["ping"] + " ms",
|
|
},
|
|
],
|
|
}],
|
|
};
|
|
|
|
if (notification.discordChannelType === "createNewForumPost") {
|
|
discordupdata.thread_name = notification.postName;
|
|
}
|
|
|
|
if (notification.discordPrefixMessage) {
|
|
discordupdata.content = notification.discordPrefixMessage;
|
|
}
|
|
|
|
await axios.post(webhookUrl.toString(), discordupdata);
|
|
return okMsg;
|
|
}
|
|
} catch (error) {
|
|
this.throwGeneralAxiosError(error);
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = Discord;
|