mirror of
https://github.com/Studio-Saelix/sencho.git
synced 2026-08-18 14:33:19 +00:00
fix(settings): reflect role, tier, and node scope in settings panels (#1300)
* fix(settings): reflect role, tier, and node scope in settings panels Three gate fixes so the Settings panels match what the backend enforces. Non-admin roles saw editable fields and a Save button on System Limits, Developer, and App Store, but writes require admin, so Save always failed. These panels now render read-only for non-admins (controls disabled, Save hidden) while still showing the values. The Developer panel is node-scoped but read and wrote the controlling instance regardless of the selected node, so a remote node's debug mode and retention windows could not be changed from the UI. It now targets the active node like System Limits. The settings shell derived the Admiral entitlement locally; it now consumes the backend-provided value the API authorizes against, and that value is corrected to require an active paid tier so an expired Admiral license no longer reports as Admiral. * fix(settings): gate audit_retention_days writes behind Admiral audit_retention_days configures the Admiral-only audit log (the audit-log routes require Admiral, and the Developer settings UI only shows the field to Admiral operators), but the settings POST/PATCH handlers only required an admin role. A non-Admiral admin (for example Skipper, or an expired-Admiral admin whose tier dropped to community) could still set it through the API. Gate writes to that key with requireAdmiral on both the single-key POST and the bulk PATCH paths, matching the audit-log routes and the UI. Other keys remain writable by any admin. * fix(settings): reject unknown keys on PATCH instead of silently stripping The bulk settings PATCH validated the body with a Zod object schema that strips unknown keys by default, so a request carrying a disallowed key (for example an auth_* secret) returned 200 as a no-op instead of being rejected. No secret was written, but it diverged from the single-key POST path, which rejects disallowed keys, and could hide client drift. PATCH now rejects any key outside the allowlist with a 400 before validation or write, keeping the bulk path fail-closed and consistent with POST.
This commit is contained in:
@@ -249,4 +249,95 @@ describe('PATCH /api/settings (bulk update)', () => {
|
||||
.send({});
|
||||
expect(res.status).toBe(200);
|
||||
});
|
||||
|
||||
it('rejects a PATCH with unknown or disallowed keys (400) and writes nothing', async () => {
|
||||
const before = DatabaseService.getInstance().getGlobalSettings().host_cpu_limit;
|
||||
const res = await request(app)
|
||||
.patch('/api/settings')
|
||||
.set('Cookie', adminCookie)
|
||||
.send({ host_cpu_limit: 65, auth_jwt_secret: 'pwned' });
|
||||
expect(res.status).toBe(400);
|
||||
expect(res.body.error).toMatch(/Invalid or disallowed setting key/);
|
||||
// Fail-closed: the allowlisted key in the same body must not be written.
|
||||
expect(DatabaseService.getInstance().getGlobalSettings().host_cpu_limit).toBe(before);
|
||||
});
|
||||
|
||||
it('rejects a PATCH whose only key is a private auth secret (was a silent 200 no-op before)', async () => {
|
||||
const res = await request(app)
|
||||
.patch('/api/settings')
|
||||
.set('Cookie', adminCookie)
|
||||
.send({ auth_jwt_secret: 'pwned' });
|
||||
expect(res.status).toBe(400);
|
||||
expect(res.body.error).toMatch(/Invalid or disallowed setting key/);
|
||||
// The auth secret must never be written through the settings API.
|
||||
expect(DatabaseService.getInstance().getGlobalSettings().auth_jwt_secret).not.toBe('pwned');
|
||||
});
|
||||
});
|
||||
|
||||
describe('Admiral-only setting keys (audit_retention_days)', () => {
|
||||
// audit_retention_days configures the Admiral-only audit log, so its write is
|
||||
// gated by requireAdmiral in addition to the admin role. beforeAll mocks a
|
||||
// paid Admiral license; individual tests override the variant to simulate an
|
||||
// admin whose license is not Admiral.
|
||||
it('allows an Admiral admin to write audit_retention_days', async () => {
|
||||
const res = await request(app)
|
||||
.patch('/api/settings')
|
||||
.set('Cookie', adminCookie)
|
||||
.send({ audit_retention_days: 120 });
|
||||
expect(res.status).toBe(200);
|
||||
expect(DatabaseService.getInstance().getGlobalSettings().audit_retention_days).toBe('120');
|
||||
});
|
||||
|
||||
it('rejects an audit_retention_days PATCH from a non-Admiral admin (403) and does not apply it', async () => {
|
||||
const before = DatabaseService.getInstance().getGlobalSettings().audit_retention_days;
|
||||
const { LicenseService } = await import('../services/LicenseService');
|
||||
const spy = vi.spyOn(LicenseService.getInstance(), 'getVariant').mockReturnValue('skipper');
|
||||
try {
|
||||
const res = await request(app)
|
||||
.patch('/api/settings')
|
||||
.set('Cookie', adminCookie)
|
||||
.send({ audit_retention_days: 200 });
|
||||
expect(res.status).toBe(403);
|
||||
expect(res.body.code).toBe('ADMIRAL_REQUIRED');
|
||||
expect(DatabaseService.getInstance().getGlobalSettings().audit_retention_days).toBe(before);
|
||||
} finally {
|
||||
spy.mockReturnValue('admiral');
|
||||
}
|
||||
});
|
||||
|
||||
it('rejects an audit_retention_days single-key POST from a non-Admiral admin (403) and does not apply it', async () => {
|
||||
const before = DatabaseService.getInstance().getGlobalSettings().audit_retention_days;
|
||||
const { LicenseService } = await import('../services/LicenseService');
|
||||
const spy = vi.spyOn(LicenseService.getInstance(), 'getVariant').mockReturnValue('skipper');
|
||||
try {
|
||||
const res = await request(app)
|
||||
.post('/api/settings')
|
||||
.set('Cookie', adminCookie)
|
||||
.send({ key: 'audit_retention_days', value: '300' });
|
||||
expect(res.status).toBe(403);
|
||||
expect(res.body.code).toBe('ADMIRAL_REQUIRED');
|
||||
expect(DatabaseService.getInstance().getGlobalSettings().audit_retention_days).toBe(before);
|
||||
} finally {
|
||||
spy.mockReturnValue('admiral');
|
||||
}
|
||||
});
|
||||
|
||||
it('still lets a non-Admiral admin write non-Admiral keys via PATCH and POST (gate is per-key)', async () => {
|
||||
const { LicenseService } = await import('../services/LicenseService');
|
||||
const spy = vi.spyOn(LicenseService.getInstance(), 'getVariant').mockReturnValue('skipper');
|
||||
try {
|
||||
const patchRes = await request(app)
|
||||
.patch('/api/settings')
|
||||
.set('Cookie', adminCookie)
|
||||
.send({ host_cpu_limit: 55 });
|
||||
expect(patchRes.status).toBe(200);
|
||||
const postRes = await request(app)
|
||||
.post('/api/settings')
|
||||
.set('Cookie', adminCookie)
|
||||
.send({ key: 'host_ram_limit', value: '55' });
|
||||
expect(postRes.status).toBe(200);
|
||||
} finally {
|
||||
spy.mockReturnValue('admiral');
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
@@ -401,7 +401,42 @@ describe('GET /api/permissions/me', () => {
|
||||
expect(Array.isArray(res.body.globalPermissions)).toBe(true);
|
||||
expect(res.body.globalPermissions).toContain('stack:read');
|
||||
expect(res.body.globalPermissions).toContain('system:users');
|
||||
expect(typeof res.body.isAdmiral).toBe('boolean');
|
||||
// beforeAll mocks a paid admiral license.
|
||||
expect(res.body.isAdmiral).toBe(true);
|
||||
});
|
||||
|
||||
it('reports isAdmiral=false when the admiral variant is no longer on a paid tier', async () => {
|
||||
// An expired or downgraded admiral license keeps variant='admiral' but the
|
||||
// effective tier drops to community. isAdmiral must track the effective tier
|
||||
// (mirroring the requireAdmiral guard), not the lingering variant, or the
|
||||
// frontend would unlock admiral-only surfaces that the API then 403s.
|
||||
const { LicenseService } = await import('../services/LicenseService');
|
||||
const svc = LicenseService.getInstance();
|
||||
vi.spyOn(svc, 'getTier').mockReturnValue('community');
|
||||
try {
|
||||
const res = await request(app)
|
||||
.get('/api/permissions/me')
|
||||
.set('Authorization', `Bearer ${adminToken()}`);
|
||||
expect(res.status).toBe(200);
|
||||
expect(res.body.isAdmiral).toBe(false);
|
||||
} finally {
|
||||
vi.spyOn(svc, 'getTier').mockReturnValue('paid');
|
||||
}
|
||||
});
|
||||
|
||||
it('reports isAdmiral=false for a paid non-admiral (skipper) license', async () => {
|
||||
const { LicenseService } = await import('../services/LicenseService');
|
||||
const svc = LicenseService.getInstance();
|
||||
vi.spyOn(svc, 'getVariant').mockReturnValue('skipper');
|
||||
try {
|
||||
const res = await request(app)
|
||||
.get('/api/permissions/me')
|
||||
.set('Authorization', `Bearer ${adminToken()}`);
|
||||
expect(res.status).toBe(200);
|
||||
expect(res.body.isAdmiral).toBe(false);
|
||||
} finally {
|
||||
vi.spyOn(svc, 'getVariant').mockReturnValue('admiral');
|
||||
}
|
||||
});
|
||||
|
||||
it('returns 401 when not authenticated', async () => {
|
||||
|
||||
@@ -30,7 +30,8 @@ permissionsRouter.get('/me', authMiddleware, (req: Request, res: Response): void
|
||||
globalRole,
|
||||
globalPermissions,
|
||||
scopedPermissions,
|
||||
isAdmiral: LicenseService.getInstance().getVariant() === 'admiral',
|
||||
isAdmiral: LicenseService.getInstance().getTier() === 'paid'
|
||||
&& LicenseService.getInstance().getVariant() === 'admiral',
|
||||
});
|
||||
} catch (error) {
|
||||
console.error('[Permissions] Error:', error);
|
||||
|
||||
@@ -2,7 +2,7 @@ import { Router, type Request, type Response } from 'express';
|
||||
import { z } from 'zod';
|
||||
import { DatabaseService } from '../services/DatabaseService';
|
||||
import { authMiddleware } from '../middleware/auth';
|
||||
import { requireAdmin } from '../middleware/tierGates';
|
||||
import { requireAdmin, requireAdmiral } from '../middleware/tierGates';
|
||||
|
||||
// Strict allowlist of keys readable and writable via the generic settings
|
||||
// API. This is the single source of truth for what the endpoint exposes:
|
||||
@@ -26,6 +26,12 @@ const ALLOWED_SETTING_KEYS = new Set([
|
||||
'scan_history_per_image_limit',
|
||||
]);
|
||||
|
||||
// Keys whose write requires the Admiral variant, not just an admin role.
|
||||
// audit_retention_days configures the Admiral-only audit log (the audit-log
|
||||
// routes are requireAdmiral and the UI only shows this field to Admiral
|
||||
// operators), so a lower-tier admin must not be able to set it.
|
||||
const ADMIRAL_ONLY_SETTING_KEYS = new Set(['audit_retention_days']);
|
||||
|
||||
// Bulk PATCH schema. All keys optional; present keys are fully validated.
|
||||
const SettingsPatchSchema = z.object({
|
||||
host_cpu_limit: z.coerce.number().int().min(1).max(100).transform(String),
|
||||
@@ -71,6 +77,7 @@ settingsRouter.post('/', authMiddleware, async (req: Request, res: Response): Pr
|
||||
res.status(400).json({ error: `Invalid or disallowed setting key: ${key}` });
|
||||
return;
|
||||
}
|
||||
if (ADMIRAL_ONLY_SETTING_KEYS.has(key) && !requireAdmiral(req, res)) return;
|
||||
if (value === undefined || value === null) {
|
||||
res.status(400).json({ error: 'Setting value is required' });
|
||||
return;
|
||||
@@ -109,11 +116,24 @@ settingsRouter.post('/', authMiddleware, async (req: Request, res: Response): Pr
|
||||
settingsRouter.patch('/', authMiddleware, async (req: Request, res: Response): Promise<void> => {
|
||||
if (!requireAdmin(req, res)) return;
|
||||
try {
|
||||
// Reject unknown/disallowed keys outright rather than letting Zod silently
|
||||
// strip them. This keeps the bulk path fail-closed and consistent with the
|
||||
// single-key POST, so a client sending a stale or disallowed key (e.g. an
|
||||
// auth_* secret) gets a 400, not a misleading 200.
|
||||
const body = req.body;
|
||||
if (body && typeof body === 'object' && !Array.isArray(body)) {
|
||||
const unknownKeys = Object.keys(body).filter(k => !ALLOWED_SETTING_KEYS.has(k));
|
||||
if (unknownKeys.length > 0) {
|
||||
res.status(400).json({ error: `Invalid or disallowed setting key(s): ${unknownKeys.join(', ')}` });
|
||||
return;
|
||||
}
|
||||
}
|
||||
const parsed = SettingsPatchSchema.safeParse(req.body);
|
||||
if (!parsed.success) {
|
||||
res.status(400).json({ error: 'Validation failed', details: parsed.error.flatten().fieldErrors });
|
||||
return;
|
||||
}
|
||||
if (Object.keys(parsed.data).some(k => ADMIRAL_ONLY_SETTING_KEYS.has(k)) && !requireAdmiral(req, res)) return;
|
||||
const db = DatabaseService.getInstance();
|
||||
const updateMany = db.getDb().transaction((entries: [string, string][]) => {
|
||||
for (const [k, v] of entries) {
|
||||
|
||||
Reference in New Issue
Block a user