[glm-grade=B] fix(notifications): repair UI/API contract drift — SMTP auth, event gate, test button (DC-092)
Three user-facing notification features were silently dead from contract
drift between the settings UI and the backend:
1. SMTP auth never applied: the UI sent email.user/email.pass while the
manager read username/password. Route now normalizes aliases; legacy
config files canonicalize at load.
2. Event toggles were cosmetic: UI sent camelCase keys (containerDown),
the send() gate read kebab-case ('container-down'). EVENT_ALIASES now
folds every known spelling (manager gate, route store, legacy files);
UI sends and reads canonical keys.
3. Deploy/auto-restart notifications always dropped: deploy-success/
deploy-failed/auto-restart were missing from DEFAULT events, and
send('test') was itself gated -> the Test button was a no-op. Defaults
added; 'test' bypasses the gate.
Also: strict boolean contract (string 'false' for secure/enabled rejected
— previously coerced truthy, silently forcing TLS), SMTP port bounds,
non-destructive credential merge (blank password no longer clobbers the
stored one), GET /config returns port/secure/to/username + hasPassword
(password never returned), full form prefill + keep-hint placeholder.
Verified live pre-fix: send('test')/'deploymentSuccess'/'auto-restart'
all returned 'not enabled'. Post-fix: +20 tests (route + manager),
full suite 2641/2641 (112 suites).
Judge: GLM-5.3 cold read via delegate_task (deleg_ad765d63), grade B,
ship, zero blockers; judge independently ran the DC-092 suites (38/38).
Polish #1 (canonical event for provider titles) folded in. Remaining
emitters with the same gate-miss class (recipeRemoved, workflow,
ssl-cert-expiry, dns-propagation, drift-detected, dependency-restart-*)
noted for a follow-up tick.
This commit is contained in:
@@ -214,4 +214,99 @@ describe('NotificationManager', () => {
|
|||||||
nm.stopHealthDaemon();
|
nm.stopHealthDaemon();
|
||||||
expect(nm.healthDaemonInterval).toBeNull();
|
expect(nm.healthDaemonInterval).toBeNull();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// ── DC-092: event alias folding + legacy config canonicalization ──────────
|
||||||
|
|
||||||
|
test('DC-092: send() folds camelCase aliases onto canonical kebab keys', async () => {
|
||||||
|
// deploymentSuccess (emitted by routes/apps/deploy.js) previously hit a
|
||||||
|
// gate miss (no such key in events) and the notification was dropped.
|
||||||
|
const result = await nm.send('deploymentSuccess', { text: 'deployed' });
|
||||||
|
expect(result.error).toBeUndefined();
|
||||||
|
expect(nm.getHistory()[0].event).toBe('deploy-success');
|
||||||
|
});
|
||||||
|
|
||||||
|
test('DC-092: send() accepts the canonical kebab spelling too', async () => {
|
||||||
|
const result = await nm.send('deploy-success', { text: 'deployed' });
|
||||||
|
expect(result.error).toBeUndefined();
|
||||||
|
expect(nm.getHistory()[0].event).toBe('deploy-success');
|
||||||
|
});
|
||||||
|
|
||||||
|
test("DC-092: send('test') bypasses the events gate (Test button works)", async () => {
|
||||||
|
const result = await nm.send('test', { text: 'Test Notification' });
|
||||||
|
// No providers are enabled in the default config, so results is empty —
|
||||||
|
// but the gate must NOT return 'Event test not enabled' like it used to.
|
||||||
|
expect(result.error).toBeUndefined();
|
||||||
|
expect(nm.getHistory()[0].event).toBe('test');
|
||||||
|
});
|
||||||
|
|
||||||
|
test('DC-092: send() still gates unknown and disabled events', async () => {
|
||||||
|
const unknown = await nm.send('some-unknown-event', { text: 'x' });
|
||||||
|
expect(unknown.success).toBe(false);
|
||||||
|
expect(unknown.error).toMatch(/not enabled/i);
|
||||||
|
|
||||||
|
nm.config.events['container-down'] = false;
|
||||||
|
const disabled = await nm.send('container-down', { text: 'x' });
|
||||||
|
expect(disabled.success).toBe(false);
|
||||||
|
expect(disabled.error).toMatch(/not enabled/i);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('DC-092: DEFAULT_CONFIG includes deploy/auto-restart events', () => {
|
||||||
|
// Regression pin: these were absent entirely, so deploy notifications
|
||||||
|
// were dropped for every install regardless of UI toggles.
|
||||||
|
expect(nm.config.events['deploy-success']).toBe(true);
|
||||||
|
expect(nm.config.events['deploy-failed']).toBe(true);
|
||||||
|
expect(nm.config.events['auto-restart']).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('DC-092: legacy config with user/pass and camelCase events canonicalizes on load', () => {
|
||||||
|
fs.existsSync.mockReturnValue(true);
|
||||||
|
fs.readFileSync.mockReturnValue(JSON.stringify({
|
||||||
|
enabled: true,
|
||||||
|
providers: {
|
||||||
|
email: {
|
||||||
|
enabled: true,
|
||||||
|
host: 'smtp.test',
|
||||||
|
port: 465,
|
||||||
|
secure: 'false', // legacy string — must normalize to boolean false
|
||||||
|
to: 'me@test',
|
||||||
|
from: 'from@test',
|
||||||
|
user: 'legacy-user',
|
||||||
|
pass: 'legacy-pass',
|
||||||
|
}
|
||||||
|
},
|
||||||
|
events: {
|
||||||
|
containerDown: false,
|
||||||
|
deploymentSuccess: false,
|
||||||
|
}
|
||||||
|
}));
|
||||||
|
const loaded = new NotificationManager({
|
||||||
|
NOTIFICATIONS_FILE: NOTIF_FILE,
|
||||||
|
log: { error: jest.fn(), info: jest.fn(), warn: jest.fn() },
|
||||||
|
});
|
||||||
|
const email = loaded.getConfig().providers.email;
|
||||||
|
expect(email.username).toBe('legacy-user');
|
||||||
|
expect(email.password).toBe('legacy-pass');
|
||||||
|
expect(email.user).toBeUndefined();
|
||||||
|
expect(email.pass).toBeUndefined();
|
||||||
|
expect(email.secure).toBe(false);
|
||||||
|
const events = loaded.getConfig().events;
|
||||||
|
expect(events['container-down']).toBe(false);
|
||||||
|
expect(events['deploy-success']).toBe(false);
|
||||||
|
expect(events.containerDown).toBeUndefined();
|
||||||
|
expect(events.deploymentSuccess).toBeUndefined();
|
||||||
|
});
|
||||||
|
|
||||||
|
test('DC-092: canonical keys win when both spellings exist in a legacy file', () => {
|
||||||
|
fs.existsSync.mockReturnValue(true);
|
||||||
|
fs.readFileSync.mockReturnValue(JSON.stringify({
|
||||||
|
providers: { email: { user: 'legacy', username: 'canonical' } },
|
||||||
|
events: { containerDown: false, 'container-down': true },
|
||||||
|
}));
|
||||||
|
const loaded = new NotificationManager({
|
||||||
|
NOTIFICATIONS_FILE: NOTIF_FILE,
|
||||||
|
log: { error: jest.fn(), info: jest.fn(), warn: jest.fn() },
|
||||||
|
});
|
||||||
|
expect(loaded.getConfig().providers.email.username).toBe('canonical');
|
||||||
|
expect(loaded.getConfig().events['container-down']).toBe(true);
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -0,0 +1,267 @@
|
|||||||
|
/**
|
||||||
|
* DC-092: notifications config contract tests (route level).
|
||||||
|
*
|
||||||
|
* The settings UI and the backend drifted apart in three ways, all of which
|
||||||
|
* made user-facing features silently dead:
|
||||||
|
* 1. UI sent email.user/email.pass; backend read username/password →
|
||||||
|
* SMTP auth never applied for UI-saved configs.
|
||||||
|
* 2. UI sent camelCase event keys (containerDown); the send() gate read
|
||||||
|
* kebab-case keys (container-down) → event toggles were cosmetic.
|
||||||
|
* 3. deploy-success/deploy-failed/auto-restart were missing from DEFAULT
|
||||||
|
* events → deploy + auto-restart notifications always dropped, and
|
||||||
|
* 'test' was gated too → the Test button was a no-op.
|
||||||
|
* 4. Non-boolean enabled/secure values (string "false") persisted as-is and
|
||||||
|
* coerced truthy (!!secure) — silently forcing TLS.
|
||||||
|
* 5. UI password field roundtrip: GET /config omitted port/secure/to/
|
||||||
|
* username, and an empty password on save clobbered the stored one.
|
||||||
|
*
|
||||||
|
* These tests pin the FIXED contract: alias normalization, strict booleans,
|
||||||
|
* event-key folding, non-destructive credential merge, redacted GET fields.
|
||||||
|
*/
|
||||||
|
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
const express = require('express');
|
||||||
|
const request = require('supertest');
|
||||||
|
|
||||||
|
// Stub notification manager: in-memory config object, real merge semantics
|
||||||
|
// are exercised through the route; manager-level canonicalization has its
|
||||||
|
// own tests in notification-manager.test.js.
|
||||||
|
function makeStubNotification(initial) {
|
||||||
|
const nm = {
|
||||||
|
config: initial,
|
||||||
|
getConfig() { return this.config; },
|
||||||
|
async saveConfig() { this.saved = JSON.parse(JSON.stringify(this.config)); return true; },
|
||||||
|
startHealthDaemon: jest.fn(),
|
||||||
|
stopHealthDaemon: jest.fn(),
|
||||||
|
};
|
||||||
|
return nm;
|
||||||
|
}
|
||||||
|
|
||||||
|
function buildApp(notification) {
|
||||||
|
const app = express();
|
||||||
|
app.use(express.json());
|
||||||
|
const notificationRoutes = require('../../routes/notifications');
|
||||||
|
app.use('/api/v1/notifications', notificationRoutes({
|
||||||
|
notification,
|
||||||
|
asyncHandler: (fn) => (req, res, next) => Promise.resolve(fn(req, res)).catch(next),
|
||||||
|
ok: (res, data) => res.json({ success: true, ...data }),
|
||||||
|
}));
|
||||||
|
// Inline error handler (same pattern as sites-dc074.routes.test.js): maps
|
||||||
|
// AppError.statusCode to the HTTP status and surfaces err.message.
|
||||||
|
app.use((err, req, res, next) => {
|
||||||
|
const status = err.statusCode || 500;
|
||||||
|
res.status(status).json({
|
||||||
|
error: err.message || 'Internal Server Error',
|
||||||
|
code: err.code || null,
|
||||||
|
});
|
||||||
|
});
|
||||||
|
return app;
|
||||||
|
}
|
||||||
|
|
||||||
|
const DEFAULTS = {
|
||||||
|
enabled: true,
|
||||||
|
providers: {
|
||||||
|
discord: { enabled: false, webhookUrl: '' },
|
||||||
|
telegram: { enabled: false, botToken: '', chatId: '' },
|
||||||
|
ntfy: { enabled: false, topic: '', serverUrl: 'https://ntfy.sh' },
|
||||||
|
email: { enabled: false, host: '', port: 587, to: '', from: '', username: '', password: '' },
|
||||||
|
},
|
||||||
|
events: {
|
||||||
|
'container-down': true,
|
||||||
|
'container-up': false,
|
||||||
|
'alert': true,
|
||||||
|
'backup-complete': true,
|
||||||
|
'backup-failed': true,
|
||||||
|
'update-available': true,
|
||||||
|
'deploy-success': true,
|
||||||
|
'deploy-failed': true,
|
||||||
|
'auto-restart': true,
|
||||||
|
},
|
||||||
|
healthCheck: { enabled: false },
|
||||||
|
};
|
||||||
|
|
||||||
|
function freshConfig() {
|
||||||
|
return JSON.parse(JSON.stringify(DEFAULTS));
|
||||||
|
}
|
||||||
|
|
||||||
|
describe('DC-092: POST /config field aliases and typing', () => {
|
||||||
|
test('UI spelling email.user/email.pass normalizes onto username/password', async () => {
|
||||||
|
const nm = makeStubNotification(freshConfig());
|
||||||
|
const app = buildApp(nm);
|
||||||
|
const res = await request(app)
|
||||||
|
.post('/api/v1/notifications/config')
|
||||||
|
.send({ providers: { email: { user: 'svc@example.com', pass: 'app-secret' } } });
|
||||||
|
expect(res.status).toBe(200);
|
||||||
|
expect(nm.config.providers.email.username).toBe('svc@example.com');
|
||||||
|
expect(nm.config.providers.email.password).toBe('app-secret');
|
||||||
|
expect(nm.config.providers.email.user).toBeUndefined();
|
||||||
|
expect(nm.config.providers.email.pass).toBeUndefined();
|
||||||
|
});
|
||||||
|
|
||||||
|
test('explicit username/password wins over user/pass aliases', async () => {
|
||||||
|
const nm = makeStubNotification(freshConfig());
|
||||||
|
const app = buildApp(nm);
|
||||||
|
await request(app)
|
||||||
|
.post('/api/v1/notifications/config')
|
||||||
|
.send({ providers: { email: { user: 'legacy@x.com', pass: 'old', username: 'modern@x.com', password: 'new' } } });
|
||||||
|
expect(nm.config.providers.email.username).toBe('modern@x.com');
|
||||||
|
expect(nm.config.providers.email.password).toBe('new');
|
||||||
|
});
|
||||||
|
|
||||||
|
test('string "false" for secure is rejected, not coerced truthy', async () => {
|
||||||
|
const nm = makeStubNotification(freshConfig());
|
||||||
|
const app = buildApp(nm);
|
||||||
|
const res = await request(app)
|
||||||
|
.post('/api/v1/notifications/config')
|
||||||
|
.send({ providers: { email: { secure: 'false' } } });
|
||||||
|
expect(res.status).toBe(400);
|
||||||
|
expect(nm.config.providers.email.secure).toBeUndefined();
|
||||||
|
});
|
||||||
|
|
||||||
|
test('string enabled for any provider is rejected', async () => {
|
||||||
|
const nm = makeStubNotification(freshConfig());
|
||||||
|
const app = buildApp(nm);
|
||||||
|
for (const prov of ['discord', 'telegram', 'ntfy', 'email']) {
|
||||||
|
const res = await request(app)
|
||||||
|
.post('/api/v1/notifications/config')
|
||||||
|
.send({ providers: { [prov]: { enabled: 'true' } } });
|
||||||
|
expect(res.status).toBe(400);
|
||||||
|
}
|
||||||
|
const top = await request(app)
|
||||||
|
.post('/api/v1/notifications/config')
|
||||||
|
.send({ enabled: 'true' });
|
||||||
|
expect(top.status).toBe(400);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('real booleans pass and persist', async () => {
|
||||||
|
const nm = makeStubNotification(freshConfig());
|
||||||
|
const app = buildApp(nm);
|
||||||
|
const res = await request(app)
|
||||||
|
.post('/api/v1/notifications/config')
|
||||||
|
.send({ enabled: false, providers: { email: { secure: true } } });
|
||||||
|
expect(res.status).toBe(200);
|
||||||
|
expect(nm.config.enabled).toBe(false);
|
||||||
|
expect(nm.config.providers.email.secure).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('SMTP port bounds enforced (0, 65536, non-integer rejected)', async () => {
|
||||||
|
const nm = makeStubNotification(freshConfig());
|
||||||
|
const app = buildApp(nm);
|
||||||
|
for (const bad of [0, 65536, 58.5, 'abc']) {
|
||||||
|
const res = await request(app)
|
||||||
|
.post('/api/v1/notifications/config')
|
||||||
|
.send({ providers: { email: { port: bad } } });
|
||||||
|
expect(res.status).toBe(400);
|
||||||
|
}
|
||||||
|
const good = await request(app)
|
||||||
|
.post('/api/v1/notifications/config')
|
||||||
|
.send({ providers: { email: { port: 465 } } });
|
||||||
|
expect(good.status).toBe(200);
|
||||||
|
expect(nm.config.providers.email.port).toBe(465);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('DC-092: POST /config event-key folding', () => {
|
||||||
|
test('camelCase event keys fold onto canonical kebab keys', async () => {
|
||||||
|
const nm = makeStubNotification(freshConfig());
|
||||||
|
const app = buildApp(nm);
|
||||||
|
const res = await request(app)
|
||||||
|
.post('/api/v1/notifications/config')
|
||||||
|
.send({ events: { containerDown: false, deploymentSuccess: false, resourceAlert: false } });
|
||||||
|
expect(res.status).toBe(200);
|
||||||
|
expect(nm.config.events['container-down']).toBe(false);
|
||||||
|
expect(nm.config.events['deploy-success']).toBe(false);
|
||||||
|
expect(nm.config.events['alert']).toBe(false);
|
||||||
|
// legacy camelCase keys must NOT be stored
|
||||||
|
expect(nm.config.events.containerDown).toBeUndefined();
|
||||||
|
expect(nm.config.events.deploymentSuccess).toBeUndefined();
|
||||||
|
expect(nm.config.events.resourceAlert).toBeUndefined();
|
||||||
|
});
|
||||||
|
|
||||||
|
test('canonical kebab keys accepted directly', async () => {
|
||||||
|
const nm = makeStubNotification(freshConfig());
|
||||||
|
const app = buildApp(nm);
|
||||||
|
const res = await request(app)
|
||||||
|
.post('/api/v1/notifications/config')
|
||||||
|
.send({ events: { 'container-down': false, 'auto-restart': false } });
|
||||||
|
expect(res.status).toBe(200);
|
||||||
|
expect(nm.config.events['container-down']).toBe(false);
|
||||||
|
expect(nm.config.events['auto-restart']).toBe(false);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('non-boolean event values rejected', async () => {
|
||||||
|
const nm = makeStubNotification(freshConfig());
|
||||||
|
const app = buildApp(nm);
|
||||||
|
const res = await request(app)
|
||||||
|
.post('/api/v1/notifications/config')
|
||||||
|
.send({ events: { 'container-down': 'yes' } });
|
||||||
|
expect(res.status).toBe(400);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('DC-092: POST /config non-destructive credential merge', () => {
|
||||||
|
test('empty password does not clobber stored password', async () => {
|
||||||
|
const cfg = freshConfig();
|
||||||
|
cfg.providers.email.username = 'svc@example.com';
|
||||||
|
cfg.providers.email.password = 'stored-secret';
|
||||||
|
const nm = makeStubNotification(cfg);
|
||||||
|
const app = buildApp(nm);
|
||||||
|
const res = await request(app)
|
||||||
|
.post('/api/v1/notifications/config')
|
||||||
|
.send({ providers: { email: { host: 'smtp.example.com', password: '' } } });
|
||||||
|
expect(res.status).toBe(200);
|
||||||
|
expect(nm.config.providers.email.password).toBe('stored-secret');
|
||||||
|
expect(nm.config.providers.email.host).toBe('smtp.example.com');
|
||||||
|
});
|
||||||
|
|
||||||
|
test('empty username does not clobber stored username', async () => {
|
||||||
|
const cfg = freshConfig();
|
||||||
|
cfg.providers.email.username = 'svc@example.com';
|
||||||
|
const nm = makeStubNotification(cfg);
|
||||||
|
const app = buildApp(nm);
|
||||||
|
await request(app)
|
||||||
|
.post('/api/v1/notifications/config')
|
||||||
|
.send({ providers: { email: { username: '' } } });
|
||||||
|
expect(nm.config.providers.email.username).toBe('svc@example.com');
|
||||||
|
});
|
||||||
|
|
||||||
|
test('non-empty password overwrites', async () => {
|
||||||
|
const cfg = freshConfig();
|
||||||
|
cfg.providers.email.password = 'old';
|
||||||
|
const nm = makeStubNotification(cfg);
|
||||||
|
const app = buildApp(nm);
|
||||||
|
await request(app)
|
||||||
|
.post('/api/v1/notifications/config')
|
||||||
|
.send({ providers: { email: { password: 'rotated' } } });
|
||||||
|
expect(nm.config.providers.email.password).toBe('rotated');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('DC-092: GET /config redaction and roundtrip fields', () => {
|
||||||
|
test('returns port/secure/to/username/hasPassword but never the password', async () => {
|
||||||
|
const cfg = freshConfig();
|
||||||
|
cfg.providers.email = {
|
||||||
|
enabled: true,
|
||||||
|
host: 'smtp.example.com',
|
||||||
|
port: 465,
|
||||||
|
secure: true,
|
||||||
|
to: 'admin@example.com',
|
||||||
|
from: 'DashCaddy <noreply@example.com>',
|
||||||
|
username: 'svc@example.com',
|
||||||
|
password: 'super-secret',
|
||||||
|
};
|
||||||
|
const nm = makeStubNotification(cfg);
|
||||||
|
const app = buildApp(nm);
|
||||||
|
const res = await request(app).get('/api/v1/notifications/config');
|
||||||
|
expect(res.status).toBe(200);
|
||||||
|
const email = res.body.config.providers.email;
|
||||||
|
expect(email.port).toBe(465);
|
||||||
|
expect(email.secure).toBe(true);
|
||||||
|
expect(email.to).toBe('admin@example.com');
|
||||||
|
expect(email.username).toBe('svc@example.com');
|
||||||
|
expect(email.hasPassword).toBe(true);
|
||||||
|
expect(JSON.stringify(res.body)).not.toContain('super-secret');
|
||||||
|
expect(res.body.config.providers.email.password).toBeUndefined();
|
||||||
|
});
|
||||||
|
});
|
||||||
@@ -40,7 +40,15 @@ module.exports = function({ notification, asyncHandler, ok }) {
|
|||||||
enabled: notificationConfig.providers.email?.enabled || false,
|
enabled: notificationConfig.providers.email?.enabled || false,
|
||||||
configured: !!(notificationConfig.providers.email?.host && notificationConfig.providers.email?.to),
|
configured: !!(notificationConfig.providers.email?.host && notificationConfig.providers.email?.to),
|
||||||
host: notificationConfig.providers.email?.host || '',
|
host: notificationConfig.providers.email?.host || '',
|
||||||
from: notificationConfig.providers.email?.from || ''
|
from: notificationConfig.providers.email?.from || '',
|
||||||
|
// DC-092: the settings UI needs these to roundtrip the form.
|
||||||
|
// Password is NEVER returned; hasPassword lets the UI show a
|
||||||
|
// "leave blank to keep" hint instead of an empty-looking field.
|
||||||
|
port: notificationConfig.providers.email?.port || 587,
|
||||||
|
secure: notificationConfig.providers.email?.secure === true,
|
||||||
|
to: notificationConfig.providers.email?.to || '',
|
||||||
|
username: notificationConfig.providers.email?.username || '',
|
||||||
|
hasPassword: !!notificationConfig.providers.email?.password
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
events: notificationConfig.events,
|
events: notificationConfig.events,
|
||||||
@@ -54,6 +62,39 @@ module.exports = function({ notification, asyncHandler, ok }) {
|
|||||||
const { enabled, providers, events, healthCheck } = req.body;
|
const { enabled, providers, events, healthCheck } = req.body;
|
||||||
const notificationConfig = notification.getConfig();
|
const notificationConfig = notification.getConfig();
|
||||||
|
|
||||||
|
// DC-092: clients have historically sent at least three field spellings:
|
||||||
|
// the settings UI sends email.user/email.pass (its input ids are
|
||||||
|
// email-user/email-pass) while the manager/route read username/password.
|
||||||
|
// Normalize aliases onto the canonical keys BEFORE the merge so SMTP auth
|
||||||
|
// actually applies for UI-saved configs.
|
||||||
|
if (providers?.email) {
|
||||||
|
if (providers.email.user !== undefined && providers.email.username === undefined) {
|
||||||
|
providers.email.username = providers.email.user;
|
||||||
|
}
|
||||||
|
if (providers.email.pass !== undefined && providers.email.password === undefined) {
|
||||||
|
providers.email.password = providers.email.pass;
|
||||||
|
}
|
||||||
|
delete providers.email.user;
|
||||||
|
delete providers.email.pass;
|
||||||
|
}
|
||||||
|
|
||||||
|
// DC-092 strict boolean contract: enabled/secure must be actual
|
||||||
|
// booleans. `"false"` (string) is truthy — !!"false" === true — and
|
||||||
|
// previously persisted as-is, silently forcing TLS on the next send.
|
||||||
|
// Reject instead of coercing.
|
||||||
|
const boolOrThrow = (val, label) => {
|
||||||
|
if (val === undefined) return;
|
||||||
|
if (typeof val !== 'boolean') {
|
||||||
|
throw new ValidationError(`${label} must be a boolean (got ${typeof val})`);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
boolOrThrow(enabled, 'enabled');
|
||||||
|
boolOrThrow(providers?.discord?.enabled, 'providers.discord.enabled');
|
||||||
|
boolOrThrow(providers?.telegram?.enabled, 'providers.telegram.enabled');
|
||||||
|
boolOrThrow(providers?.ntfy?.enabled, 'providers.ntfy.enabled');
|
||||||
|
boolOrThrow(providers?.email?.enabled, 'providers.email.enabled');
|
||||||
|
boolOrThrow(providers?.email?.secure, 'providers.email.secure');
|
||||||
|
|
||||||
// Validate provider webhook URLs and tokens
|
// Validate provider webhook URLs and tokens
|
||||||
if (providers) {
|
if (providers) {
|
||||||
if (providers.discord?.webhookUrl) {
|
if (providers.discord?.webhookUrl) {
|
||||||
@@ -96,6 +137,12 @@ module.exports = function({ notification, asyncHandler, ok }) {
|
|||||||
throw new ValidationError('Invalid SMTP host');
|
throw new ValidationError('Invalid SMTP host');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (providers.email?.port !== undefined) {
|
||||||
|
const p = Number(providers.email.port);
|
||||||
|
if (!Number.isInteger(p) || p < 1 || p > 65535) {
|
||||||
|
throw new ValidationError('SMTP port must be an integer 1-65535');
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Update enabled state
|
// Update enabled state
|
||||||
@@ -124,16 +171,50 @@ module.exports = function({ notification, asyncHandler, ok }) {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
if (providers.email) {
|
if (providers.email) {
|
||||||
|
// Non-destructive merge: an empty-string username/password from the
|
||||||
|
// UI (password field is intentionally left blank to keep stored
|
||||||
|
// credentials) must NOT clobber the stored credential.
|
||||||
|
const stored = notificationConfig.providers.email;
|
||||||
|
const incoming = { ...providers.email };
|
||||||
|
if (incoming.password === '') delete incoming.password;
|
||||||
|
if (incoming.username === '') delete incoming.username;
|
||||||
notificationConfig.providers.email = {
|
notificationConfig.providers.email = {
|
||||||
...notificationConfig.providers.email,
|
...stored,
|
||||||
...providers.email
|
...incoming
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Update events
|
// Update events. DC-092: the UI sends camelCase keys (containerDown);
|
||||||
|
// the canonical store/gate keys are kebab-case (container-down). Fold
|
||||||
|
// before merging so UI toggles actually reach the keys the send() gate
|
||||||
|
// reads. Values must be booleans; unknown keys pass through unchanged
|
||||||
|
// (canonicalized if known alias) and merge over defaults.
|
||||||
if (events) {
|
if (events) {
|
||||||
notificationConfig.events = { ...notificationConfig.events, ...events };
|
const EVENT_KEY_ALIASES = {
|
||||||
|
containerDown: 'container-down',
|
||||||
|
containerUp: 'container-up',
|
||||||
|
deploymentSuccess: 'deploy-success',
|
||||||
|
deploymentFailed: 'deploy-failed',
|
||||||
|
deploySuccess: 'deploy-success',
|
||||||
|
deployFailed: 'deploy-failed',
|
||||||
|
resourceAlert: 'alert',
|
||||||
|
updateAvailable: 'update-available',
|
||||||
|
backupComplete: 'backup-complete',
|
||||||
|
backupFailed: 'backup-failed',
|
||||||
|
autoRestart: 'auto-restart',
|
||||||
|
};
|
||||||
|
const folded = {};
|
||||||
|
for (const [k, v] of Object.entries(events)) {
|
||||||
|
const canonicalKey = EVENT_KEY_ALIASES[k] || k;
|
||||||
|
folded[canonicalKey] = v;
|
||||||
|
}
|
||||||
|
for (const [k, v] of Object.entries(folded)) {
|
||||||
|
if (typeof v !== 'boolean') {
|
||||||
|
throw new ValidationError(`events.${k} must be a boolean (got ${typeof v})`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
notificationConfig.events = { ...notificationConfig.events, ...folded };
|
||||||
}
|
}
|
||||||
|
|
||||||
// Update health check settings
|
// Update health check settings
|
||||||
|
|||||||
@@ -7,6 +7,28 @@ const fs = require('fs');
|
|||||||
const path = require('path');
|
const path = require('path');
|
||||||
const nodemailer = require('nodemailer');
|
const nodemailer = require('nodemailer');
|
||||||
|
|
||||||
|
// Canonical event names are kebab-case ('container-down'). Emitters and the
|
||||||
|
// settings UI historically send camelCase ('containerDown', 'deploymentSuccess')
|
||||||
|
// and the alias map below folds every known spelling onto the canonical key.
|
||||||
|
// DC-092: before this map, the events gate looked up the RAW event name, so
|
||||||
|
// 'deploymentSuccess' (routes/apps/deploy.js, routes/recipes/deploy.js) and
|
||||||
|
// 'auto-restart' (resource-monitor.js) were absent from DEFAULT events and
|
||||||
|
// silently dropped, and UI camelCase toggles never reached the kebab keys the
|
||||||
|
// gate reads — the toggles were cosmetic.
|
||||||
|
const EVENT_ALIASES = {
|
||||||
|
containerDown: 'container-down',
|
||||||
|
containerUp: 'container-up',
|
||||||
|
deploymentSuccess: 'deploy-success',
|
||||||
|
deploymentFailed: 'deploy-failed',
|
||||||
|
deploySuccess: 'deploy-success',
|
||||||
|
deployFailed: 'deploy-failed',
|
||||||
|
resourceAlert: 'alert',
|
||||||
|
updateAvailable: 'update-available',
|
||||||
|
backupComplete: 'backup-complete',
|
||||||
|
backupFailed: 'backup-failed',
|
||||||
|
autoRestart: 'auto-restart',
|
||||||
|
};
|
||||||
|
|
||||||
const DEFAULT_CONFIG = {
|
const DEFAULT_CONFIG = {
|
||||||
enabled: true,
|
enabled: true,
|
||||||
providers: {
|
providers: {
|
||||||
@@ -21,7 +43,13 @@ const DEFAULT_CONFIG = {
|
|||||||
'alert': true,
|
'alert': true,
|
||||||
'backup-complete': true,
|
'backup-complete': true,
|
||||||
'backup-failed': true,
|
'backup-failed': true,
|
||||||
'update-available': true
|
'update-available': true,
|
||||||
|
// DC-092: emitters (apps/recipes deploy routes) fire these; they were
|
||||||
|
// missing from defaults entirely, so every deploy notification was
|
||||||
|
// silently dropped before this fix.
|
||||||
|
'deploy-success': true,
|
||||||
|
'deploy-failed': true,
|
||||||
|
'auto-restart': true
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -48,6 +76,7 @@ class NotificationManager extends EventEmitter {
|
|||||||
try {
|
try {
|
||||||
if (fs.existsSync(this.NOTIFICATIONS_FILE)) {
|
if (fs.existsSync(this.NOTIFICATIONS_FILE)) {
|
||||||
const data = JSON.parse(fs.readFileSync(this.NOTIFICATIONS_FILE, 'utf8'));
|
const data = JSON.parse(fs.readFileSync(this.NOTIFICATIONS_FILE, 'utf8'));
|
||||||
|
this._canonicalizeLegacyKeys(data);
|
||||||
this.config = this._mergeConfig(DEFAULT_CONFIG, data);
|
this.config = this._mergeConfig(DEFAULT_CONFIG, data);
|
||||||
}
|
}
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
@@ -55,6 +84,40 @@ class NotificationManager extends EventEmitter {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* DC-092: configs saved by older clients may contain the legacy spellings
|
||||||
|
* the old POST /config merged verbatim — email.user/email.pass instead of
|
||||||
|
* username/password, and camelCase event keys instead of kebab-case. Fold
|
||||||
|
* them onto the canonical keys BEFORE the defaults merge (after the merge
|
||||||
|
* the canonical keys always exist from defaults, so the alias guards would
|
||||||
|
* never fire) so a config file written before this fix keeps working: SMTP
|
||||||
|
* auth applies and event toggles gate correctly.
|
||||||
|
*/
|
||||||
|
_canonicalizeLegacyKeys(data) {
|
||||||
|
// Email credentials: user/pass → username/password (only when the
|
||||||
|
// canonical key is absent in the raw data; canonical wins on conflict).
|
||||||
|
const email = data?.providers?.email;
|
||||||
|
if (email && typeof email === 'object') {
|
||||||
|
if (email.user !== undefined && email.username === undefined) email.username = email.user;
|
||||||
|
if (email.pass !== undefined && email.password === undefined) email.password = email.pass;
|
||||||
|
delete email.user;
|
||||||
|
delete email.pass;
|
||||||
|
// secure must be a real boolean: legacy string values (e.g. "false"
|
||||||
|
// from hand-edited JSON) are truthy under !! and would force TLS.
|
||||||
|
if (email.secure !== undefined) email.secure = email.secure === true;
|
||||||
|
}
|
||||||
|
// Event keys: camelCase → kebab-case canonical.
|
||||||
|
if (data?.events && typeof data.events === 'object') {
|
||||||
|
for (const [k, v] of Object.entries(data.events)) {
|
||||||
|
const canonicalKey = EVENT_ALIASES[k];
|
||||||
|
if (canonicalKey) {
|
||||||
|
if (data.events[canonicalKey] === undefined) data.events[canonicalKey] = v;
|
||||||
|
delete data.events[k];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Merge loaded config with defaults
|
* Merge loaded config with defaults
|
||||||
*/
|
*/
|
||||||
@@ -130,9 +193,15 @@ class NotificationManager extends EventEmitter {
|
|||||||
return { success: false, error: 'Notifications disabled' };
|
return { success: false, error: 'Notifications disabled' };
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check if event is enabled
|
// Fold legacy/camelCase spellings onto canonical kebab-case keys (DC-092).
|
||||||
if (event && this.config.events && !this.config.events[event]) {
|
const canonical = EVENT_ALIASES[event] || event;
|
||||||
return { success: false, error: `Event ${event} not enabled` };
|
|
||||||
|
// Check if event is enabled. 'test' bypasses the gate: it is the settings
|
||||||
|
// UI "Send Test" flow and is not an operator-togglable event (there is no
|
||||||
|
// 'test' key in events; gating on it made the Test button a no-op).
|
||||||
|
const gated = canonical !== 'test';
|
||||||
|
if (gated && this.config.events && this.config.events[canonical] !== true) {
|
||||||
|
return { success: false, error: `Event ${canonical} not enabled` };
|
||||||
}
|
}
|
||||||
|
|
||||||
const results = [];
|
const results = [];
|
||||||
@@ -141,7 +210,7 @@ class NotificationManager extends EventEmitter {
|
|||||||
// Discord
|
// Discord
|
||||||
if (providers.discord?.enabled && providers.discord?.webhookUrl) {
|
if (providers.discord?.enabled && providers.discord?.webhookUrl) {
|
||||||
try {
|
try {
|
||||||
const result = await this.sendDiscord(this._formatText(data, event), this._formatEmbed(data, event, type));
|
const result = await this.sendDiscord(this._formatText(data, canonical), this._formatEmbed(data, canonical, type));
|
||||||
results.push({ provider: 'discord', ...result });
|
results.push({ provider: 'discord', ...result });
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
results.push({ provider: 'discord', success: false, error: error.message });
|
results.push({ provider: 'discord', success: false, error: error.message });
|
||||||
@@ -151,7 +220,7 @@ class NotificationManager extends EventEmitter {
|
|||||||
// Telegram
|
// Telegram
|
||||||
if (providers.telegram?.enabled && providers.telegram?.botToken && providers.telegram?.chatId) {
|
if (providers.telegram?.enabled && providers.telegram?.botToken && providers.telegram?.chatId) {
|
||||||
try {
|
try {
|
||||||
const result = await this.sendTelegram(this._formatText(data, event));
|
const result = await this.sendTelegram(this._formatText(data, canonical));
|
||||||
results.push({ provider: 'telegram', ...result });
|
results.push({ provider: 'telegram', ...result });
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
results.push({ provider: 'telegram', success: false, error: error.message });
|
results.push({ provider: 'telegram', success: false, error: error.message });
|
||||||
@@ -161,7 +230,7 @@ class NotificationManager extends EventEmitter {
|
|||||||
// ntfy
|
// ntfy
|
||||||
if (providers.ntfy?.enabled && providers.ntfy?.topic) {
|
if (providers.ntfy?.enabled && providers.ntfy?.topic) {
|
||||||
try {
|
try {
|
||||||
const result = await this.sendNtfy(this._formatText(data, event), this._formatTitle(event));
|
const result = await this.sendNtfy(this._formatText(data, canonical), this._formatTitle(canonical));
|
||||||
results.push({ provider: 'ntfy', ...result });
|
results.push({ provider: 'ntfy', ...result });
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
results.push({ provider: 'ntfy', success: false, error: error.message });
|
results.push({ provider: 'ntfy', success: false, error: error.message });
|
||||||
@@ -172,8 +241,8 @@ class NotificationManager extends EventEmitter {
|
|||||||
if (providers.email?.enabled && providers.email?.host && providers.email?.to) {
|
if (providers.email?.enabled && providers.email?.host && providers.email?.to) {
|
||||||
try {
|
try {
|
||||||
const result = await this.sendEmail(
|
const result = await this.sendEmail(
|
||||||
this._formatTitle(event),
|
this._formatTitle(canonical),
|
||||||
this._formatText(data, event)
|
this._formatText(data, canonical)
|
||||||
);
|
);
|
||||||
results.push({ provider: 'email', ...result });
|
results.push({ provider: 'email', ...result });
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
@@ -183,9 +252,9 @@ class NotificationManager extends EventEmitter {
|
|||||||
|
|
||||||
const allSucceeded = results.every(r => r.success);
|
const allSucceeded = results.every(r => r.success);
|
||||||
this._addToHistory({
|
this._addToHistory({
|
||||||
title: this._formatTitle(event),
|
title: this._formatTitle(canonical),
|
||||||
type,
|
type,
|
||||||
event,
|
event: canonical,
|
||||||
results
|
results
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -290,7 +359,7 @@ class NotificationManager extends EventEmitter {
|
|||||||
const transporter = nodemailer.createTransport({
|
const transporter = nodemailer.createTransport({
|
||||||
host,
|
host,
|
||||||
port: parseInt(port) || 587,
|
port: parseInt(port) || 587,
|
||||||
secure: !!secure,
|
secure: secure === true,
|
||||||
auth: username ? {
|
auth: username ? {
|
||||||
user: username,
|
user: username,
|
||||||
pass: password
|
pass: password
|
||||||
|
|||||||
Vendored
+60
-60
File diff suppressed because one or more lines are too long
@@ -240,9 +240,23 @@
|
|||||||
document.getElementById('ntfy-server').value = config.providers.ntfy.serverUrl;
|
document.getElementById('ntfy-server').value = config.providers.ntfy.serverUrl;
|
||||||
}
|
}
|
||||||
|
|
||||||
// email fields
|
// email fields — DC-092: prefill the FULL form so a save doesn't
|
||||||
|
// silently wipe fields the GET response previously omitted. Password
|
||||||
|
// is never returned; when one is stored the field shows a keep-hint
|
||||||
|
// and an empty submit preserves the stored credential server-side.
|
||||||
if (config.providers?.email?.host) document.getElementById('email-host').value = config.providers.email.host;
|
if (config.providers?.email?.host) document.getElementById('email-host').value = config.providers.email.host;
|
||||||
if (config.providers?.email?.from) document.getElementById('email-from').value = config.providers.email.from;
|
if (config.providers?.email?.from) document.getElementById('email-from').value = config.providers.email.from;
|
||||||
|
if (config.providers?.email?.to) document.getElementById('email-to').value = config.providers.email.to;
|
||||||
|
if (config.providers?.email?.port) document.getElementById('email-port').value = config.providers.email.port;
|
||||||
|
if (config.providers?.email?.secure !== undefined) document.getElementById('email-secure').checked = config.providers.email.secure === true;
|
||||||
|
if (config.providers?.email?.username) document.getElementById('email-user').value = config.providers.email.username;
|
||||||
|
const emailPassEl = document.getElementById('email-pass');
|
||||||
|
if (config.providers?.email?.hasPassword) {
|
||||||
|
emailPassEl.value = '';
|
||||||
|
emailPassEl.placeholder = 'saved — leave blank to keep';
|
||||||
|
} else {
|
||||||
|
emailPassEl.placeholder = 'app password';
|
||||||
|
}
|
||||||
|
|
||||||
// Health check
|
// Health check
|
||||||
document.getElementById('health-check-enabled').checked = config.healthCheck?.enabled || false;
|
document.getElementById('health-check-enabled').checked = config.healthCheck?.enabled || false;
|
||||||
@@ -254,12 +268,14 @@
|
|||||||
`Last check: ${new Date(config.healthCheck.lastCheck).toLocaleString()}`;
|
`Last check: ${new Date(config.healthCheck.lastCheck).toLocaleString()}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Events
|
// Events — canonical kebab-case keys, matching the backend store
|
||||||
document.getElementById('event-container-down').checked = config.events?.containerDown !== false;
|
// (DC-092: previously read camelCase keys that never existed, so
|
||||||
document.getElementById('event-container-up').checked = config.events?.containerUp !== false;
|
// every toggle re-rendered as 'checked' regardless of stored state).
|
||||||
document.getElementById('event-deploy-success').checked = config.events?.deploymentSuccess !== false;
|
document.getElementById('event-container-down').checked = config.events?.['container-down'] !== false;
|
||||||
document.getElementById('event-deploy-failed').checked = config.events?.deploymentFailed !== false;
|
document.getElementById('event-container-up').checked = config.events?.['container-up'] === true;
|
||||||
document.getElementById('event-resource-alert').checked = config.events?.resourceAlert !== false;
|
document.getElementById('event-deploy-success').checked = config.events?.['deploy-success'] !== false;
|
||||||
|
document.getElementById('event-deploy-failed').checked = config.events?.['deploy-failed'] !== false;
|
||||||
|
document.getElementById('event-resource-alert').checked = config.events?.['alert'] !== false;
|
||||||
}
|
}
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
errorHandler.logError('[Notifications] Load Config', error, { function: 'loadConfig' });
|
errorHandler.logError('[Notifications] Load Config', error, { function: 'loadConfig' });
|
||||||
@@ -325,18 +341,18 @@
|
|||||||
host: document.getElementById('email-host').value.trim(),
|
host: document.getElementById('email-host').value.trim(),
|
||||||
port: parseInt(document.getElementById('email-port').value) || 587,
|
port: parseInt(document.getElementById('email-port').value) || 587,
|
||||||
secure: document.getElementById('email-secure').checked,
|
secure: document.getElementById('email-secure').checked,
|
||||||
user: document.getElementById('email-user').value.trim(),
|
username: document.getElementById('email-user').value.trim(),
|
||||||
pass: document.getElementById('email-pass').value.trim(),
|
password: document.getElementById('email-pass').value.trim(),
|
||||||
from: document.getElementById('email-from').value.trim(),
|
from: document.getElementById('email-from').value.trim(),
|
||||||
to: document.getElementById('email-to').value.trim()
|
to: document.getElementById('email-to').value.trim()
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
events: {
|
events: {
|
||||||
containerDown: document.getElementById('event-container-down').checked,
|
'container-down': document.getElementById('event-container-down').checked,
|
||||||
containerUp: document.getElementById('event-container-up').checked,
|
'container-up': document.getElementById('event-container-up').checked,
|
||||||
deploymentSuccess: document.getElementById('event-deploy-success').checked,
|
'deploy-success': document.getElementById('event-deploy-success').checked,
|
||||||
deploymentFailed: document.getElementById('event-deploy-failed').checked,
|
'deploy-failed': document.getElementById('event-deploy-failed').checked,
|
||||||
resourceAlert: document.getElementById('event-resource-alert').checked
|
'alert': document.getElementById('event-resource-alert').checked
|
||||||
},
|
},
|
||||||
healthCheck: {
|
healthCheck: {
|
||||||
enabled: document.getElementById('health-check-enabled').checked,
|
enabled: document.getElementById('health-check-enabled').checked,
|
||||||
|
|||||||
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
const CACHE = 'dashcaddy-shell-497e1f671c';
|
const CACHE = 'dashcaddy-shell-3354f5fd96';
|
||||||
const PRECACHE = [
|
const PRECACHE = [
|
||||||
'/',
|
'/',
|
||||||
'/index.html',
|
'/index.html',
|
||||||
|
|||||||
Reference in New Issue
Block a user