mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-09 23:24:07 -08:00
eca90a2b00
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
54 lines
1.7 KiB
JavaScript
54 lines
1.7 KiB
JavaScript
const NotificationProvider = require("./notification-provider");
|
|
const axios = require("axios");
|
|
const { setting } = require("../util-server");
|
|
const { getMonitorRelativeURL, UP, DOWN } = require("../../src/util");
|
|
|
|
class AlertNow extends NotificationProvider {
|
|
name = "AlertNow";
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
|
|
const okMsg = "Sent Successfully.";
|
|
|
|
try {
|
|
let textMsg = "";
|
|
let status = "open";
|
|
let eventType = "ERROR";
|
|
let eventId = new Date().toISOString().slice(0, 10).replace(/-/g, "");
|
|
|
|
if (heartbeatJSON && heartbeatJSON.status === UP) {
|
|
textMsg = `[${heartbeatJSON.name}] ✅ Application is back online`;
|
|
status = "close";
|
|
eventType = "INFO";
|
|
eventId += `_${heartbeatJSON.name.replace(/\s/g, "")}`;
|
|
} else if (heartbeatJSON && heartbeatJSON.status === DOWN) {
|
|
textMsg = `[${heartbeatJSON.name}] 🔴 Application went down`;
|
|
}
|
|
|
|
textMsg += ` - ${msg}`;
|
|
|
|
const baseURL = await setting("primaryBaseURL");
|
|
if (baseURL && monitorJSON) {
|
|
textMsg += ` >> ${baseURL + getMonitorRelativeURL(monitorJSON.id)}`;
|
|
}
|
|
|
|
const data = {
|
|
"summary": textMsg,
|
|
"status": status,
|
|
"event_type": eventType,
|
|
"event_id": eventId,
|
|
};
|
|
|
|
await axios.post(notification.alertNowWebhookURL, data);
|
|
return okMsg;
|
|
} catch (error) {
|
|
this.throwGeneralAxiosError(error);
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
module.exports = AlertNow;
|