uptime-kuma/server/notification-providers/apprise.js

39 lines
1.1 KiB
JavaScript
Raw Normal View History

2021-09-07 07:42:46 -07:00
const NotificationProvider = require("./notification-provider");
const childProcess = require("child_process");
2021-09-07 07:42:46 -07:00
/**
* If you use an apprise backend that requires the notification title to
* be set (such as for example messaging a Zulip Stream), you can use this
* environment variable to configure the title.
*/
const { APPRISE_NOTIFICATION_TITLE } = process.env;
2021-09-07 07:42:46 -07:00
class Apprise extends NotificationProvider {
name = "apprise";
async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
let args = [ "-vv", "-b", msg, notification.appriseURL ];
if (APPRISE_NOTIFICATION_TITLE) {
args.push("-t");
args.push(APPRISE_NOTIFICATION_TITLE);
}
let s = childProcess.spawnSync("apprise", args);
2021-09-07 07:42:46 -07:00
let output = (s.stdout) ? s.stdout.toString() : "ERROR: maybe apprise not found";
if (output) {
if (! output.includes("ERROR")) {
return "Sent Successfully";
}
2022-04-13 09:30:32 -07:00
throw new Error(output);
2021-09-07 07:42:46 -07:00
} else {
return "No output from apprise";
}
}
}
module.exports = Apprise;