mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-13 17:14:21 -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
61 lines
1.7 KiB
JavaScript
61 lines
1.7 KiB
JavaScript
const NotificationProvider = require("./notification-provider");
|
|
const axios = require("axios");
|
|
const { DOWN } = require("../../src/util");
|
|
|
|
class Squadcast extends NotificationProvider {
|
|
name = "squadcast";
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
|
|
const okMsg = "Sent Successfully.";
|
|
|
|
try {
|
|
|
|
let config = {};
|
|
let data = {
|
|
message: msg,
|
|
description: "",
|
|
tags: {},
|
|
heartbeat: heartbeatJSON,
|
|
source: "uptime-kuma"
|
|
};
|
|
|
|
if (heartbeatJSON !== null) {
|
|
data.description = heartbeatJSON["msg"];
|
|
data.event_id = heartbeatJSON["monitorID"];
|
|
|
|
if (heartbeatJSON["status"] === DOWN) {
|
|
data.message = `${monitorJSON["name"]} is DOWN`;
|
|
data.status = "trigger";
|
|
} else {
|
|
data.message = `${monitorJSON["name"]} is UP`;
|
|
data.status = "resolve";
|
|
}
|
|
|
|
data.tags["AlertAddress"] = this.extractAddress(monitorJSON);
|
|
|
|
monitorJSON["tags"].forEach(tag => {
|
|
data.tags[tag["name"]] = {
|
|
value: tag["value"]
|
|
};
|
|
if (tag["color"] !== null) {
|
|
data.tags[tag["name"]]["color"] = tag["color"];
|
|
}
|
|
});
|
|
}
|
|
|
|
await axios.post(notification.squadcastWebhookURL, data, config);
|
|
return okMsg;
|
|
|
|
} catch (error) {
|
|
this.throwGeneralAxiosError(error);
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = Squadcast;
|