1a195a96bd
- Merge origin/main into branch (resolve conflict in integrations_dashboard.html) - Add defensive JSON parsing with try/except for integration.config - Wrap tester() call in try/except to prevent 500 errors from bad config - Add i18n key integrations.connection_test_failed_fallback in en.json - Reference i18n key in template JS fallback message - Update SECURITY_AUDIT.md: add fix date (2026-03-23), update doc date - Remove accidental revert.sh file - Fix missing MagicMock/patch imports in test file - Add tests for invalid JSON config and tester exception error paths Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com> Agent-Logs-Url: https://github.com/christianlouis/DocuElevate/sessions/daebb70e-059a-4601-8864-88eef49f99cf
41 lines
1.2 KiB
Python
41 lines
1.2 KiB
Python
"""
|
|
System reset view — admin-only UI page.
|
|
|
|
Renders a confirmation-heavy page that allows administrators to:
|
|
1. **Full Reset** — wipe all user data (DB + disk) for a fresh start.
|
|
2. **Reset & Re-import** — move originals to a reimport folder, wipe,
|
|
and let the watch-folder mechanism re-ingest them.
|
|
|
|
Both options are gated behind the ``ENABLE_FACTORY_RESET`` feature flag.
|
|
"""
|
|
|
|
import logging
|
|
|
|
from fastapi import Depends, Request
|
|
from fastapi.responses import RedirectResponse, Response
|
|
from sqlalchemy.orm import Session
|
|
|
|
from app.config import settings
|
|
from app.views.base import APIRouter, get_db, require_login, templates
|
|
from app.views.settings import require_admin_access
|
|
|
|
logger = logging.getLogger(__name__)
|
|
router = APIRouter()
|
|
|
|
|
|
@router.get("/admin/system-reset")
|
|
@require_login
|
|
@require_admin_access
|
|
async def system_reset_page(request: Request, db: Session = Depends(get_db)) -> Response:
|
|
"""Render the system reset administration page."""
|
|
if not settings.enable_factory_reset:
|
|
return RedirectResponse(url="/settings", status_code=302)
|
|
|
|
return templates.TemplateResponse(
|
|
"system_reset.html",
|
|
{
|
|
"request": request,
|
|
"factory_reset_on_startup": settings.factory_reset_on_startup,
|
|
},
|
|
)
|