File size: 10,432 Bytes
d1f3f31 ac37ad6 d1f3f31 ac37ad6 d1f3f31 ac37ad6 d1f3f31 ac37ad6 d1f3f31 ac37ad6 d1f3f31 ac37ad6 d1f3f31 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 | """Thin FastAPI routing layer — delegates all business logic to services."""
from __future__ import annotations
import atexit
import logging
import os
import subprocess
import sys
from pathlib import Path
from typing import Any
from fastapi import FastAPI, File, HTTPException, UploadFile, WebSocket, WebSocketDisconnect
from fastapi import APIRouter
from fastapi.middleware.cors import CORSMiddleware
from pydantic import BaseModel
from src.nexus_ai.core.paths import AUDIO_UPLOADS_DIR, SQLITE_DB_PATH, ensure_runtime_dirs
from src.nexus_ai.repositories.sqlite import init_sqlite
from src.nexus_ai.repositories.sqlite import JobRepository
from src.core.logging import configure_logging
from src.middleware.request_context import request_context_middleware
from src.services.health_service import database_check, storage_check, worker_check
from src.services.upload_service import upload_service
from src.services.job_service import job_service
from src.services.follow_up_service import follow_up_service
from src.services.dashboard_service import dashboard_service
from src.services.report_service import report_service
# Backward-compatible re-exports for existing tests and internal callers
readiness = dashboard_service.readiness
import uuid
from datetime import datetime, timezone
REPO_ROOT = Path(__file__).resolve().parents[2]
JOB_REPOSITORY = JobRepository()
MANAGED_WORKER_PROCESSES: dict[str, subprocess.Popen[str]] = {}
MANAGED_WORKER_HANDLES: dict[str, Any] = {}
LOGGER = logging.getLogger("uvicorn")
def local_structured_entities(text: str, diarization: Any) -> list[dict[str, Any]]:
from src.services.analysis_service import analysis_service
return analysis_service.local_structured_entities(text, diarization)
def load_env_file(path: Path) -> None:
if not path.exists():
return
for raw_line in path.read_text(encoding="utf-8").splitlines():
line = raw_line.strip()
if not line or line.startswith("#") or "=" not in line:
continue
key, value = line.split("=", 1)
os.environ.setdefault(key.strip(), value.strip().strip('"').strip("'"))
def launch_worker_processes() -> dict[str, subprocess.Popen[str]]:
if MANAGED_WORKER_PROCESSES:
return MANAGED_WORKER_PROCESSES
if os.getenv("NEXUS_DISABLE_AUTO_WORKERS", "0").lower() in {"1", "true", "yes", "on"}:
return {}
log_dir = REPO_ROOT / "logs"
log_dir.mkdir(exist_ok=True)
env = os.environ.copy()
env.setdefault("PYTHONUNBUFFERED", "1")
for worker_type in ("audio", "ml"):
worker_log = log_dir / f"{worker_type}_worker.log"
handle = worker_log.open("a", encoding="utf-8")
process = subprocess.Popen(
[sys.executable, "-m", "src.workers.run_worker"],
cwd=REPO_ROOT,
env={**env, "WORKER_TYPE": worker_type},
stdout=handle,
stderr=subprocess.STDOUT,
text=True,
)
MANAGED_WORKER_PROCESSES[worker_type] = process
MANAGED_WORKER_HANDLES[worker_type] = handle
LOGGER.info("Started managed worker processes: %s", ", ".join(sorted(MANAGED_WORKER_PROCESSES)))
return MANAGED_WORKER_PROCESSES
def stop_managed_workers() -> None:
for worker_type, process in list(MANAGED_WORKER_PROCESSES.items()):
if process.poll() is None:
process.terminate()
try:
process.wait(timeout=5)
except subprocess.TimeoutExpired:
process.kill()
handle = MANAGED_WORKER_HANDLES.pop(worker_type, None)
if handle is not None:
handle.close()
MANAGED_WORKER_PROCESSES.pop(worker_type, None)
load_env_file(REPO_ROOT / ".env.local")
load_env_file(REPO_ROOT / ".env")
configure_logging()
app = FastAPI(title="AI Audio Analysis API", version="1.0.0")
app.middleware("http")(request_context_middleware)
DEFAULT_ALLOWED_ORIGINS = [
"http://localhost:3000",
"http://127.0.0.1:3000",
"http://localhost:3001",
"http://127.0.0.1:3001",
]
allowed_origins = [
origin.strip()
for origin in os.getenv("ALLOWED_ORIGINS", ",".join(DEFAULT_ALLOWED_ORIGINS)).split(",")
if origin.strip()
]
@app.on_event("startup")
async def startup_event():
existing = os.environ.get("PATH", "").split(os.pathsep)
for ffmpeg_dir in REPO_ROOT.glob("ffmpeg-*"):
candidate = ffmpeg_dir / "bin"
if candidate.exists() and str(candidate) not in existing:
os.environ["PATH"] = str(candidate) + os.pathsep + os.environ.get("PATH", "")
break
ensure_runtime_dirs()
init_sqlite()
launch_worker_processes()
atexit.register(stop_managed_workers)
app.add_middleware(
CORSMiddleware,
allow_origins=allowed_origins,
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
# ------------------------------------------------------------------ #
# Request Models
# ------------------------------------------------------------------ #
class DiarizedTurn(BaseModel):
speaker: str
text: str
start: float | None = None
end: float | None = None
rawSpeaker: str | None = None
class TextAnalysisRequest(BaseModel):
text: str
sourceName: str = "typed-conversation"
diarizedTranscript: list[DiarizedTurn] | None = None
class FollowUpStatusRequest(BaseModel):
status: str
# ------------------------------------------------------------------ #
# Routes — thin wrappers around services
# ------------------------------------------------------------------ #
@app.get("/health")
@app.get("/api/health")
def health() -> dict[str, Any]:
return dashboard_service.health()
@app.get("/api/readiness")
def readiness() -> dict[str, Any]:
return dashboard_service.readiness()
@app.get("/live")
@app.get("/api/live")
def liveness() -> dict[str, Any]:
return {"status": "alive"}
@app.get("/ready")
@app.get("/api/ready")
def ready() -> dict[str, Any]:
return dashboard_service.readiness()
@app.get("/api/health/database")
def health_database() -> dict[str, Any]:
return database_check()
@app.get("/api/health/storage")
def health_storage() -> dict[str, Any]:
return storage_check()
@app.get("/api/health/worker")
def health_worker() -> dict[str, Any]:
return worker_check()
@app.get("/api/follow-up-alerts")
def get_follow_up_alerts(
priority: str | None = None,
status: str | None = None,
customer_name: str | None = None,
) -> dict[str, Any]:
return follow_up_service.list_alerts(
priority=priority,
status=status,
customer_name=customer_name,
)
@app.patch("/api/follow-up-alerts/{alert_id}")
def patch_follow_up_alert(alert_id: str, request: FollowUpStatusRequest) -> dict[str, Any]:
try:
return follow_up_service.update_status(alert_id, request.status)
except ValueError as exc:
raise HTTPException(status_code=400, detail=str(exc)) from exc
@app.post("/api/analyze")
async def analyze_text(request: TextAnalysisRequest) -> dict[str, Any]:
if not request.text.strip():
raise HTTPException(status_code=400, detail="Conversation text is required.")
job_id = str(uuid.uuid4())
created_at = datetime.now(timezone.utc).isoformat().replace("+00:00", "Z")
JOB_REPOSITORY.create(
job_id=job_id,
status="pending",
filename=request.sourceName,
storage_path="",
source_type="text",
payload={
"text": request.text,
"source_name": request.sourceName,
"diarizedTranscript": [turn.model_dump() for turn in request.diarizedTranscript] if request.diarizedTranscript else None,
},
created_at=created_at,
)
return {"job_id": job_id, "status": "pending"}
@app.post("/api/upload")
async def upload_audio(audio: UploadFile = File(...)) -> dict[str, Any]:
data = await audio.read()
return await upload_service.upload_audio(audio.filename or "", data)
@app.get("/api/jobs/{job_id}")
async def get_job_status(job_id: str) -> dict[str, Any]:
job = job_service.get_job(job_id)
if job is None:
raise HTTPException(status_code=404, detail="Job not found")
return job
@app.websocket("/api/stream")
async def websocket_endpoint(websocket: WebSocket):
await websocket.accept()
buffer = b""
try:
while True:
data = await websocket.receive_bytes()
buffer += data
await websocket.send_json({"status": "receiving", "bytes_received": len(buffer)})
except WebSocketDisconnect:
pass
# ------------------------------------------------------------------ #
# Versioned API router (legacy compatibility)
# ------------------------------------------------------------------ #
v1_router = APIRouter(prefix="/api/v1")
v1_router.add_api_route("/health", health, methods=["GET"])
v1_router.add_api_route("/health/liveness", liveness, methods=["GET"])
v1_router.add_api_route("/health/readiness", readiness, methods=["GET"])
v1_router.add_api_route("/health/database", health_database, methods=["GET"])
v1_router.add_api_route("/health/storage", health_storage, methods=["GET"])
v1_router.add_api_route("/health/worker", health_worker, methods=["GET"])
v1_router.add_api_route("/analyze", analyze_text, methods=["POST"])
v1_router.add_api_route("/upload", upload_audio, methods=["POST"])
v1_router.add_api_route("/jobs/{job_id}", get_job_status, methods=["GET"])
v1_router.add_api_route("/followup", get_follow_up_alerts, methods=["GET"])
v1_router.add_api_route("/followup/{alert_id}", patch_follow_up_alert, methods=["PATCH"])
v1_router.add_api_route("/conversation/{job_id}", get_job_status, methods=["GET"])
v1_router.add_api_route("/dashboard", readiness, methods=["GET"])
v1_router.add_api_route("/settings", health, methods=["GET"])
v1_router.add_api_route("/admin", readiness, methods=["GET"])
v1_router.add_api_route("/report/{job_id}", get_job_status, methods=["GET"])
app.include_router(v1_router)
# Serve static files from Next.js export directory
from fastapi.staticfiles import StaticFiles
frontend_out = REPO_ROOT / "frontend" / "out"
if frontend_out.exists():
app.mount("/", StaticFiles(directory=str(frontend_out), html=True), name="frontend")
else:
import logging
logging.getLogger("uvicorn").warning(f"Frontend static directory not found at {frontend_out}. Static files will not be served.")
|