|
|
@ -1,3 +1,6 @@
|
|
|
|
|
|
|
|
const { getMonitorRelativeURL } = require("../../src/util");
|
|
|
|
|
|
|
|
const { setting } = require("../util-server");
|
|
|
|
|
|
|
|
|
|
|
|
const NotificationProvider = require("./notification-provider");
|
|
|
|
const NotificationProvider = require("./notification-provider");
|
|
|
|
const axios = require("axios");
|
|
|
|
const axios = require("axios");
|
|
|
|
|
|
|
|
|
|
|
@ -23,6 +26,12 @@ class Pushover extends NotificationProvider {
|
|
|
|
"html": 1,
|
|
|
|
"html": 1,
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const baseURL = await setting("primaryBaseURL");
|
|
|
|
|
|
|
|
if (baseURL && monitorJSON) {
|
|
|
|
|
|
|
|
data["url"] = baseURL + getMonitorRelativeURL(monitorJSON.id);
|
|
|
|
|
|
|
|
data["url_title"] = "Link to Monitor";
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (notification.pushoverdevice) {
|
|
|
|
if (notification.pushoverdevice) {
|
|
|
|
data.device = notification.pushoverdevice;
|
|
|
|
data.device = notification.pushoverdevice;
|
|
|
|
}
|
|
|
|
}
|
|
|
|