cfec3bb906
- backend/app/routers/storage_config.py: 5 admin-only endpoints proxying storage-service config + migration API (GET/PATCH/POST/DELETE) - backend/app/main.py: register storage_config router - frontend/src/api/client.ts: StorageStatus, MigrationStatus, StorageBackendConfig interfaces + 5 API functions - frontend/src/pages/StorageAdminPage.tsx: full admin UI — backend health dot, driver selector (local/S3/WebDAV), conditional credential fields, Test & Migrate button, live 2s-poll migration progress bar, Cancel - frontend/src/App.tsx: /admin/storage route (AdminRoute guard) - CLAUDE.md: storage enforcement rule, updated Docker tables (6 services, 3 volumes), §20 in merge checklist - backend/CLAUDE.md, frontend/CLAUDE.md, doc-service/CLAUDE.md, ai-service/CLAUDE.md: updated to reflect storage-service integration - tests/ALL_TESTS.md + tests/storage-service_tests.md: §20 (20 tests) - backend/STATUS.md, frontend/STATUS.md: updated with new endpoints/routes - changelog/2026-04-20_storage-service.md: full change log Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
71 lines
2.6 KiB
Python
71 lines
2.6 KiB
Python
import asyncio
|
|
from contextlib import asynccontextmanager
|
|
|
|
from fastapi import FastAPI
|
|
from fastapi.middleware.cors import CORSMiddleware
|
|
|
|
from app.core.app_config import seed_builtin_themes
|
|
from app.core.config import settings
|
|
from app.database import AsyncSessionLocal
|
|
from app.routers import admin, auth, categories_proxy, documents_proxy, groups, plugins, profile, services, users
|
|
from app.routers import settings as settings_router
|
|
from app.routers import storage_config
|
|
from app.services.group_bootstrap import ensure_service_admin_groups
|
|
from app.services.service_health import check_all, health_check_loop, register_services
|
|
|
|
|
|
@asynccontextmanager
|
|
async def lifespan(app: FastAPI):
|
|
await seed_builtin_themes()
|
|
register_services(
|
|
doc_service_url=settings.DOC_SERVICE_URL,
|
|
ai_service_url=settings.AI_SERVICE_URL,
|
|
storage_service_url=settings.STORAGE_SERVICE_URL,
|
|
)
|
|
# Create <service-id>-admin groups for every registered service (idempotent)
|
|
async with AsyncSessionLocal() as db:
|
|
await ensure_service_admin_groups(db)
|
|
# Run an initial check immediately so the first API response is accurate
|
|
await check_all()
|
|
task = asyncio.create_task(health_check_loop())
|
|
yield
|
|
task.cancel()
|
|
try:
|
|
await task
|
|
except asyncio.CancelledError:
|
|
pass
|
|
|
|
|
|
app = FastAPI(title=settings.PROJECT_NAME, version="0.1.0", lifespan=lifespan)
|
|
|
|
app.add_middleware(
|
|
CORSMiddleware,
|
|
allow_origins=settings.CORS_ORIGINS,
|
|
allow_credentials=True,
|
|
allow_methods=["*"],
|
|
allow_headers=["*"],
|
|
)
|
|
|
|
app.include_router(auth.router, prefix="/api/auth", tags=["auth"])
|
|
app.include_router(users.router, prefix="/api/users", tags=["users"])
|
|
app.include_router(profile.router, prefix="/api/profile", tags=["profile"])
|
|
app.include_router(admin.router, prefix="/api/admin", tags=["admin"])
|
|
app.include_router(groups.router, prefix="/api/admin/groups", tags=["admin"])
|
|
app.include_router(settings_router.router, prefix="/api/settings", tags=["settings"])
|
|
app.include_router(services.router, prefix="/api/services", tags=["services"])
|
|
app.include_router(storage_config.router, prefix="/api/admin", tags=["admin"])
|
|
app.include_router(plugins.router, prefix="/api/plugins", tags=["plugins"])
|
|
# categories_proxy MUST be registered before documents_proxy —
|
|
# otherwise /api/documents/{path:path} swallows /api/documents/categories/*
|
|
app.include_router(
|
|
categories_proxy.router,
|
|
prefix="/api/documents/categories",
|
|
tags=["categories"],
|
|
)
|
|
app.include_router(documents_proxy.router, prefix="/api/documents", tags=["documents"])
|
|
|
|
|
|
@app.get("/api/health")
|
|
def health():
|
|
return {"status": "ok"}
|