mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-23 14:54:05 +00:00
set url to heii on call prod
This commit is contained in:
parent
93ac212aef
commit
e8fada9386
1 changed files with 14 additions and 9 deletions
|
@ -4,7 +4,7 @@ const { setting } = require("../util-server");
|
||||||
const NotificationProvider = require("./notification-provider");
|
const NotificationProvider = require("./notification-provider");
|
||||||
const axios = require("axios");
|
const axios = require("axios");
|
||||||
|
|
||||||
const heiiOnCallBaseUrl = "http://192.168.2.1:3005";
|
const heiiOnCallBaseUrl = "https://heiioncall.com";
|
||||||
|
|
||||||
class HeiiOnCall extends NotificationProvider {
|
class HeiiOnCall extends NotificationProvider {
|
||||||
name = "HeiiOnCall";
|
name = "HeiiOnCall";
|
||||||
|
@ -22,7 +22,7 @@ class HeiiOnCall extends NotificationProvider {
|
||||||
return this.postNotification(notification, "alert", payload);
|
return this.postNotification(notification, "alert", payload);
|
||||||
}
|
}
|
||||||
|
|
||||||
// If we can add url back to mintor to payload
|
// If we can, add url back to mintor to payload
|
||||||
const baseURL = await setting("primaryBaseURL");
|
const baseURL = await setting("primaryBaseURL");
|
||||||
if (baseURL && monitorJSON) {
|
if (baseURL && monitorJSON) {
|
||||||
payload["url"] = baseURL + getMonitorRelativeURL(monitorJSON.id);
|
payload["url"] = baseURL + getMonitorRelativeURL(monitorJSON.id);
|
||||||
|
@ -42,7 +42,7 @@ class HeiiOnCall extends NotificationProvider {
|
||||||
/**
|
/**
|
||||||
* Post to Heii On-Call
|
* Post to Heii On-Call
|
||||||
* @param {BeanModel} notification Message title
|
* @param {BeanModel} notification Message title
|
||||||
* @param {string} action Trigger Action (alert, resovle)
|
* @param {string} action Trigger action (alert, resovle)
|
||||||
* @param {object} payload Data for Heii On-Call
|
* @param {object} payload Data for Heii On-Call
|
||||||
* @returns {Promise<string>} Success message
|
* @returns {Promise<string>} Success message
|
||||||
*/
|
*/
|
||||||
|
@ -56,12 +56,17 @@ class HeiiOnCall extends NotificationProvider {
|
||||||
};
|
};
|
||||||
|
|
||||||
// Post to Heii On-Call Trigger https://heiioncall.com/docs#manual-triggers
|
// Post to Heii On-Call Trigger https://heiioncall.com/docs#manual-triggers
|
||||||
await axios.post(
|
try {
|
||||||
`${heiiOnCallBaseUrl}/triggers/${notification.heiiOnCallTriggerId}/${action}`,
|
await axios.post(
|
||||||
payload,
|
`${heiiOnCallBaseUrl}/triggers/${notification.heiiOnCallTriggerId}/${action}`,
|
||||||
config
|
payload,
|
||||||
);
|
config
|
||||||
return "Sent Successfully.";
|
);
|
||||||
|
} catch (error) {
|
||||||
|
this.throwGeneralAxiosError(error);
|
||||||
|
}
|
||||||
|
|
||||||
|
return "Heii On-Call post sent successfully.";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue