import type { SecuritySettings } from '../types' import { createSectionRegistry } from '../utils/section-registry' import { RateLimitSection } from '../request-limits/rate-limit-section' import { SensitiveWordsSection } from '../request-limits/sensitive-words-section' import { SSRFSection } from '../request-limits/ssrf-section' const SECURITY_SECTIONS = [ { id: 'rate-limit', titleKey: 'Rate Limiting', descriptionKey: 'Configure model request rate limiting', build: (settings: SecuritySettings) => ( ), }, { id: 'sensitive-words', titleKey: 'Sensitive Words', descriptionKey: 'Configure sensitive word filtering', build: (settings: SecuritySettings) => ( ), }, { id: 'ssrf', titleKey: 'SSRF Protection', descriptionKey: 'Configure SSRF (Server-Side Request Forgery) protection', build: (settings: SecuritySettings) => ( ), }, ] as const export type SecuritySectionId = (typeof SECURITY_SECTIONS)[number]['id'] const securityRegistry = createSectionRegistry< SecuritySectionId, SecuritySettings >({ sections: SECURITY_SECTIONS, defaultSection: 'rate-limit', basePath: '/system-settings/security', urlStyle: 'path', }) export const SECURITY_SECTION_IDS = securityRegistry.sectionIds export const SECURITY_DEFAULT_SECTION = securityRegistry.defaultSection export const getSecuritySectionNavItems = securityRegistry.getSectionNavItems export const getSecuritySectionContent = securityRegistry.getSectionContent