mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-10-01 01:25:45 -04:00
8a92054c2b
* Added JSDoc to eslint rules Signed-off-by: Matthew Nickson <mnickson@sidingsmedia.com> * Fixed JSDoc eslint errors Signed-off-by: Matthew Nickson <mnickson@sidingsmedia.com> * Update the check-linters workflow to Node.js 20 --------- Signed-off-by: Matthew Nickson <mnickson@sidingsmedia.com> Co-authored-by: Louis Lam <louislam@users.noreply.github.com>
42 lines
1.3 KiB
JavaScript
42 lines
1.3 KiB
JavaScript
const NotificationProvider = require("./notification-provider");
|
|
const axios = require("axios");
|
|
|
|
const defaultNotificationService = "notify";
|
|
|
|
class HomeAssistant extends NotificationProvider {
|
|
name = "HomeAssistant";
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
async send(notification, message, monitor = null, heartbeat = null) {
|
|
const notificationService = notification?.notificationService || defaultNotificationService;
|
|
|
|
try {
|
|
await axios.post(
|
|
`${notification.homeAssistantUrl.trim().replace(/\/*$/, "")}/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;
|