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

38 lines
999 B
JavaScript
Raw Normal View History

2021-09-07 14:42:46 +00:00
const NotificationProvider = require("./notification-provider");
const childProcessAsync = require("promisify-child-process");
2021-09-07 14:42:46 +00:00
class Apprise extends NotificationProvider {
name = "apprise";
/**
* @inheritdoc
*/
2021-09-07 14:42:46 +00:00
async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
const okMsg = "Sent Successfully.";
2022-05-02 15:16:08 +00:00
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",
});
2021-09-07 14:42:46 +00:00
2022-05-02 15:16:08 +00:00
const output = (s.stdout) ? s.stdout.toString() : "ERROR: maybe apprise not found";
2021-09-07 14:42:46 +00:00
if (output) {
if (! output.includes("ERROR")) {
return okMsg;
2021-09-07 14:42:46 +00:00
}
2022-04-13 16:30:32 +00:00
throw new Error(output);
2021-09-07 14:42:46 +00:00
} else {
return "No output from apprise";
}
}
}
module.exports = Apprise;