2021-09-07 14:42:46 +00:00
|
|
|
const NotificationProvider = require("./notification-provider");
|
2023-11-30 08:12:04 +00:00
|
|
|
const childProcessAsync = require("promisify-child-process");
|
2021-09-07 14:42:46 +00:00
|
|
|
|
|
|
|
class Apprise extends NotificationProvider {
|
|
|
|
|
|
|
|
name = "apprise";
|
|
|
|
|
|
|
|
async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
|
2022-05-02 15:16:08 +00:00
|
|
|
const args = [ "-vv", "-b", msg, notification.appriseURL ];
|
2022-05-07 15:00:57 +00:00
|
|
|
if (notification.title) {
|
2022-05-02 15:00:31 +00:00
|
|
|
args.push("-t");
|
2022-05-07 15:00:57 +00:00
|
|
|
args.push(notification.title);
|
2022-05-02 15:00:31 +00:00
|
|
|
}
|
2023-12-13 20:54:34 +00:00
|
|
|
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 "Sent Successfully";
|
|
|
|
}
|
|
|
|
|
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;
|