Configurator

This commit is contained in:
binwiederhier
2026-03-08 19:32:54 -04:00
parent 2b36ad9eb9
commit 612afb1435
3 changed files with 352 additions and 301 deletions

View File

@@ -141,52 +141,61 @@ Use this interactive tool to build your ntfy configuration. Select options below
<div id="config-generator-app">
<div id="cg-left">
<div class="cg-section">
<div class="cg-section-header">Basic Setup</div>
<div class="cg-section-body">
<div class="cg-field">
<label>Base URL</label>
<input type="text" data-key="base-url" placeholder="https://ntfy.example.com">
<div class="cg-wizard">
<div class="cg-wizard-step">
<label class="cg-wizard-label">What's your ntfy service URL?</label>
<input type="text" data-key="base-url" placeholder="https://ntfy.example.com" class="cg-wizard-input">
</div>
<div class="cg-field">
<label>Listen address</label>
<input type="text" data-key="listen-http" placeholder=":80">
</div>
<div class="cg-checkbox">
<input type="checkbox" data-key="behind-proxy" id="cg-behind-proxy">
<label for="cg-behind-proxy">Behind a proxy (nginx, Apache, etc.)</label>
<div class="cg-wizard-step">
<label class="cg-wizard-label">Are you running ntfy behind a proxy?</label>
<div class="cg-wizard-toggle">
<label><input type="checkbox" data-key="behind-proxy" id="cg-behind-proxy"> Yes, behind nginx/Apache/Caddy</label>
</div>
</div>
<div class="cg-wizard-step">
<label class="cg-wizard-label">Is this an open server or a private server?</label>
<div class="cg-radio-group">
<label><input type="radio" name="cg-server-type" value="open" checked> Open (anyone can read/write)</label>
<label><input type="radio" name="cg-server-type" value="private"> Private (requires authentication)</label>
</div>
<div class="cg-section">
<div class="cg-section-header">Database</div>
<div class="cg-section-body">
</div>
<div class="cg-wizard-step">
<label class="cg-wizard-label">Which features do you want to enable?</label>
<div class="cg-feature-grid">
<label><input type="checkbox" id="cg-feat-cache"> Persistent message cache</label>
<label><input type="checkbox" id="cg-feat-attach"> Attachments</label>
<label><input type="checkbox" id="cg-feat-webpush"> Web push</label>
<label><input type="checkbox" id="cg-feat-smtp-out"> Email notifications (outgoing)</label>
<label><input type="checkbox" id="cg-feat-smtp-in"> Email publishing (incoming)</label>
<label><input type="checkbox" id="cg-feat-upstream"> Upstream server (iOS push)</label>
<label><input type="checkbox" id="cg-feat-metrics"> Prometheus metrics</label>
</div>
</div>
<div class="cg-wizard-step" id="cg-wizard-db" style="display:none">
<label class="cg-wizard-label">Which database backend would you like to use?</label>
<div class="cg-radio-group">
<label><input type="radio" name="cg-db-type" value="sqlite" checked> SQLite</label>
<label><input type="radio" name="cg-db-type" value="postgres"> PostgreSQL</label>
</div>
<div id="cg-sqlite-fields">
</div>
</div>
<div id="cg-details">
<div class="cg-detail-section" id="cg-detail-basic">
<div class="cg-detail-heading">Server</div>
<div class="cg-field">
<label>Cache file</label>
<input type="text" data-key="cache-file" placeholder="/var/cache/ntfy/cache.db">
<label>Listen address</label>
<input type="text" data-key="listen-http" placeholder=":80">
</div>
</div>
<div id="cg-postgres-fields" style="display:none">
<div class="cg-detail-section" id="cg-detail-db-postgres" style="display:none">
<div class="cg-detail-heading">Database (PostgreSQL)</div>
<div class="cg-field">
<label>Database URL</label>
<input type="text" data-key="database-url" placeholder="postgres://user:pass@host:5432/ntfy">
</div>
</div>
</div>
</div>
<div class="cg-section">
<div class="cg-section-header">Access Control</div>
<div class="cg-section-body">
<div class="cg-checkbox">
<input type="checkbox" id="cg-auth-toggle" data-toggle="cg-auth-fields">
<label for="cg-auth-toggle">Enable access control</label>
</div>
<div class="cg-conditional" id="cg-auth-fields">
<div class="cg-detail-section" id="cg-detail-auth" style="display:none">
<div class="cg-detail-heading">Access Control</div>
<div class="cg-field">
<label>Auth file</label>
<input type="text" data-key="auth-file" placeholder="/var/lib/ntfy/auth.db">
@@ -225,16 +234,19 @@ Use this interactive tool to build your ntfy configuration. Select options below
<button type="button" class="cg-btn-add" data-add-type="token">+ Add token</button>
</div>
</div>
<div class="cg-detail-section" id="cg-detail-cache" style="display:none">
<div class="cg-detail-heading">Message Cache</div>
<div class="cg-field" id="cg-cache-file-field">
<label>Cache file</label>
<input type="text" data-key="cache-file" placeholder="/var/cache/ntfy/cache.db">
</div>
<div class="cg-field">
<label>Cache duration</label>
<input type="text" data-key="cache-duration" placeholder="12h">
</div>
</div>
<div class="cg-section">
<div class="cg-section-header">Attachments</div>
<div class="cg-section-body">
<div class="cg-checkbox">
<input type="checkbox" id="cg-attach-toggle" data-toggle="cg-attach-fields">
<label for="cg-attach-toggle">Enable attachments</label>
</div>
<div class="cg-conditional" id="cg-attach-fields">
<div class="cg-detail-section" id="cg-detail-attach" style="display:none">
<div class="cg-detail-heading">Attachments</div>
<div class="cg-field">
<label>Cache directory</label>
<input type="text" data-key="attachment-cache-dir" placeholder="/var/cache/ntfy/attachments">
@@ -252,25 +264,8 @@ Use this interactive tool to build your ntfy configuration. Select options below
<input type="text" data-key="attachment-expiry-duration" placeholder="3h">
</div>
</div>
</div>
</div>
<div class="cg-section">
<div class="cg-section-header">Message Cache</div>
<div class="cg-section-body">
<div class="cg-field">
<label>Cache duration</label>
<input type="text" data-key="cache-duration" placeholder="12h">
</div>
</div>
</div>
<div class="cg-section">
<div class="cg-section-header">Web Push</div>
<div class="cg-section-body">
<div class="cg-checkbox">
<input type="checkbox" id="cg-webpush-toggle" data-toggle="cg-webpush-fields">
<label for="cg-webpush-toggle">Enable web push</label>
</div>
<div class="cg-conditional" id="cg-webpush-fields">
<div class="cg-detail-section" id="cg-detail-webpush" style="display:none">
<div class="cg-detail-heading">Web Push</div>
<div class="cg-field">
<label>Public key</label>
<input type="text" data-key="web-push-public-key" placeholder="Public key">
@@ -288,16 +283,8 @@ Use this interactive tool to build your ntfy configuration. Select options below
<input type="text" data-key="web-push-email-address" placeholder="admin@example.com">
</div>
</div>
</div>
</div>
<div class="cg-section">
<div class="cg-section-header">Email Notifications (Outgoing)</div>
<div class="cg-section-body">
<div class="cg-checkbox">
<input type="checkbox" id="cg-smtp-out-toggle" data-toggle="cg-smtp-out-fields">
<label for="cg-smtp-out-toggle">Enable email sending</label>
</div>
<div class="cg-conditional" id="cg-smtp-out-fields">
<div class="cg-detail-section" id="cg-detail-smtp-out" style="display:none">
<div class="cg-detail-heading">Email Notifications (Outgoing)</div>
<div class="cg-field">
<label>SMTP server address</label>
<input type="text" data-key="smtp-sender-addr" placeholder="smtp.example.com:587">
@@ -315,16 +302,8 @@ Use this interactive tool to build your ntfy configuration. Select options below
<input type="password" data-key="smtp-sender-pass" placeholder="Password">
</div>
</div>
</div>
</div>
<div class="cg-section">
<div class="cg-section-header">Email Publishing (Incoming)</div>
<div class="cg-section-body">
<div class="cg-checkbox">
<input type="checkbox" id="cg-smtp-in-toggle" data-toggle="cg-smtp-in-fields">
<label for="cg-smtp-in-toggle">Enable email publishing</label>
</div>
<div class="cg-conditional" id="cg-smtp-in-fields">
<div class="cg-detail-section" id="cg-detail-smtp-in" style="display:none">
<div class="cg-detail-heading">Email Publishing (Incoming)</div>
<div class="cg-field">
<label>Listen address</label>
<input type="text" data-key="smtp-server-listen" placeholder=":25">
@@ -338,37 +317,17 @@ Use this interactive tool to build your ntfy configuration. Select options below
<input type="text" data-key="smtp-server-addr-prefix" placeholder="ntfy-">
</div>
</div>
</div>
</div>
<div class="cg-section">
<div class="cg-section-header">Upstream Server</div>
<div class="cg-section-body">
<div class="cg-checkbox">
<input type="checkbox" id="cg-upstream-check">
<label for="cg-upstream-check">iOS users will use this server</label>
</div>
<input type="hidden" data-key="upstream-base-url">
</div>
</div>
<div class="cg-section">
<div class="cg-section-header">Monitoring</div>
<div class="cg-section-body">
<div class="cg-checkbox">
<input type="checkbox" id="cg-metrics-check">
<label for="cg-metrics-check">Enable Prometheus metrics</label>
</div>
<input type="checkbox" data-key="enable-metrics" style="display:none">
</div>
</div>
</div>
<div id="cg-right">
<div class="cg-tabs">
<div class="cg-tab active" data-format="server-yml">server.yml</div>
<div class="cg-tab" data-format="docker-compose">docker-compose.yml</div>
<div class="cg-tab" data-format="env-vars">Environment variables</div>
<button type="button" id="cg-copy-btn" class="cg-btn-copy" title="Copy to clipboard"><svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="9" y="9" width="13" height="13" rx="2" ry="2"></rect><path d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"></path></svg></button>
</div>
<div class="cg-output-wrap">
<button type="button" id="cg-copy-btn" class="cg-btn-copy">Copy</button>
<pre><code id="cg-code"><span class="cg-empty-msg">Configure options on the left to generate your config...</span></code></pre>
</div>
</div>

View File

@@ -4,7 +4,7 @@
display: flex;
gap: 24px;
margin: 1em 0 2em;
font-size: 0.82rem;
font-size: 0.75rem;
}
#cg-left {
@@ -13,7 +13,8 @@
}
#cg-right {
width: 420px;
flex: 1;
min-width: 0;
flex-shrink: 0;
position: sticky;
top: 76px;
@@ -25,49 +26,115 @@
background: #f8f9fa;
}
/* Accordion sections */
.cg-section {
/* Wizard questions */
.cg-wizard {
border: 1px solid #ddd;
border-radius: 6px;
margin-bottom: 8px;
overflow: hidden;
border-radius: 8px;
padding: 16px 18px;
margin-bottom: 16px;
background: #f8f9fa;
}
.cg-section-header {
.cg-wizard-step {
margin-bottom: 16px;
}
.cg-wizard-step:last-child {
margin-bottom: 0;
}
.cg-wizard-label {
display: block;
font-weight: 600;
font-size: 0.78rem;
margin-bottom: 6px;
color: #333;
}
.cg-wizard-input {
width: 100%;
padding: 7px 10px;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 0.82rem;
font-family: inherit;
box-sizing: border-box;
background: #fff;
}
.cg-wizard-input:focus {
border-color: var(--md-primary-fg-color);
outline: none;
box-shadow: 0 0 0 2px rgba(51, 133, 116, 0.15);
}
.cg-wizard-toggle label {
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px 14px;
gap: 6px;
font-size: 0.82rem;
cursor: pointer;
font-weight: 500;
font-size: 0.88rem;
background: #f5f5f5;
user-select: none;
transition: background 0.15s;
}
.cg-section-header:hover {
background: #eee;
.cg-wizard-toggle input[type="checkbox"] {
accent-color: var(--md-primary-fg-color);
}
.cg-section-header::after {
content: '\25B6';
font-size: 0.65em;
transition: transform 0.2s;
.cg-radio-group {
display: flex;
gap: 16px;
flex-wrap: wrap;
}
.cg-section.open .cg-section-header::after {
transform: rotate(90deg);
.cg-radio-group label {
display: flex;
align-items: center;
gap: 4px;
font-weight: 400;
font-size: 0.82rem;
cursor: pointer;
}
.cg-section-body {
display: none;
.cg-radio-group input[type="radio"] {
accent-color: var(--md-primary-fg-color);
}
.cg-feature-grid {
display: flex;
flex-direction: column;
gap: 5px;
}
.cg-feature-grid label {
display: flex;
align-items: center;
gap: 6px;
font-size: 0.82rem;
cursor: pointer;
}
.cg-feature-grid input[type="checkbox"] {
accent-color: var(--md-primary-fg-color);
}
/* Detail sections */
#cg-details {
display: flex;
flex-direction: column;
gap: 12px;
}
.cg-detail-section {
border: 1px solid #ddd;
border-radius: 6px;
padding: 12px 14px;
border-top: 1px solid #ddd;
}
.cg-section.open .cg-section-body {
display: block;
.cg-detail-heading {
font-weight: 600;
font-size: 0.78rem;
margin-bottom: 10px;
color: var(--md-primary-fg-color);
}
/* Form fields */
@@ -126,33 +193,6 @@
cursor: pointer;
}
.cg-radio-group {
display: flex;
gap: 16px;
margin-bottom: 8px;
}
.cg-radio-group label {
display: flex;
align-items: center;
gap: 4px;
font-weight: 400;
cursor: pointer;
}
.cg-radio-group input[type="radio"] {
accent-color: var(--md-primary-fg-color);
}
.cg-conditional {
display: none;
margin-top: 8px;
}
.cg-conditional.visible {
display: block;
}
/* Repeatable rows */
.cg-repeatable-row {
display: flex;
@@ -242,15 +282,15 @@
/* Output panel */
.cg-output-wrap {
position: relative;
padding: 12px;
}
.cg-output-wrap pre {
margin: 0;
padding: 12px;
background: #1e1e1e;
color: #d4d4d4;
background: #f5f5f5;
color: #333;
border: 1px solid #ddd;
border-radius: 6px;
overflow-x: auto;
font-size: 0.76rem;
@@ -260,22 +300,23 @@
}
.cg-btn-copy {
position: absolute;
top: 18px;
right: 18px;
background: #444;
color: #ddd;
margin-left: auto;
background: none;
color: #777;
border: none;
border-radius: 4px;
padding: 4px 10px;
font-size: 0.72rem;
border-bottom: 2px solid transparent;
margin-bottom: -2px;
padding: 8px 10px;
cursor: pointer;
opacity: 0.8;
transition: opacity 0.15s;
line-height: 1;
display: flex;
align-items: center;
justify-content: center;
transition: color 0.15s;
}
.cg-btn-copy:hover {
opacity: 1;
color: #333;
}
.cg-empty-msg {
@@ -289,21 +330,33 @@ body[data-md-color-scheme="slate"] #cg-right {
border-color: #444;
}
body[data-md-color-scheme="slate"] .cg-section {
body[data-md-color-scheme="slate"] .cg-wizard {
background: #2e303e;
border-color: #444;
}
body[data-md-color-scheme="slate"] .cg-section-header {
background: #2e303e;
body[data-md-color-scheme="slate"] .cg-wizard-label {
color: #ccc;
}
body[data-md-color-scheme="slate"] .cg-section-header:hover {
background: #363849;
body[data-md-color-scheme="slate"] .cg-wizard-input {
background: #1e1e2e;
border-color: #555;
color: #ddd;
}
body[data-md-color-scheme="slate"] .cg-section-body {
border-top-color: #444;
body[data-md-color-scheme="slate"] .cg-wizard-toggle label,
body[data-md-color-scheme="slate"] .cg-radio-group label,
body[data-md-color-scheme="slate"] .cg-feature-grid label {
color: #ccc;
}
body[data-md-color-scheme="slate"] .cg-detail-section {
border-color: #444;
}
body[data-md-color-scheme="slate"] .cg-detail-heading {
color: var(--md-primary-fg-color);
}
body[data-md-color-scheme="slate"] .cg-field label {
@@ -348,7 +401,21 @@ body[data-md-color-scheme="slate"] .cg-tab:hover {
}
body[data-md-color-scheme="slate"] .cg-output-wrap pre {
background: #161620;
background: #1e1e2e;
color: #ddd;
border-color: #444;
}
body[data-md-color-scheme="slate"] .cg-btn-copy {
color: #777;
}
body[data-md-color-scheme="slate"] .cg-btn-copy:hover {
color: #bbb;
}
body[data-md-color-scheme="slate"] .cg-checkbox label {
color: #ccc;
}
/* Responsive */
@@ -362,4 +429,5 @@ body[data-md-color-scheme="slate"] .cg-output-wrap pre {
position: static;
max-height: none;
}
}

View File

@@ -6,7 +6,6 @@
{ key: "base-url", env: "NTFY_BASE_URL", section: "basic" },
{ key: "listen-http", env: "NTFY_LISTEN_HTTP", section: "basic", def: ":80" },
{ key: "behind-proxy", env: "NTFY_BEHIND_PROXY", section: "basic", type: "bool" },
{ key: "cache-file", env: "NTFY_CACHE_FILE", section: "database", def: "/var/cache/ntfy/cache.db" },
{ key: "database-url", env: "NTFY_DATABASE_URL", section: "database" },
{ key: "auth-file", env: "NTFY_AUTH_FILE", section: "auth", def: "/var/lib/ntfy/auth.db" },
{ key: "auth-default-access", env: "NTFY_AUTH_DEFAULT_ACCESS", section: "auth" },
@@ -16,6 +15,7 @@
{ key: "attachment-file-size-limit", env: "NTFY_ATTACHMENT_FILE_SIZE_LIMIT", section: "attach", def: "15M" },
{ key: "attachment-total-size-limit", env: "NTFY_ATTACHMENT_TOTAL_SIZE_LIMIT", section: "attach", def: "5G" },
{ key: "attachment-expiry-duration", env: "NTFY_ATTACHMENT_EXPIRY_DURATION", section: "attach", def: "3h" },
{ key: "cache-file", env: "NTFY_CACHE_FILE", section: "cache", def: "/var/cache/ntfy/cache.db" },
{ key: "cache-duration", env: "NTFY_CACHE_DURATION", section: "cache", def: "12h" },
{ key: "web-push-public-key", env: "NTFY_WEB_PUSH_PUBLIC_KEY", section: "webpush" },
{ key: "web-push-private-key", env: "NTFY_WEB_PUSH_PRIVATE_KEY", section: "webpush" },
@@ -37,21 +37,29 @@
"/var/cache/ntfy/attachments": "/var/lib/ntfy/attachments",
};
// Feature checkbox ID → detail section ID
var FEATURE_MAP = {
"cg-feat-cache": "cg-detail-cache",
"cg-feat-attach": "cg-detail-attach",
"cg-feat-webpush": "cg-detail-webpush",
"cg-feat-smtp-out": "cg-detail-smtp-out",
"cg-feat-smtp-in": "cg-detail-smtp-in",
};
function collectValues() {
var values = {};
var gen = document.getElementById("config-generator-app");
if (!gen) return values;
var isPostgres = gen.querySelector('input[name="cg-db-type"][value="postgres"]');
isPostgres = isPostgres && isPostgres.checked;
CONFIG.forEach(function (c) {
var el = gen.querySelector('[data-key="' + c.key + '"]');
if (!el) return;
// Skip hidden fields
var container = el.closest(".cg-conditional");
if (container && !container.classList.contains("visible")) return;
// Skip fields in hidden detail sections
var section = el.closest(".cg-detail-section");
if (section && section.style.display === "none") return;
// Skip hidden individual fields (e.g. auth-file when using PostgreSQL)
var field = el.closest(".cg-field");
if (field && field.style.display === "none") return;
@@ -151,13 +159,6 @@
// Auth ACLs
if (values["_auth-acls"]) {
lines.push("auth-default-access:");
lines.push(" everyone:");
values["_auth-acls"].forEach(function (a) {
// This uses the topic-level provisioning format
});
// Actually use provisioned format
lines.pop(); lines.pop();
lines.push("auth-access:");
values["_auth-acls"].forEach(function (a) {
lines.push(" - user: " + (a.user || "*"));
@@ -249,47 +250,6 @@
return lines.join("\n");
}
function generateEnvVars(values) {
var lines = [];
CONFIG.forEach(function (c) {
if (!(c.key in values)) return;
var val = values[c.key];
if (c.type === "bool") val = "true";
// Use single quotes if value contains $
var q = val.indexOf("$") !== -1 ? "'" : '"';
lines.push("export " + c.env + "=" + q + val + q);
});
if (values["_auth-users"]) {
values["_auth-users"].forEach(function (u, i) {
var q = u.password.indexOf("$") !== -1 ? "'" : '"';
lines.push("export NTFY_AUTH_USERS_" + i + '_USERNAME="' + u.username + '"');
lines.push("export NTFY_AUTH_USERS_" + i + "_PASSWORD=" + q + u.password + q);
lines.push("export NTFY_AUTH_USERS_" + i + '_ROLE="' + u.role + '"');
});
}
if (values["_auth-acls"]) {
values["_auth-acls"].forEach(function (a, i) {
lines.push("export NTFY_AUTH_ACCESS_" + i + '_USER="' + (a.user || "*") + '"');
lines.push("export NTFY_AUTH_ACCESS_" + i + '_TOPIC="' + a.topic + '"');
lines.push("export NTFY_AUTH_ACCESS_" + i + '_PERMISSION="' + a.permission + '"');
});
}
if (values["_auth-tokens"]) {
values["_auth-tokens"].forEach(function (t, i) {
var q = t.token.indexOf("$") !== -1 ? "'" : '"';
lines.push("export NTFY_AUTH_TOKENS_" + i + '_USER="' + t.user + '"');
lines.push("export NTFY_AUTH_TOKENS_" + i + "_TOKEN=" + q + t.token + q);
if (t.label) lines.push("export NTFY_AUTH_TOKENS_" + i + '_LABEL="' + t.label + '"');
});
}
return lines.join("\n");
}
function updateOutput() {
var gen = document.getElementById("config-generator-app");
if (!gen) return;
@@ -301,7 +261,6 @@
var activeTab = gen.querySelector(".cg-tab.active");
var format = activeTab ? activeTab.getAttribute("data-format") : "server-yml";
var output = "";
var hasValues = false;
for (var k in values) {
if (values.hasOwnProperty(k)) { hasValues = true; break; }
@@ -312,29 +271,69 @@
return;
}
if (format === "server-yml") {
output = generateServerYml(values);
} else if (format === "docker-compose") {
var output = "";
if (format === "docker-compose") {
output = generateDockerCompose(values);
} else {
output = generateEnvVars(values);
output = generateServerYml(values);
}
codeEl.textContent = output;
}
function updateConditionalVisibility() {
// Set a field's value only if it is currently empty
function prefill(gen, key, value) {
var el = gen.querySelector('[data-key="' + key + '"]');
if (el && !el.value.trim()) el.value = value;
}
// Set a select's value (always, to reflect wizard state)
function prefillSelect(gen, key, value) {
var el = gen.querySelector('[data-key="' + key + '"]');
if (el) el.value = value;
}
function updateVisibility() {
var gen = document.getElementById("config-generator-app");
if (!gen) return;
var isPostgres = gen.querySelector('input[name="cg-db-type"][value="postgres"]');
isPostgres = isPostgres && isPostgres.checked;
// Database fields
var sqliteFields = gen.querySelector("#cg-sqlite-fields");
var pgFields = gen.querySelector("#cg-postgres-fields");
if (sqliteFields) sqliteFields.style.display = isPostgres ? "none" : "block";
if (pgFields) pgFields.style.display = isPostgres ? "block" : "none";
var isPrivate = gen.querySelector('input[name="cg-server-type"][value="private"]');
isPrivate = isPrivate && isPrivate.checked;
var cacheEnabled = gen.querySelector("#cg-feat-cache");
cacheEnabled = cacheEnabled && cacheEnabled.checked;
var attachEnabled = gen.querySelector("#cg-feat-attach");
attachEnabled = attachEnabled && attachEnabled.checked;
var webpushEnabled = gen.querySelector("#cg-feat-webpush");
webpushEnabled = webpushEnabled && webpushEnabled.checked;
var smtpOutEnabled = gen.querySelector("#cg-feat-smtp-out");
smtpOutEnabled = smtpOutEnabled && smtpOutEnabled.checked;
var smtpInEnabled = gen.querySelector("#cg-feat-smtp-in");
smtpInEnabled = smtpInEnabled && smtpInEnabled.checked;
// Show database question only if a DB-dependent feature is selected
var needsDb = isPrivate || cacheEnabled || webpushEnabled;
var dbStep = gen.querySelector("#cg-wizard-db");
if (dbStep) dbStep.style.display = needsDb ? "" : "none";
// Database detail section (PostgreSQL only; SQLite needs no extra config)
var pgSection = gen.querySelector("#cg-detail-db-postgres");
if (pgSection) pgSection.style.display = (needsDb && isPostgres) ? "" : "none";
// Hide cache-file in message cache section when PostgreSQL
var cacheFileField = gen.querySelector("#cg-cache-file-field");
if (cacheFileField) cacheFileField.style.display = isPostgres ? "none" : "";
// Auth detail section
var authSection = gen.querySelector("#cg-detail-auth");
if (authSection) authSection.style.display = isPrivate ? "" : "none";
// Hide auth-file and web-push-file if PostgreSQL
var authFile = gen.querySelector('[data-key="auth-file"]');
@@ -348,18 +347,75 @@
if (wpField) wpField.style.display = isPostgres ? "none" : "";
}
// Conditional sections (checkboxes that show/hide detail fields)
var toggles = gen.querySelectorAll("[data-toggle]");
toggles.forEach(function (toggle) {
var target = gen.querySelector("#" + toggle.getAttribute("data-toggle"));
if (target) {
if (toggle.checked) {
target.classList.add("visible");
// Feature toggles → detail sections
for (var featId in FEATURE_MAP) {
var checkbox = gen.querySelector("#" + featId);
var section = gen.querySelector("#" + FEATURE_MAP[featId]);
if (checkbox && section) {
section.style.display = checkbox.checked ? "" : "none";
}
}
// Upstream special handling
var upstreamCheck = gen.querySelector("#cg-feat-upstream");
var upstreamInput = gen.querySelector('[data-key="upstream-base-url"]');
if (upstreamCheck && upstreamInput) {
upstreamInput.value = upstreamCheck.checked ? "https://ntfy.sh" : "";
}
// Metrics special handling
var metricsCheck = gen.querySelector("#cg-feat-metrics");
var metricsInput = gen.querySelector('[data-key="enable-metrics"]');
if (metricsCheck && metricsInput) {
metricsInput.checked = metricsCheck.checked;
}
// --- Pre-fill defaults based on wizard selections ---
// Database
if (isPostgres) {
prefill(gen, "database-url", "postgres://user:pass@host:5432/ntfy");
}
// Access control: always sync default-access with open/private
if (isPrivate) {
prefillSelect(gen, "auth-default-access", "deny-all");
if (!isPostgres) prefill(gen, "auth-file", "/var/lib/ntfy/auth.db");
} else {
target.classList.remove("visible");
prefillSelect(gen, "auth-default-access", "read-write");
}
// Persistent message cache
if (cacheEnabled) {
if (!isPostgres) prefill(gen, "cache-file", "/var/cache/ntfy/cache.db");
prefill(gen, "cache-duration", "12h");
}
// Attachments
if (attachEnabled) {
prefill(gen, "attachment-cache-dir", "/var/cache/ntfy/attachments");
prefill(gen, "attachment-file-size-limit", "15M");
prefill(gen, "attachment-total-size-limit", "5G");
prefill(gen, "attachment-expiry-duration", "3h");
}
// Web push
if (webpushEnabled) {
if (!isPostgres) prefill(gen, "web-push-file", "/var/lib/ntfy/webpush.db");
prefill(gen, "web-push-email-address", "admin@example.com");
}
// Email notifications (outgoing)
if (smtpOutEnabled) {
prefill(gen, "smtp-sender-addr", "smtp.example.com:587");
prefill(gen, "smtp-sender-from", "ntfy@example.com");
}
// Email publishing (incoming)
if (smtpInEnabled) {
prefill(gen, "smtp-server-listen", ":25");
prefill(gen, "smtp-server-domain", "ntfy.example.com");
}
});
}
function addRepeatableRow(container, type) {
@@ -401,17 +457,6 @@
var gen = document.getElementById("config-generator-app");
if (!gen) return;
// Accordion toggle
gen.querySelectorAll(".cg-section-header").forEach(function (header) {
header.addEventListener("click", function () {
header.parentElement.classList.toggle("open");
});
});
// Open first section by default
var first = gen.querySelector(".cg-section");
if (first) first.classList.add("open");
// Tab switching
gen.querySelectorAll(".cg-tab").forEach(function (tab) {
tab.addEventListener("click", function () {
@@ -425,23 +470,7 @@
gen.querySelectorAll("input, select").forEach(function (el) {
var evt = (el.type === "checkbox" || el.type === "radio") ? "change" : "input";
el.addEventListener(evt, function () {
updateConditionalVisibility();
updateOutput();
});
});
// Conditional toggles
gen.querySelectorAll("[data-toggle]").forEach(function (toggle) {
toggle.addEventListener("change", function () {
updateConditionalVisibility();
updateOutput();
});
});
// Database radio
gen.querySelectorAll('input[name="cg-db-type"]').forEach(function (r) {
r.addEventListener("change", function () {
updateConditionalVisibility();
updateVisibility();
updateOutput();
});
});
@@ -459,38 +488,33 @@
// Copy button
var copyBtn = gen.querySelector("#cg-copy-btn");
if (copyBtn) {
var copyIcon = '<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="9" y="9" width="13" height="13" rx="2" ry="2"></rect><path d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"></path></svg>';
var checkIcon = '<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>';
copyBtn.addEventListener("click", function () {
var code = gen.querySelector("#cg-code");
if (code && code.textContent) {
navigator.clipboard.writeText(code.textContent).then(function () {
copyBtn.textContent = "Copied!";
setTimeout(function () { copyBtn.textContent = "Copy"; }, 2000);
copyBtn.innerHTML = checkIcon;
copyBtn.style.color = "var(--md-primary-fg-color)";
setTimeout(function () {
copyBtn.innerHTML = copyIcon;
copyBtn.style.color = "";
}, 2000);
});
}
});
}
// Upstream checkbox special handling
var upstreamCheck = gen.querySelector("#cg-upstream-check");
if (upstreamCheck) {
upstreamCheck.addEventListener("change", function () {
var input = gen.querySelector('[data-key="upstream-base-url"]');
if (input) input.value = upstreamCheck.checked ? "https://ntfy.sh" : "";
updateOutput();
});
// Pre-fill base-url if not on ntfy.sh
var baseUrlInput = gen.querySelector('[data-key="base-url"]');
if (baseUrlInput && !baseUrlInput.value.trim()) {
var host = window.location.hostname;
if (host && host.indexOf("ntfy.sh") === -1) {
baseUrlInput.value = "https://ntfy.example.com";
}
}
// Metrics checkbox special handling
var metricsCheck = gen.querySelector("#cg-metrics-check");
if (metricsCheck) {
metricsCheck.addEventListener("change", function () {
var input = gen.querySelector('[data-key="enable-metrics"]');
if (input) input.checked = metricsCheck.checked;
updateOutput();
});
}
updateConditionalVisibility();
updateVisibility();
updateOutput();
}