mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-09 23:24:07 -08:00
implemented additional changes
This commit is contained in:
parent
7f0d3a3043
commit
2a556e714f
2
package-lock.json
generated
2
package-lock.json
generated
|
@ -74,7 +74,7 @@
|
|||
"socket.io": "~4.6.1",
|
||||
"socket.io-client": "~4.6.1",
|
||||
"socks-proxy-agent": "6.1.1",
|
||||
"sqlite3": "^5.1.7",
|
||||
"sqlite3": "~5.1.7",
|
||||
"tar": "~6.2.1",
|
||||
"tcp-ping": "~0.1.1",
|
||||
"thirty-two": "~1.0.2",
|
||||
|
|
|
@ -101,10 +101,11 @@ module.exports.statusPageSocketHandler = (socket) => {
|
|||
if (!statusPage) {
|
||||
throw new Error("No slug?");
|
||||
}
|
||||
|
||||
const config = await statusPage.toJSON();
|
||||
config.allowEditingCustomHtml = import.meta.env.UPTIME_KUMA_ALLOW_CUSTOM_HTML === '1';
|
||||
callback({
|
||||
ok: true,
|
||||
config: await statusPage.toJSON(),
|
||||
config,
|
||||
});
|
||||
} catch (error) {
|
||||
callback({
|
||||
|
@ -167,7 +168,9 @@ module.exports.statusPageSocketHandler = (socket) => {
|
|||
statusPage.show_certificate_expiry = config.showCertificateExpiry;
|
||||
statusPage.modified_date = R.isoDateTime();
|
||||
statusPage.google_analytics_tag_id = config.googleAnalyticsId;
|
||||
statusPage.custom_html = config.customHtml;
|
||||
if (process.env.UPTIME_KUMA_ALLOW_CUSTOM_HTML === "1"){
|
||||
statusPage.custom_html = config.customHtml;
|
||||
}
|
||||
|
||||
await R.store(statusPage);
|
||||
|
||||
|
|
|
@ -777,8 +777,8 @@
|
|||
"Custom Monitor Type": "Custom Monitor Type",
|
||||
"Google Analytics ID": "Google Analytics ID",
|
||||
"Custom HTML": "Custom HTML",
|
||||
"customHtmlEnvVar1": "The environment variable",
|
||||
"customHtmlEnvVar2": "must be set to",
|
||||
"customHtmlEnvVarDisabled": "environment variable {allow_custom_html} must be set to inject html to the head",
|
||||
"customHtmlEnvVarEnabled": "Because the environment variable {allow_custom_html} is set, arbitrary html can be injected into the head. Make sure to remove the environment variable after use",
|
||||
"Edit Tag": "Edit Tag",
|
||||
"Server Address": "Server Address",
|
||||
"Learn More": "Learn More",
|
||||
|
|
|
@ -107,10 +107,17 @@
|
|||
<!-- Custom HTML -->
|
||||
<div class="my-3">
|
||||
<div class="mb-1">{{ $t("Custom HTML") }}</div>
|
||||
<prism-editor v-model="config.customHtml" class="css-editor" :highlight="highlighter" line-numbers></prism-editor>
|
||||
<div class="form-text">
|
||||
{{ $t("customHtmlEnvVar1") }} <code>UPTIME_KUMA_ALLOW_CUSTOM_HTML</code> {{ $t("customHtmlEnvVar2") }} <code>1</code>.
|
||||
</div>
|
||||
<prism-editor v-model="config.customHtml" class="css-editor" :highlight="highlighter" line-numbers :readonly="!config.allowEditingCustomHtml"></prism-editor>
|
||||
<i18n-t v-if="config.allowEditingCustomHtml" tag="div" class="form-text" keypath="customHtmlEnvVarEnabled">
|
||||
<template #allow_custom_html>
|
||||
<code>UPTIME_KUMA_ALLOW_CUSTOM_HTML</code>
|
||||
</template>
|
||||
</i18n-t>
|
||||
<i18n-t v-else tag="div" class="form-text" keypath="customHtmlEnvVarDisabled">
|
||||
<template #allow_custom_html>
|
||||
<code>UPTIME_KUMA_ALLOW_CUSTOM_HTML=1</code>
|
||||
</template>
|
||||
</i18n-t>
|
||||
</div>
|
||||
|
||||
<div class="danger-zone">
|
||||
|
|
Loading…
Reference in a new issue