115 lines
3.7 KiB
Python
115 lines
3.7 KiB
Python
"""FastAPI application entrypoint and router wiring for the backend."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from contextlib import asynccontextmanager
|
|
from typing import TYPE_CHECKING
|
|
|
|
from fastapi import APIRouter, FastAPI
|
|
from fastapi.middleware.cors import CORSMiddleware
|
|
from fastapi_pagination import add_pagination
|
|
|
|
from app.api.activity import router as activity_router
|
|
from app.api.agent import router as agent_router
|
|
from app.api.agents import router as agents_router
|
|
from app.api.approvals import router as approvals_router
|
|
from app.api.auth import router as auth_router
|
|
from app.api.board_group_memory import router as board_group_memory_router
|
|
from app.api.board_groups import router as board_groups_router
|
|
from app.api.board_memory import router as board_memory_router
|
|
from app.api.board_onboarding import router as board_onboarding_router
|
|
from app.api.boards import router as boards_router
|
|
from app.api.gateway import router as gateway_router
|
|
from app.api.gateways import router as gateways_router
|
|
from app.api.metrics import router as metrics_router
|
|
from app.api.organizations import router as organizations_router
|
|
from app.api.souls_directory import router as souls_directory_router
|
|
from app.api.tasks import router as tasks_router
|
|
from app.api.users import router as users_router
|
|
from app.core.config import settings
|
|
from app.core.error_handling import install_error_handling
|
|
from app.core.logging import configure_logging, get_logger
|
|
from app.db.session import init_db
|
|
|
|
if TYPE_CHECKING:
|
|
from collections.abc import AsyncIterator
|
|
|
|
configure_logging()
|
|
logger = get_logger(__name__)
|
|
|
|
|
|
@asynccontextmanager
|
|
async def lifespan(_: FastAPI) -> AsyncIterator[None]:
|
|
"""Initialize application resources before serving requests."""
|
|
logger.info(
|
|
"app.lifecycle.starting environment=%s db_auto_migrate=%s",
|
|
settings.environment,
|
|
settings.db_auto_migrate,
|
|
)
|
|
await init_db()
|
|
logger.info("app.lifecycle.started")
|
|
try:
|
|
yield
|
|
finally:
|
|
logger.info("app.lifecycle.stopped")
|
|
|
|
|
|
app = FastAPI(title="Mission Control API", version="0.1.0", lifespan=lifespan)
|
|
|
|
origins = [o.strip() for o in settings.cors_origins.split(",") if o.strip()]
|
|
if origins:
|
|
app.add_middleware(
|
|
CORSMiddleware,
|
|
allow_origins=origins,
|
|
allow_credentials=True,
|
|
allow_methods=["*"],
|
|
allow_headers=["*"],
|
|
)
|
|
logger.info("app.cors.enabled origins_count=%s", len(origins))
|
|
else:
|
|
logger.info("app.cors.disabled")
|
|
|
|
install_error_handling(app)
|
|
|
|
|
|
@app.get("/health")
|
|
def health() -> dict[str, bool]:
|
|
"""Lightweight liveness probe endpoint."""
|
|
return {"ok": True}
|
|
|
|
|
|
@app.get("/healthz")
|
|
def healthz() -> dict[str, bool]:
|
|
"""Alias liveness probe endpoint for platform compatibility."""
|
|
return {"ok": True}
|
|
|
|
|
|
@app.get("/readyz")
|
|
def readyz() -> dict[str, bool]:
|
|
"""Readiness probe endpoint for service orchestration checks."""
|
|
return {"ok": True}
|
|
|
|
|
|
api_v1 = APIRouter(prefix="/api/v1")
|
|
api_v1.include_router(auth_router)
|
|
api_v1.include_router(agent_router)
|
|
api_v1.include_router(agents_router)
|
|
api_v1.include_router(activity_router)
|
|
api_v1.include_router(gateway_router)
|
|
api_v1.include_router(gateways_router)
|
|
api_v1.include_router(metrics_router)
|
|
api_v1.include_router(organizations_router)
|
|
api_v1.include_router(souls_directory_router)
|
|
api_v1.include_router(board_groups_router)
|
|
api_v1.include_router(board_group_memory_router)
|
|
api_v1.include_router(boards_router)
|
|
api_v1.include_router(board_memory_router)
|
|
api_v1.include_router(board_onboarding_router)
|
|
api_v1.include_router(approvals_router)
|
|
api_v1.include_router(tasks_router)
|
|
api_v1.include_router(users_router)
|
|
app.include_router(api_v1)
|
|
|
|
add_pagination(app)
|
|
logger.debug("app.routes.registered count=%s", len(app.routes))
|