2021-09-07 14:42:46 +00:00
|
|
|
const NotificationProvider = require("./notification-provider");
|
|
|
|
const axios = require("axios");
|
2021-10-07 09:39:58 +00:00
|
|
|
const { setSettings, setting } = require("../util-server");
|
2023-01-02 07:01:50 +00:00
|
|
|
const { getMonitorRelativeURL, UP } = require("../../src/util");
|
2021-09-07 14:42:46 +00:00
|
|
|
|
|
|
|
class Slack extends NotificationProvider {
|
|
|
|
|
|
|
|
name = "slack";
|
|
|
|
|
2021-10-07 09:39:58 +00:00
|
|
|
/**
|
|
|
|
* Deprecated property notification.slackbutton
|
|
|
|
* Set it as primary base url if this is not yet set.
|
2022-04-16 19:24:53 +00:00
|
|
|
* @param {string} url The primary base URL to use
|
2021-10-07 09:39:58 +00:00
|
|
|
*/
|
|
|
|
static async deprecateURL(url) {
|
|
|
|
let currentPrimaryBaseURL = await setting("primaryBaseURL");
|
|
|
|
|
|
|
|
if (!currentPrimaryBaseURL) {
|
|
|
|
console.log("Move the url to be the primary base URL");
|
|
|
|
await setSettings("general", {
|
|
|
|
primaryBaseURL: url,
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
console.log("Already there, no need to move the primary base URL");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-07 14:42:46 +00:00
|
|
|
async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
|
2021-10-05 19:40:59 +00:00
|
|
|
let okMsg = "Sent Successfully.";
|
2021-09-07 14:42:46 +00:00
|
|
|
try {
|
|
|
|
if (heartbeatJSON == null) {
|
|
|
|
let data = {
|
2021-10-07 09:39:58 +00:00
|
|
|
"text": msg,
|
2021-09-07 14:42:46 +00:00
|
|
|
"channel": notification.slackchannel,
|
|
|
|
"username": notification.slackusername,
|
|
|
|
"icon_emoji": notification.slackiconemo,
|
2021-10-07 09:39:58 +00:00
|
|
|
};
|
|
|
|
await axios.post(notification.slackwebhookURL, data);
|
2021-09-07 14:42:46 +00:00
|
|
|
return okMsg;
|
|
|
|
}
|
|
|
|
|
|
|
|
const time = heartbeatJSON["time"];
|
2021-10-13 18:47:23 +00:00
|
|
|
const textMsg = "Uptime Kuma Alert";
|
2021-09-07 14:42:46 +00:00
|
|
|
let data = {
|
2021-10-13 18:47:23 +00:00
|
|
|
"text": monitorJSON ? textMsg + `: ${monitorJSON.name}` : textMsg,
|
2021-09-07 14:42:46 +00:00
|
|
|
"channel": notification.slackchannel,
|
|
|
|
"username": notification.slackusername,
|
|
|
|
"icon_emoji": notification.slackiconemo,
|
2023-01-02 07:01:50 +00:00
|
|
|
"attachments": [
|
2021-09-07 14:42:46 +00:00
|
|
|
{
|
2023-01-02 07:01:50 +00:00
|
|
|
"color": (heartbeatJSON["status"] === UP) ? "#2eb886" : "#e01e5a",
|
|
|
|
"blocks": [
|
|
|
|
{
|
|
|
|
"type": "header",
|
|
|
|
"text": {
|
|
|
|
"type": "plain_text",
|
|
|
|
"text": "Uptime Kuma Alert",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "section",
|
|
|
|
"fields": [{
|
|
|
|
"type": "mrkdwn",
|
|
|
|
"text": "*Message*\n" + msg,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "mrkdwn",
|
|
|
|
"text": "*Time (UTC)*\n" + time,
|
|
|
|
}],
|
|
|
|
}
|
|
|
|
],
|
|
|
|
}
|
|
|
|
]
|
2021-10-07 09:39:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
if (notification.slackbutton) {
|
|
|
|
await Slack.deprecateURL(notification.slackbutton);
|
|
|
|
}
|
|
|
|
|
|
|
|
const baseURL = await setting("primaryBaseURL");
|
|
|
|
|
|
|
|
// Button
|
|
|
|
if (baseURL) {
|
2023-01-02 07:01:50 +00:00
|
|
|
data.attachments.forEach(element => {
|
|
|
|
element.blocks.push({
|
|
|
|
"type": "actions",
|
|
|
|
"elements": [{
|
|
|
|
"type": "button",
|
|
|
|
"text": {
|
|
|
|
"type": "plain_text",
|
|
|
|
"text": "Visit Uptime Kuma",
|
|
|
|
},
|
|
|
|
"value": "Uptime-Kuma",
|
|
|
|
"url": baseURL + getMonitorRelativeURL(monitorJSON.id),
|
|
|
|
}],
|
|
|
|
});
|
2021-10-07 09:39:58 +00:00
|
|
|
});
|
2021-09-07 14:42:46 +00:00
|
|
|
}
|
2021-10-07 09:39:58 +00:00
|
|
|
|
|
|
|
await axios.post(notification.slackwebhookURL, data);
|
2021-09-07 14:42:46 +00:00
|
|
|
return okMsg;
|
|
|
|
} catch (error) {
|
2021-10-07 09:39:58 +00:00
|
|
|
this.throwGeneralAxiosError(error);
|
2021-09-07 14:42:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = Slack;
|