2021-09-07 15:42:46 +01:00
|
|
|
const NotificationProvider = require("./notification-provider");
|
|
|
|
const axios = require("axios");
|
|
|
|
|
|
|
|
class Pushy extends NotificationProvider {
|
|
|
|
|
|
|
|
name = "pushy";
|
|
|
|
|
|
|
|
async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
|
2021-10-05 20:40:59 +01:00
|
|
|
let okMsg = "Sent Successfully.";
|
2021-09-07 15:42:46 +01:00
|
|
|
|
|
|
|
try {
|
|
|
|
await axios.post(`https://api.pushy.me/push?api_key=${notification.pushyAPIKey}`, {
|
|
|
|
"to": notification.pushyToken,
|
|
|
|
"data": {
|
|
|
|
"message": "Uptime-Kuma"
|
|
|
|
},
|
|
|
|
"notification": {
|
|
|
|
"body": msg,
|
|
|
|
"badge": 1,
|
|
|
|
"sound": "ping.aiff"
|
|
|
|
}
|
2022-04-13 17:30:32 +01:00
|
|
|
});
|
2021-09-07 15:42:46 +01:00
|
|
|
return okMsg;
|
|
|
|
} catch (error) {
|
2022-04-13 17:30:32 +01:00
|
|
|
this.throwGeneralAxiosError(error);
|
2021-09-07 15:42:46 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = Pushy;
|