From 5a9c3ad353c57e098c1a683b673f840ecd31081b Mon Sep 17 00:00:00 2001 From: Humberto Evans Date: Tue, 13 Feb 2024 17:27:59 -0800 Subject: [PATCH] move try/catch into main control flow and more from code review comments --- server/notification-providers/heii-oncall.js | 39 ++++++++++---------- src/components/notifications/HeiiOnCall.vue | 10 ++--- src/lang/en.json | 4 +- 3 files changed, 26 insertions(+), 27 deletions(-) diff --git a/server/notification-providers/heii-oncall.js b/server/notification-providers/heii-oncall.js index 75ebf614..585fa138 100644 --- a/server/notification-providers/heii-oncall.js +++ b/server/notification-providers/heii-oncall.js @@ -17,19 +17,24 @@ class HeiiOnCall extends NotificationProvider { payload["url"] = baseURL + getMonitorRelativeURL(monitorJSON.id); } - if (!heartbeatJSON) { - // Testing or general notification like certificate expiry - payload["msg"] = msg; - return this.postNotification(notification, "alert", payload); - } + try { + if (!heartbeatJSON) { + // Testing or general notification like certificate expiry + payload["msg"] = msg; + return this.postNotification(notification, "alert", payload); + } - if (heartbeatJSON.status === DOWN) { - return this.postNotification(notification, "alert", payload); - } + if (heartbeatJSON.status === DOWN) { + return this.postNotification(notification, "alert", payload); + } - if (heartbeatJSON.status === UP) { - return this.postNotification(notification, "resolve", payload); + if (heartbeatJSON.status === UP) { + return this.postNotification(notification, "resolve", payload); + } + } catch (error) { + this.throwGeneralAxiosError(error); } + } /** @@ -49,15 +54,11 @@ class HeiiOnCall extends NotificationProvider { }; // Post to Heii On-Call Trigger https://heiioncall.com/docs#manual-triggers - try { - await axios.post( - `https://heiioncall.com/triggers/${notification.heiiOnCallTriggerId}/${action}`, - payload, - config - ); - } catch (error) { - this.throwGeneralAxiosError(error); - } + await axios.post( + `https://heiioncall.com/triggers/${notification.heiiOnCallTriggerId}/${action}`, + payload, + config + ); return "Sent Successfully"; } diff --git a/src/components/notifications/HeiiOnCall.vue b/src/components/notifications/HeiiOnCall.vue index 54c99134..7ae516c7 100644 --- a/src/components/notifications/HeiiOnCall.vue +++ b/src/components/notifications/HeiiOnCall.vue @@ -9,7 +9,7 @@ >
-
-
- - {{ $t("documentationOf", ["Heii On-Call"]) }} - -
+ + {{ $t("documentationOf", ["Heii On-Call"]) }} +