189 lines
5.9 KiB
Python
189 lines
5.9 KiB
Python
"""
|
|
Internal Demo Cloning API for Sales Service
|
|
Service-to-service endpoint for cloning sales data
|
|
"""
|
|
|
|
from fastapi import APIRouter, Depends, HTTPException, Header
|
|
from sqlalchemy.ext.asyncio import AsyncSession
|
|
from sqlalchemy import select
|
|
import structlog
|
|
import uuid
|
|
from datetime import datetime, timezone, timedelta
|
|
from typing import Optional
|
|
import os
|
|
from decimal import Decimal
|
|
|
|
from app.core.database import get_db
|
|
from app.models.sales import SalesData
|
|
|
|
logger = structlog.get_logger()
|
|
router = APIRouter(prefix="/internal/demo", tags=["internal"])
|
|
|
|
# Internal API key for service-to-service auth
|
|
INTERNAL_API_KEY = os.getenv("INTERNAL_API_KEY", "dev-internal-key-change-in-production")
|
|
|
|
# Base demo tenant IDs
|
|
DEMO_TENANT_SAN_PABLO = "a1b2c3d4-e5f6-47a8-b9c0-d1e2f3a4b5c6"
|
|
DEMO_TENANT_LA_ESPIGA = "b2c3d4e5-f6a7-48b9-c0d1-e2f3a4b5c6d7"
|
|
|
|
|
|
def verify_internal_api_key(x_internal_api_key: Optional[str] = Header(None)):
|
|
"""Verify internal API key for service-to-service communication"""
|
|
if x_internal_api_key != INTERNAL_API_KEY:
|
|
logger.warning("Unauthorized internal API access attempted")
|
|
raise HTTPException(status_code=403, detail="Invalid internal API key")
|
|
return True
|
|
|
|
|
|
@router.post("/clone")
|
|
async def clone_demo_data(
|
|
base_tenant_id: str,
|
|
virtual_tenant_id: str,
|
|
demo_account_type: str,
|
|
session_id: Optional[str] = None,
|
|
db: AsyncSession = Depends(get_db),
|
|
_: bool = Depends(verify_internal_api_key)
|
|
):
|
|
"""
|
|
Clone sales service data for a virtual demo tenant
|
|
|
|
Clones:
|
|
- Sales history records from template tenant
|
|
- Adjusts dates to recent timeframe
|
|
- Updates product references to new virtual tenant
|
|
|
|
Args:
|
|
base_tenant_id: Template tenant UUID to clone from
|
|
virtual_tenant_id: Target virtual tenant UUID
|
|
demo_account_type: Type of demo account
|
|
session_id: Originating session ID for tracing
|
|
|
|
Returns:
|
|
Cloning status and record counts
|
|
"""
|
|
start_time = datetime.now(timezone.utc)
|
|
|
|
logger.info(
|
|
"Starting sales data cloning",
|
|
base_tenant_id=base_tenant_id,
|
|
virtual_tenant_id=virtual_tenant_id,
|
|
demo_account_type=demo_account_type,
|
|
session_id=session_id
|
|
)
|
|
|
|
try:
|
|
# Validate UUIDs
|
|
base_uuid = uuid.UUID(base_tenant_id)
|
|
virtual_uuid = uuid.UUID(virtual_tenant_id)
|
|
|
|
# Track cloning statistics
|
|
stats = {
|
|
"sales_records": 0,
|
|
}
|
|
|
|
# Clone Sales Data
|
|
result = await db.execute(
|
|
select(SalesData).where(SalesData.tenant_id == base_uuid)
|
|
)
|
|
base_sales = result.scalars().all()
|
|
|
|
logger.info(
|
|
"Found sales records to clone",
|
|
count=len(base_sales),
|
|
base_tenant=str(base_uuid)
|
|
)
|
|
|
|
# Calculate date offset to make sales "recent"
|
|
# Find the most recent sale date in template
|
|
if base_sales:
|
|
max_date = max(sale.date for sale in base_sales)
|
|
today = datetime.now(timezone.utc)
|
|
date_offset = today - max_date
|
|
else:
|
|
date_offset = timedelta(days=0)
|
|
|
|
for sale in base_sales:
|
|
# Create new sales record with adjusted date
|
|
new_sale = SalesData(
|
|
id=uuid.uuid4(),
|
|
tenant_id=virtual_uuid,
|
|
date=sale.date + date_offset, # Adjust to recent dates
|
|
inventory_product_id=sale.inventory_product_id, # Keep same product refs
|
|
quantity_sold=sale.quantity_sold,
|
|
unit_price=sale.unit_price,
|
|
revenue=sale.revenue,
|
|
cost_of_goods=sale.cost_of_goods,
|
|
discount_applied=sale.discount_applied,
|
|
location_id=sale.location_id,
|
|
sales_channel=sale.sales_channel,
|
|
source="demo_clone", # Mark as cloned
|
|
is_validated=sale.is_validated,
|
|
validation_notes=sale.validation_notes,
|
|
notes=sale.notes,
|
|
weather_condition=sale.weather_condition,
|
|
is_holiday=sale.is_holiday,
|
|
is_weekend=sale.is_weekend,
|
|
created_at=datetime.now(timezone.utc),
|
|
updated_at=datetime.now(timezone.utc)
|
|
)
|
|
db.add(new_sale)
|
|
stats["sales_records"] += 1
|
|
|
|
# Commit all changes
|
|
await db.commit()
|
|
|
|
total_records = sum(stats.values())
|
|
duration_ms = int((datetime.now(timezone.utc) - start_time).total_seconds() * 1000)
|
|
|
|
logger.info(
|
|
"Sales data cloning completed",
|
|
virtual_tenant_id=virtual_tenant_id,
|
|
total_records=total_records,
|
|
stats=stats,
|
|
duration_ms=duration_ms
|
|
)
|
|
|
|
return {
|
|
"service": "sales",
|
|
"status": "completed",
|
|
"records_cloned": total_records,
|
|
"duration_ms": duration_ms,
|
|
"details": stats
|
|
}
|
|
|
|
except ValueError as e:
|
|
logger.error("Invalid UUID format", error=str(e))
|
|
raise HTTPException(status_code=400, detail=f"Invalid UUID: {str(e)}")
|
|
|
|
except Exception as e:
|
|
logger.error(
|
|
"Failed to clone sales data",
|
|
error=str(e),
|
|
virtual_tenant_id=virtual_tenant_id,
|
|
exc_info=True
|
|
)
|
|
|
|
# Rollback on error
|
|
await db.rollback()
|
|
|
|
return {
|
|
"service": "sales",
|
|
"status": "failed",
|
|
"records_cloned": 0,
|
|
"duration_ms": int((datetime.now(timezone.utc) - start_time).total_seconds() * 1000),
|
|
"error": str(e)
|
|
}
|
|
|
|
|
|
@router.get("/clone/health")
|
|
async def clone_health_check(_: bool = Depends(verify_internal_api_key)):
|
|
"""
|
|
Health check for internal cloning endpoint
|
|
Used by orchestrator to verify service availability
|
|
"""
|
|
return {
|
|
"service": "sales",
|
|
"clone_endpoint": "available",
|
|
"version": "2.0.0"
|
|
}
|