mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-09 23:24:07 -08:00
01210ce88d
Some checks are pending
Auto Test / auto-test (18, ARM64) (push) Blocked by required conditions
Auto Test / auto-test (18, macos-latest) (push) Blocked by required conditions
Auto Test / auto-test (18, ubuntu-latest) (push) Blocked by required conditions
Auto Test / auto-test (18, windows-latest) (push) Blocked by required conditions
Auto Test / auto-test (20.5, ARM64) (push) Blocked by required conditions
Auto Test / auto-test (20.5, macos-latest) (push) Blocked by required conditions
Auto Test / auto-test (20.5, ubuntu-latest) (push) Blocked by required conditions
Auto Test / auto-test (20.5, windows-latest) (push) Blocked by required conditions
Auto Test / armv7-simple-test (18, ARMv7) (push) Blocked by required conditions
Auto Test / armv7-simple-test (20, ARMv7) (push) Blocked by required conditions
Auto Test / check-linters (push) Waiting to run
Auto Test / e2e-test (push) Blocked by required conditions
CodeQL / Analyze (go) (push) Waiting to run
CodeQL / Analyze (javascript-typescript) (push) Waiting to run
Merge Conflict Labeler / Labeling (push) Waiting to run
json-yaml-validate / json-yaml-validate (push) Waiting to run
Co-authored-by: Frank Elsinga <[email protected]>
59 lines
1.8 KiB
JavaScript
59 lines
1.8 KiB
JavaScript
const { getMonitorRelativeURL } = require("../../src/util");
|
|
const { setting } = require("../util-server");
|
|
|
|
const NotificationProvider = require("./notification-provider");
|
|
const axios = require("axios");
|
|
|
|
class Pushover extends NotificationProvider {
|
|
name = "pushover";
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
|
|
const okMsg = "Sent Successfully.";
|
|
const url = "https://api.pushover.net/1/messages.json";
|
|
|
|
let data = {
|
|
"message": msg,
|
|
"user": notification.pushoveruserkey,
|
|
"token": notification.pushoverapptoken,
|
|
"sound": notification.pushoversounds,
|
|
"priority": notification.pushoverpriority,
|
|
"title": notification.pushovertitle,
|
|
"retry": "30",
|
|
"expire": "3600",
|
|
"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) {
|
|
data.device = notification.pushoverdevice;
|
|
}
|
|
if (notification.pushoverttl) {
|
|
data.ttl = notification.pushoverttl;
|
|
}
|
|
|
|
try {
|
|
if (heartbeatJSON == null) {
|
|
await axios.post(url, data);
|
|
return okMsg;
|
|
} else {
|
|
data.message += `\n<b>Time (${heartbeatJSON["timezone"]})</b>:${heartbeatJSON["localDateTime"]}`;
|
|
await axios.post(url, data);
|
|
return okMsg;
|
|
}
|
|
} catch (error) {
|
|
this.throwGeneralAxiosError(error);
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
module.exports = Pushover;
|