2021-09-07 14:42:46 +00:00
|
|
|
const NotificationProvider = require("./notification-provider");
|
2022-04-16 17:39:49 +00:00
|
|
|
const childProcess = require("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
|
|
|
}
|
2022-05-02 15:16:08 +00:00
|
|
|
const s = childProcess.spawnSync("apprise", args);
|
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;
|