File size: 25,776 Bytes
3b5d2e9 eefb354 3b5d2e9 1d9404d 3b5d2e9 edd9bd7 3b5d2e9 f9877d6 3b5d2e9 0850ef9 3b5d2e9 f9877d6 eefb354 3b5d2e9 eefb354 3b5d2e9 edd9bd7 3b5d2e9 edd9bd7 eefb354 3b5d2e9 eefb354 3b5d2e9 eefb354 b3c9884 3b5d2e9 1d9404d 3b5d2e9 eefb354 3b5d2e9 eefb354 3b5d2e9 eefb354 3b5d2e9 eefb354 3b5d2e9 eefb354 3b5d2e9 eefb354 3b5d2e9 eefb354 3b5d2e9 eefb354 3b5d2e9 eefb354 3b5d2e9 eefb354 3b5d2e9 eefb354 3b5d2e9 eefb354 3b5d2e9 eefb354 3b5d2e9 43fe2fe 3b5d2e9 edd9bd7 3b5d2e9 eefb354 3b5d2e9 eefb354 3b5d2e9 eefb354 3b5d2e9 eefb354 f9877d6 3b5d2e9 edd9bd7 3b5d2e9 edd9bd7 3b5d2e9 edd9bd7 3b5d2e9 edd9bd7 3b5d2e9 edd9bd7 3b5d2e9 edd9bd7 3b5d2e9 edd9bd7 3b5d2e9 edd9bd7 3b5d2e9 edd9bd7 3b5d2e9 edd9bd7 3b5d2e9 edd9bd7 |
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 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 |
from fastapi import FastAPI, UploadFile, File, HTTPException, Request, Depends
from fastapi.middleware.cors import CORSMiddleware
from fastapi.responses import JSONResponse
from fastapi.exceptions import RequestValidationError
import shutil
import os
import logging
import traceback
import hashlib
from datetime import datetime
from sqlalchemy.ext.asyncio import AsyncSession
from .core.processing import parse_document, chunk_text, get_embedding_model
from .core.vector_store import (
get_qdrant_client,
create_collection_if_not_exists,
upsert_vectors,
search_vectors,
ensure_user_collection_exists,
get_user_collection_name
)
from .core.gemini_llm import get_gemini_client, format_prompt, generate_response
from .core.models import QueryRequest, QueryResponse, ErrorResponse, UploadResponse
from .core.exceptions import (
KnowledgeAssistantException,
FileProcessingError,
InvalidFileTypeError,
EmptyFileError,
VectorStoreError,
LLMError,
QueryValidationError,
ServiceUnavailableError,
AuthenticationError,
AuthorizationError,
TokenExpiredError,
InvalidTokenError,
UserNotFoundError,
InvalidCredentialsError,
UserAlreadyExistsError,
InactiveUserError
)
from .core.auth import auth_backend, fastapi_users, current_active_user
from .core.schemas import UserCreate, UserRead, UserUpdate
from .core.database import User, DocumentMetadata, create_db_and_tables, get_async_session
app = FastAPI(
title="Knowledge Assistant RAG API",
description="API for document upload and knowledge base querying",
version="1.0.0"
)
# Include authentication routes
app.include_router(
fastapi_users.get_auth_router(auth_backend), prefix="/auth/jwt", tags=["auth"]
)
app.include_router(
fastapi_users.get_register_router(UserRead, UserCreate),
prefix="/auth",
tags=["auth"],
)
app.include_router(
fastapi_users.get_users_router(UserRead, UserUpdate),
prefix="/users",
tags=["users"],
)
# Configure logging
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger(__name__)
# Configure CORS with environment variable support
cors_origins = os.getenv("CORS_ORIGINS", "http://localhost:8080,http://127.0.0.1:8080").split(",")
app.add_middleware(
CORSMiddleware,
allow_origins=cors_origins,
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
expose_headers=["*"], # Ensure response headers are accessible
)
# Database initialization
@app.on_event("startup")
async def on_startup():
"""Initialize database on startup"""
await create_db_and_tables()
# Global exception handlers
@app.exception_handler(AuthenticationError)
async def authentication_exception_handler(request: Request, exc: AuthenticationError):
"""Handle authentication errors with specific logging and response format."""
logger.warning(f"Authentication failed: {exc.detail} - Request: {request.url}")
return JSONResponse(
status_code=exc.status_code,
content={
"error": exc.error_type,
"detail": exc.detail,
"status_code": exc.status_code,
"timestamp": exc.timestamp,
"auth_required": True
}
)
@app.exception_handler(AuthorizationError)
async def authorization_exception_handler(request: Request, exc: AuthorizationError):
"""Handle authorization errors with specific logging and response format."""
logger.warning(f"Authorization failed: {exc.detail} - Request: {request.url}")
return JSONResponse(
status_code=exc.status_code,
content={
"error": exc.error_type,
"detail": exc.detail,
"status_code": exc.status_code,
"timestamp": exc.timestamp,
"auth_required": True
}
)
@app.exception_handler(UserAlreadyExistsError)
async def user_already_exists_exception_handler(request: Request, exc: UserAlreadyExistsError):
"""Handle user registration conflicts."""
logger.info(f"Registration attempt with existing email: {exc.detail}")
return JSONResponse(
status_code=exc.status_code,
content={
"error": exc.error_type,
"detail": exc.detail,
"status_code": exc.status_code,
"timestamp": exc.timestamp,
"registration_error": True
}
)
@app.exception_handler(KnowledgeAssistantException)
async def knowledge_assistant_exception_handler(request: Request, exc: KnowledgeAssistantException):
"""Handle custom Knowledge Assistant exceptions."""
logger.error(f"KnowledgeAssistantException: {exc.detail}")
return JSONResponse(
status_code=exc.status_code,
content={
"error": exc.error_type,
"detail": exc.detail,
"status_code": exc.status_code,
"timestamp": exc.timestamp
}
)
@app.exception_handler(RequestValidationError)
async def validation_exception_handler(request: Request, exc: RequestValidationError):
"""Handle Pydantic validation errors."""
logger.error(f"Validation error: {exc.errors()}")
return JSONResponse(
status_code=422,
content={
"error": "ValidationError",
"detail": "Request validation failed",
"status_code": 422,
"timestamp": datetime.utcnow().isoformat(),
"validation_errors": exc.errors()
}
)
@app.exception_handler(HTTPException)
async def http_exception_handler(request: Request, exc: HTTPException):
"""Handle standard HTTP exceptions."""
logger.error(f"HTTP exception: {exc.detail}")
return JSONResponse(
status_code=exc.status_code,
content={
"error": "HTTPException",
"detail": exc.detail,
"status_code": exc.status_code,
"timestamp": datetime.utcnow().isoformat()
}
)
@app.exception_handler(Exception)
async def general_exception_handler(request: Request, exc: Exception):
"""Handle unexpected exceptions."""
logger.error(f"Unexpected error: {str(exc)}\n{traceback.format_exc()}")
return JSONResponse(
status_code=500,
content={
"error": "InternalServerError",
"detail": "An unexpected error occurred. Please try again later.",
"status_code": 500,
"timestamp": datetime.utcnow().isoformat()
}
)
# --- Constants ---
UPLOADS_DIR = "uploads"
QDRANT_COLLECTION_NAME = "knowledge_base"
# --- Application Startup ---
# Create uploads directory if it doesn't exist
try:
if not os.path.exists(UPLOADS_DIR):
os.makedirs(UPLOADS_DIR)
logger.info(f"Created uploads directory: {UPLOADS_DIR}")
except Exception as e:
logger.error(f"Failed to create uploads directory: {str(e)}")
raise ServiceUnavailableError("filesystem", f"Cannot create uploads directory: {str(e)}")
# Load models and clients on startup with error handling
try:
embedding_model = get_embedding_model()
logger.info("Embedding model loaded successfully")
except Exception as e:
logger.error(f"Failed to load embedding model: {str(e)}")
raise ServiceUnavailableError("embedding_model", f"Cannot load embedding model: {str(e)}")
try:
qdrant_client = get_qdrant_client()
logger.info("Qdrant client initialized successfully")
except Exception as e:
logger.error(f"Failed to initialize Qdrant client: {str(e)}")
raise ServiceUnavailableError("qdrant", f"Cannot connect to Qdrant: {str(e)}")
try:
gemini_client = get_gemini_client()
logger.info("Gemini client initialized successfully")
except Exception as e:
logger.error(f"Failed to initialize Gemini client: {str(e)}")
raise ServiceUnavailableError("gemini", f"Cannot connect to Gemini: {str(e)}")
# Get the size of the embeddings from the model
try:
embedding_size = embedding_model.get_sentence_embedding_dimension()
logger.info(f"Embedding dimension: {embedding_size}")
except Exception as e:
logger.error(f"Failed to get embedding dimension: {str(e)}")
raise ServiceUnavailableError("embedding_model", f"Cannot determine embedding dimension: {str(e)}")
# Create the Qdrant collection if it doesn't exist
try:
create_collection_if_not_exists(qdrant_client, QDRANT_COLLECTION_NAME, embedding_size)
logger.info(f"Qdrant collection '{QDRANT_COLLECTION_NAME}' ready")
except Exception as e:
logger.error(f"Failed to create/verify Qdrant collection: {str(e)}")
raise ServiceUnavailableError("qdrant", f"Cannot create collection: {str(e)}")
logger.info("Application startup completed successfully")
# --- Helper Functions ---
def calculate_file_hash(file_path: str) -> str:
"""Calculate SHA-256 hash of a file for duplicate detection."""
hash_sha256 = hashlib.sha256()
try:
with open(file_path, "rb") as f:
for chunk in iter(lambda: f.read(4096), b""):
hash_sha256.update(chunk)
return hash_sha256.hexdigest()
except Exception as e:
logger.error(f"Failed to calculate file hash for {file_path}: {str(e)}")
raise FileProcessingError(f"Failed to calculate file hash: {str(e)}", os.path.basename(file_path))
# --- API Endpoints ---
@app.get("/")
async def root():
"""A simple root endpoint to confirm the API is running."""
return {"message": "Knowledge Assistant RAG API is running."}
@app.post("/upload", response_model=UploadResponse)
async def upload_file(
file: UploadFile = File(...),
user: User = Depends(current_active_user),
session: AsyncSession = Depends(get_async_session)
):
"""Upload and process a document file with user-specific storage."""
logger.info(f"Starting upload for file: {file.filename} by user: {user.email}")
# Validate file exists and has a name
if not file.filename:
raise QueryValidationError("No filename provided")
# Validate file size (10MB limit)
if file.size and file.size > 10 * 1024 * 1024:
raise FileProcessingError("File size exceeds 10MB limit", file.filename)
# Validate file extension
file_extension = os.path.splitext(file.filename)[1].lower()
supported_types = [".pdf", ".txt", ".docx"]
if file_extension not in supported_types:
raise InvalidFileTypeError(file_extension, supported_types)
file_path = os.path.join(UPLOADS_DIR, f"{user.id}_{file.filename}")
# Save uploaded file temporarily
try:
with open(file_path, "wb") as buffer:
shutil.copyfileobj(file.file, buffer)
logger.info(f"File saved successfully: {file_path}")
except PermissionError:
raise FileProcessingError("Permission denied when saving file", file.filename)
except OSError as e:
raise FileProcessingError(f"File system error: {str(e)}", file.filename)
except Exception as e:
raise FileProcessingError(f"Unexpected error saving file: {str(e)}", file.filename)
# Process and store document
try:
# Calculate file hash for duplicate detection
try:
file_hash = calculate_file_hash(file_path)
except Exception as e:
raise FileProcessingError(f"Failed to calculate file hash: {str(e)}", file.filename)
# Check for duplicate uploads by this user
try:
from sqlalchemy import select
stmt = select(DocumentMetadata).where(
DocumentMetadata.user_id == user.id,
DocumentMetadata.file_hash == file_hash
)
result = await session.execute(stmt)
existing_doc = result.scalar_one_or_none()
if existing_doc:
logger.info(f"Duplicate file detected for user {user.email}: {file.filename}")
return UploadResponse(
filename=file.filename,
message=f"File already exists (uploaded as '{existing_doc.filename}' on {existing_doc.upload_date.strftime('%Y-%m-%d %H:%M:%S')})",
num_chunks_stored=existing_doc.chunks_count
)
except Exception as e:
logger.error(f"Error checking for duplicate files: {str(e)}")
# Continue with upload if duplicate check fails
# Parse document text
try:
text = parse_document(file_path, file_extension)
except Exception as e:
raise FileProcessingError(f"Failed to parse document: {str(e)}", file.filename)
# Validate extracted text
if not text or not text.strip():
raise EmptyFileError(file.filename)
# Create text chunks
try:
chunks = chunk_text(text)
if not chunks:
raise EmptyFileError(file.filename)
except Exception as e:
raise FileProcessingError(f"Failed to chunk text: {str(e)}", file.filename)
# Generate embeddings
try:
embeddings = embedding_model.encode(chunks)
except Exception as e:
raise LLMError(f"Failed to generate embeddings: {str(e)}")
# Ensure user-specific collection exists
try:
user_collection_name = ensure_user_collection_exists(qdrant_client, user.id, embedding_size)
except Exception as e:
raise VectorStoreError(f"Failed to create user collection: {str(e)}", "collection_creation")
# Prepare payloads for vector store with user context
payloads = [
{
"text": chunk,
"source": file.filename,
"user_id": str(user.id),
"upload_date": datetime.utcnow().isoformat()
}
for chunk in chunks
]
# Store in user-specific vector database collection
try:
upsert_vectors(qdrant_client, user_collection_name, embeddings, payloads)
except Exception as e:
raise VectorStoreError(f"Failed to store vectors: {str(e)}", "upsert")
# Store document metadata in database
try:
file_size = os.path.getsize(file_path)
doc_metadata = DocumentMetadata(
user_id=user.id,
filename=file.filename,
original_size=file_size,
chunks_count=len(chunks),
file_hash=file_hash
)
session.add(doc_metadata)
await session.commit()
logger.info(f"Stored document metadata for {file.filename}")
except Exception as e:
await session.rollback()
logger.error(f"Failed to store document metadata: {str(e)}")
# Continue without failing the upload
logger.info(f"Successfully processed file: {file.filename}, chunks: {len(chunks)} for user: {user.email}")
return UploadResponse(
filename=file.filename,
message="Successfully uploaded, processed, and stored in your personal knowledge base.",
num_chunks_stored=len(chunks)
)
except (FileProcessingError, EmptyFileError, LLMError, VectorStoreError):
# Re-raise custom exceptions
raise
except Exception as e:
# Handle unexpected errors during processing
logger.error(f"Unexpected error processing file {file.filename}: {str(e)}")
raise FileProcessingError(f"Unexpected processing error: {str(e)}", file.filename)
finally:
# Clean up temporary file
if os.path.exists(file_path):
try:
os.remove(file_path)
logger.info(f"Cleaned up temporary file: {file_path}")
except Exception as e:
logger.warning(f"Failed to clean up temporary file {file_path}: {str(e)}")
@app.post("/query", response_model=QueryResponse)
async def query_knowledge_base(
request: QueryRequest,
user: User = Depends(current_active_user),
session: AsyncSession = Depends(get_async_session)
):
"""Query the user's personal knowledge base with a question."""
logger.info(f"Processing query: {request.query[:100]}... by user: {user.email}")
try:
# 1. Get user's collection name
user_collection_name = get_user_collection_name(user.id)
# 2. Generate query embedding
try:
query_embedding = embedding_model.encode(request.query)
except Exception as e:
logger.error(f"Failed to encode query: {str(e)}")
raise LLMError(f"Failed to encode query: {str(e)}")
# 3. Search for relevant documents in user's collection
try:
search_results = search_vectors(
client=qdrant_client,
collection_name=user_collection_name,
query_vector=query_embedding,
limit=3 # Retrieve top 3 most relevant chunks
)
except Exception as e:
logger.error(f"Vector search failed: {str(e)}")
raise VectorStoreError(f"Search operation failed: {str(e)}", "search")
# Check if any results were found
if not search_results:
logger.info(f"No relevant documents found for user {user.email}")
# Check if user has any documents at all
try:
from sqlalchemy import select, func
stmt = select(func.count(DocumentMetadata.id)).where(DocumentMetadata.user_id == user.id)
result = await session.execute(stmt)
doc_count = result.scalar()
if doc_count == 0:
message = "You haven't uploaded any documents yet. Please upload some documents to build your knowledge base before asking questions."
else:
message = "I couldn't find any relevant information in your knowledge base to answer your question. Please try rephrasing your query or upload more relevant documents."
except Exception as e:
logger.error(f"Error checking user document count: {str(e)}")
message = "I couldn't find any relevant information in your knowledge base to answer your question. Please try rephrasing your query or upload relevant documents."
return QueryResponse(
answer=message,
source_documents=[]
)
# 4. Filter results to ensure they belong to the user (additional security check)
filtered_results = []
for result in search_results:
if result.payload and result.payload.get("user_id") == str(user.id):
filtered_results.append(result)
else:
logger.warning(f"Found result not belonging to user {user.id}, filtering out")
if not filtered_results:
logger.warning(f"All search results filtered out for user {user.email}")
return QueryResponse(
answer="I couldn't find any relevant information in your personal knowledge base to answer your question. Please try rephrasing your query or upload more relevant documents.",
source_documents=[]
)
# 5. Format the prompt for the LLM
try:
prompt = format_prompt(request.query, filtered_results)
except Exception as e:
logger.error(f"Failed to format prompt: {str(e)}")
raise LLMError(f"Failed to format prompt: {str(e)}")
# 6. Generate a response from the LLM
try:
answer = generate_response(gemini_client, prompt)
if not answer or not answer.strip():
raise LLMError("LLM returned empty response")
except Exception as e:
logger.error(f"LLM response generation failed: {str(e)}")
raise LLMError(f"Failed to generate response: {str(e)}")
# 7. Extract and validate source documents for citation
try:
source_documents = []
for result in filtered_results:
if result.payload:
source_doc = {
"source": result.payload.get("source", "Unknown"),
"text": result.payload.get("text", "N/A")[:500] + "..." if len(result.payload.get("text", "")) > 500 else result.payload.get("text", "N/A"),
"score": float(result.score) if result.score is not None else 0.0
}
source_documents.append(source_doc)
except Exception as e:
logger.error(f"Failed to process source documents: {str(e)}")
# Continue with empty source documents rather than failing
source_documents = []
logger.info(f"Query processed successfully for user {user.email}, found {len(source_documents)} source documents")
return QueryResponse(
answer=answer,
source_documents=source_documents
)
except (LLMError, VectorStoreError, QueryValidationError):
# Re-raise custom exceptions
raise
except Exception as e:
# Handle unexpected errors
logger.error(f"Unexpected error during query processing: {str(e)}")
raise LLMError(f"Unexpected query processing error: {str(e)}")
@app.get("/health")
async def health_check(session: AsyncSession = Depends(get_async_session)):
"""Comprehensive health check endpoint with detailed service monitoring."""
from .core.monitoring import get_health_status
return await get_health_status(session)
@app.get("/health/simple")
async def simple_health_check():
"""Simple health check endpoint for basic monitoring."""
return {
"status": "ok",
"timestamp": datetime.utcnow().isoformat(),
"service": "knowledge-assistant-api"
}
@app.get("/health/dashboard")
async def health_dashboard():
"""Service status dashboard endpoint."""
from .core.monitoring import get_service_dashboard
return get_service_dashboard()
@app.get("/health/metrics")
async def system_metrics():
"""System resource metrics endpoint."""
from .core.monitoring import health_monitor
metrics = health_monitor.get_system_metrics()
return metrics.to_dict()
@app.post("/admin/backup")
async def create_backup_endpoint(user: User = Depends(current_active_user)):
"""Create a full backup of the system (admin only)."""
# Note: In production, you might want to add admin role checking
from .core.backup import create_backup
try:
backup_metadata = await create_backup()
return {
"success": True,
"backup_id": backup_metadata.backup_id,
"timestamp": backup_metadata.timestamp.isoformat(),
"file_size_bytes": backup_metadata.file_size_bytes,
"database_records": backup_metadata.database_records,
"vector_collections": backup_metadata.vector_collections,
"status": backup_metadata.status
}
except Exception as e:
logger.error(f"Backup creation failed: {str(e)}")
raise HTTPException(status_code=500, detail=f"Backup creation failed: {str(e)}")
@app.get("/admin/backups")
async def list_backups_endpoint(user: User = Depends(current_active_user)):
"""List all available backups (admin only)."""
from .core.backup import list_available_backups
try:
backups = await list_available_backups()
return {
"backups": [
{
"backup_id": backup.backup_id,
"timestamp": backup.timestamp.isoformat(),
"backup_type": backup.backup_type,
"file_size_bytes": backup.file_size_bytes,
"database_records": backup.database_records,
"vector_collections": backup.vector_collections,
"status": backup.status,
"error_message": backup.error_message
}
for backup in backups
]
}
except Exception as e:
logger.error(f"Failed to list backups: {str(e)}")
raise HTTPException(status_code=500, detail=f"Failed to list backups: {str(e)}")
@app.post("/admin/backup/{backup_id}/restore")
async def restore_backup_endpoint(backup_id: str, user: User = Depends(current_active_user)):
"""Restore from a specific backup (admin only)."""
from .core.backup import restore_backup
try:
success = await restore_backup(backup_id)
if success:
return {
"success": True,
"message": f"Successfully restored from backup: {backup_id}",
"backup_id": backup_id
}
else:
raise HTTPException(status_code=500, detail=f"Restore failed for backup: {backup_id}")
except Exception as e:
logger.error(f"Restore failed: {str(e)}")
raise HTTPException(status_code=500, detail=f"Restore failed: {str(e)}")
@app.get("/admin/backup/{backup_id}/verify")
async def verify_backup_endpoint(backup_id: str, user: User = Depends(current_active_user)):
"""Verify backup integrity (admin only)."""
from .core.backup import verify_backup
try:
is_valid = await verify_backup(backup_id)
return {
"backup_id": backup_id,
"is_valid": is_valid,
"message": "Backup integrity verified" if is_valid else "Backup integrity check failed"
}
except Exception as e:
logger.error(f"Backup verification failed: {str(e)}")
raise HTTPException(status_code=500, detail=f"Backup verification failed: {str(e)}") |