Issue #3 - Unbounded Query Results (OOM): - get_all_archived_history() now uses keyset pagination with bounded max_rows (50k default) - Added 'id' field to records from get_archived_history() and get_archived_history_keyset() - Protocol signature updated with page_size, max_rows, last_ban_id params Issue #7 - Docker Health Check Fails: - Added curl to Dockerfile.backend runtime image - HEALTHCHECK now uses 'curl -f http://localhost:8000/api/health' - compose.prod.yml: increased start_period to 40s, timeout to 10s - Frontend healthcheck proxies to backend /api/health Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
33 lines
805 B
Python
33 lines
805 B
Python
"""Server domain models.
|
|
|
|
Internal domain-focused models used by server_service. These represent the
|
|
business domain layer and are independent of HTTP response shapes.
|
|
|
|
Response models are defined in `app.models.server` and mappers convert domain
|
|
models to response models at the router boundary.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass(frozen=True)
|
|
class DomainServerSettings:
|
|
"""Fail2ban server-level settings (domain model)."""
|
|
|
|
log_level: str
|
|
log_target: str
|
|
db_path: str
|
|
db_purge_age: int
|
|
db_max_matches: int
|
|
syslog_socket: str | None = None
|
|
|
|
|
|
@dataclass(frozen=True)
|
|
class DomainServerSettingsResult:
|
|
"""Server settings with warnings (domain model)."""
|
|
|
|
settings: DomainServerSettings
|
|
warnings: dict[str, bool]
|