uptime-kuma/server/notification-providers/apprise.js
Frank Elsinga 0f61d7ee1b
chore: enable formatting over the entire codebase in CI (#6655)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2026-01-09 02:10:36 +01:00

37 lines
993 B
JavaScript

const NotificationProvider = require("./notification-provider");
const childProcessAsync = require("promisify-child-process");
class Apprise extends NotificationProvider {
name = "apprise";
/**
* @inheritdoc
*/
async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
const okMsg = "Sent Successfully.";
const args = ["-vv", "-b", msg, notification.appriseURL];
if (notification.title) {
args.push("-t");
args.push(notification.title);
}
const s = await childProcessAsync.spawn("apprise", args, {
encoding: "utf8",
});
const output = s.stdout ? s.stdout.toString() : "ERROR: maybe apprise not found";
if (output) {
if (!output.includes("ERROR")) {
return okMsg;
}
throw new Error(output);
} else {
return "No output from apprise";
}
}
}
module.exports = Apprise;