2021-09-07 10:42:46 -04:00
|
|
|
const NotificationProvider = require("./notification-provider");
|
2022-04-16 13:39:49 -04:00
|
|
|
const childProcess = require("child_process");
|
2021-09-07 10:42:46 -04:00
|
|
|
|
|
|
|
class Apprise extends NotificationProvider {
|
|
|
|
|
|
|
|
name = "apprise";
|
|
|
|
|
|
|
|
async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
|
2022-04-17 03:27:35 -04:00
|
|
|
let s = childProcess.spawnSync("apprise", [ "-vv", "-b", msg, notification.appriseURL ]);
|
2021-09-07 10:42:46 -04: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 12:30:32 -04:00
|
|
|
throw new Error(output);
|
2021-09-07 10:42:46 -04:00
|
|
|
} else {
|
|
|
|
return "No output from apprise";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = Apprise;
|