2021-09-07 07:42:46 -07:00
|
|
|
const NotificationProvider = require("./notification-provider");
|
2023-11-30 00:12:04 -08:00
|
|
|
const childProcessAsync = require("promisify-child-process");
|
2021-09-07 07:42:46 -07:00
|
|
|
|
|
|
|
class Apprise extends NotificationProvider {
|
|
|
|
|
|
|
|
name = "apprise";
|
|
|
|
|
2023-08-11 00:46:41 -07:00
|
|
|
/**
|
|
|
|
* @inheritdoc
|
|
|
|
*/
|
2021-09-07 07:42:46 -07:00
|
|
|
async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
|
2022-05-02 08:16:08 -07:00
|
|
|
const args = [ "-vv", "-b", msg, notification.appriseURL ];
|
2022-05-07 08:00:57 -07:00
|
|
|
if (notification.title) {
|
2022-05-02 08:00:31 -07:00
|
|
|
args.push("-t");
|
2022-05-07 08:00:57 -07:00
|
|
|
args.push(notification.title);
|
2022-05-02 08:00:31 -07:00
|
|
|
}
|
2023-12-13 12:54:34 -08:00
|
|
|
const s = await childProcessAsync.spawn("apprise", args, {
|
|
|
|
encoding: "utf8",
|
|
|
|
});
|
2021-09-07 07:42:46 -07:00
|
|
|
|
2022-05-02 08:16:08 -07:00
|
|
|
const output = (s.stdout) ? s.stdout.toString() : "ERROR: maybe apprise not found";
|
2021-09-07 07:42:46 -07:00
|
|
|
|
|
|
|
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;
|