mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-09 23:24:07 -08:00
d2f71d11d6
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
52 lines
1.7 KiB
JavaScript
52 lines
1.7 KiB
JavaScript
const NotificationProvider = require("./notification-provider");
|
|
const axios = require("axios");
|
|
const { DOWN, UP } = require("../../src/util");
|
|
|
|
class ServerChan extends NotificationProvider {
|
|
name = "ServerChan";
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
|
|
const okMsg = "Sent Successfully.";
|
|
|
|
// serverchan3 requires sending via ft07.com
|
|
const matchResult = String(notification.serverChanSendKey).match(/^sctp(\d+)t/i);
|
|
const url = matchResult && matchResult[1]
|
|
? `https://${matchResult[1]}.push.ft07.com/send/${notification.serverChanSendKey}.send`
|
|
: `https://sctapi.ftqq.com/${notification.serverChanSendKey}.send`;
|
|
|
|
try {
|
|
await axios.post(url, {
|
|
"title": this.checkStatus(heartbeatJSON, monitorJSON),
|
|
"desp": msg,
|
|
});
|
|
|
|
return okMsg;
|
|
|
|
} catch (error) {
|
|
this.throwGeneralAxiosError(error);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Get the formatted title for message
|
|
* @param {?object} heartbeatJSON Heartbeat details (For Up/Down only)
|
|
* @param {?object} monitorJSON Monitor details (For Up/Down only)
|
|
* @returns {string} Formatted title
|
|
*/
|
|
checkStatus(heartbeatJSON, monitorJSON) {
|
|
let title = "UptimeKuma Message";
|
|
if (heartbeatJSON != null && heartbeatJSON["status"] === UP) {
|
|
title = "UptimeKuma Monitor Up " + monitorJSON["name"];
|
|
}
|
|
if (heartbeatJSON != null && heartbeatJSON["status"] === DOWN) {
|
|
title = "UptimeKuma Monitor Down " + monitorJSON["name"];
|
|
}
|
|
return title;
|
|
}
|
|
}
|
|
|
|
module.exports = ServerChan;
|