mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-10-31 19:50:40 +00:00
39 lines
1.2 KiB
JavaScript
39 lines
1.2 KiB
JavaScript
|
const NotificationProvider = require("./notification-provider");
|
||
|
const axios = require("axios");
|
||
|
|
||
|
const defaultNotificationService = "notify";
|
||
|
|
||
|
class HomeAssistant extends NotificationProvider {
|
||
|
name = "HomeAssistant";
|
||
|
|
||
|
async send(notification, message, monitor = null, heartbeat = null) {
|
||
|
const notificationService = notification?.notificationService || defaultNotificationService;
|
||
|
|
||
|
try {
|
||
|
await axios.post(
|
||
|
`${notification.homeAssistantUrl}/api/services/notify/${notificationService}`,
|
||
|
{
|
||
|
title: "Uptime Kuma",
|
||
|
message,
|
||
|
...(notificationService !== "persistent_notification" && { data: {
|
||
|
name: monitor?.name,
|
||
|
status: heartbeat?.status,
|
||
|
} }),
|
||
|
},
|
||
|
{
|
||
|
headers: {
|
||
|
Authorization: `Bearer ${notification.longLivedAccessToken}`,
|
||
|
"Content-Type": "application/json",
|
||
|
},
|
||
|
}
|
||
|
);
|
||
|
|
||
|
return "Sent Successfully.";
|
||
|
} catch (error) {
|
||
|
this.throwGeneralAxiosError(error);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports = HomeAssistant;
|