mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-10-01 01:25:45 -04:00
8a92054c2b
* Added JSDoc to eslint rules Signed-off-by: Matthew Nickson <mnickson@sidingsmedia.com> * Fixed JSDoc eslint errors Signed-off-by: Matthew Nickson <mnickson@sidingsmedia.com> * Update the check-linters workflow to Node.js 20 --------- Signed-off-by: Matthew Nickson <mnickson@sidingsmedia.com> Co-authored-by: Louis Lam <louislam@users.noreply.github.com>
46 lines
1.4 KiB
JavaScript
46 lines
1.4 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) {
|
|
let okMsg = "Sent Successfully.";
|
|
try {
|
|
await axios.post(`https://sctapi.ftqq.com/${notification.serverChanSendKey}.send`, {
|
|
"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;
|