Fix linting

This commit is contained in:
niclas.koegl 2023-03-21 19:45:44 +01:00
parent 776a482a1d
commit d9558833fc
No known key found for this signature in database
GPG Key ID: 5C28FC26802C157A
3 changed files with 26 additions and 26 deletions

View File

@ -2,8 +2,8 @@ const NotificationProvider = require("./notification-provider");
const axios = require("axios");
const { UP, DOWN } = require("../../src/util");
const opsgenieAlertsUrlEU = "https://api.eu.opsgenie.com/v2/alerts"
const opsgenieAlertsUrlUS = "https://api.opsgenie.com/v2/alerts"
const opsgenieAlertsUrlEU = "https://api.eu.opsgenie.com/v2/alerts";
const opsgenieAlertsUrlUS = "https://api.opsgenie.com/v2/alerts";
let okMsg = "Sent Successfully.";
class Opsgenie extends NotificationProvider {
@ -28,7 +28,7 @@ class Opsgenie extends NotificationProvider {
break;
default:
opsgenieAlertsUrl = opsgenieAlertsUrlUS;
};
}
if (heartbeatJSON == null) {
let notificationTestAlias = "uptime-kuma-notification-test";
@ -39,8 +39,8 @@ class Opsgenie extends NotificationProvider {
"priority": "P5"
};
return this.post(notification, opsgenieAlertsUrl, data)
};
return this.post(notification, opsgenieAlertsUrl, data);
}
if (heartbeatJSON.status === DOWN) {
let data = {
@ -51,8 +51,8 @@ class Opsgenie extends NotificationProvider {
"priority": `P${priority}`
};
return this.post(notification, opsgenieAlertsUrl, data)
};
return this.post(notification, opsgenieAlertsUrl, data);
}
if (heartbeatJSON.status === UP) {
let opsgenieAlertsCloseUrl = `${opsgenieAlertsUrl}/${encodeURIComponent(monitorJSON.name)}/close?identifierType=alias`;
@ -60,8 +60,8 @@ class Opsgenie extends NotificationProvider {
"source": "Uptime Kuma",
};
return this.post(notification, opsgenieAlertsCloseUrl, data)
};
return this.post(notification, opsgenieAlertsCloseUrl, data);
}
} catch (error) {
this.throwGeneralAxiosError(error);
}
@ -85,12 +85,12 @@ class Opsgenie extends NotificationProvider {
let res = await axios.post(url, data, config);
if (res.status == null) {
return "Opsgenie notification failed with invalid response!";
};
}
if (res.status < 200 || res.status >= 300) {
return `Opsgenie notification failed with status code ${res.status}`;
};
}
return okMsg
return okMsg;
}
}

View File

@ -84,7 +84,7 @@ class Notification {
new Ntfy(),
new Octopush(),
new OneBot(),
new Opsgenie(),
new Opsgenie(),
new PagerDuty(),
new PagerTree(),
new PromoSMS(),

View File

@ -18,12 +18,12 @@
<label for="opsgenie-priority" class="form-label">{{ $t("Priority") }}</label>
<input id="opsgenie-priority" v-model="$parent.notification.opsgeniePriority" type="number" class="form-control" min="1" max="5" step="1">
</div>
<div class="form-text">
<span style="color: red;"><sup>*</sup></span>{{ $t("Required") }}
<i18n-t tag="p" keypath="aboutWebhooks" style="margin-top: 8px;">
<a href="https://docs.opsgenie.com/docs/alert-api" target="_blank">https://docs.opsgenie.com/docs/alert-api</a>
</i18n-t>
</div>
<div class="form-text">
<span style="color: red;"><sup>*</sup></span>{{ $t("Required") }}
<i18n-t tag="p" keypath="aboutWebhooks" style="margin-top: 8px;">
<a href="https://docs.opsgenie.com/docs/alert-api" target="_blank">https://docs.opsgenie.com/docs/alert-api</a>
</i18n-t>
</div>
</template>
<script>