Spaces:
Sleeping
Sleeping
File size: 25,686 Bytes
c4a0359 | 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 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 | import os
import uuid
import json
import secrets
from fastapi import FastAPI, UploadFile, File, Form, BackgroundTasks, Depends, HTTPException, status
from fastapi.responses import JSONResponse
from fastapi.middleware.cors import CORSMiddleware
import logging
from pydantic import BaseModel
from typing import Dict, Optional, Any
import asyncio
from datetime import datetime
import time
import math
import tempfile
from style_transfer import transfer_style
from storage_hf import (
HFStorageClient,
build_dataset_resolve_url
)
from auth import (
verify_password,
get_password_hash,
create_access_token,
verify_token,
get_current_user
)
from auth_storage import AuthStorageClient
from email_service import EmailService
# Set up logging
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger(__name__)
# Custom JSON encoder to handle infinity
class CustomJSONEncoder(json.JSONEncoder):
def default(self, obj):
if isinstance(obj, float):
if math.isinf(obj):
return "Infinity" if obj > 0 else "-Infinity"
if math.isnan(obj):
return "NaN"
return super().default(obj)
# Custom JSONResponse that uses our custom encoder
class CustomJSONResponse(JSONResponse):
def render(self, content: Any) -> bytes:
return json.dumps(
content,
ensure_ascii=False,
allow_nan=False,
indent=None,
separators=(",", ":"),
cls=CustomJSONEncoder,
).encode("utf-8")
# Initialize FastAPI
app = FastAPI(title="Neural Style Transfer API", default_response_class=CustomJSONResponse)
# Add request logging middleware
@app.middleware("http")
async def log_requests(request, call_next):
logger.info(f"Incoming request: {request.method} {request.url.path} from {request.client.host if request.client else 'unknown'}")
response = await call_next(request)
logger.info(f"Response: {request.method} {request.url.path} -> {response.status_code}")
return response
# HF storage configuration
HF_DATASET_REPO = os.getenv("HF_DATASET_REPO", "") # e.g. username/style-transfer-data
HF_TOKEN = os.getenv("HF_TOKEN", "")
storage_client = HFStorageClient(dataset_repo=HF_DATASET_REPO, hf_token=HF_TOKEN)
# Auth storage and email service
auth_storage = AuthStorageClient(dataset_repo=HF_DATASET_REPO, hf_token=HF_TOKEN)
email_service = EmailService()
MASTER_PASSWORD = os.getenv("MASTER_PASSWORD", "")
# Setup CORS
allowed_origins = os.getenv("ALLOWED_ORIGINS", "http://localhost:4200").split(",")
allowed_origins_clean = [origin.strip() for origin in allowed_origins if origin.strip()]
logger.info(f"CORS allowed origins: {allowed_origins_clean}")
app.add_middleware(
CORSMiddleware,
allow_origins=allowed_origins_clean,
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
"""
With Hugging Face storage, images are served via absolute URLs from the
dataset CDN, so we no longer mount local static directories.
"""
# Keep track of running jobs using asyncio.Queue for thread-safe updates
job_queues = {}
active_jobs = {}
class StyleTransferProgress(BaseModel):
job_id: str
status: str
progress: Optional[int] = 0
style_loss: Optional[float] = None
content_loss: Optional[float] = None
result_url: Optional[str] = None
error: Optional[str] = None
# Auth models
class LoginRequest(BaseModel):
email: Optional[str] = None
password: Optional[str] = None
master_password: Optional[str] = None
class PermissionRequest(BaseModel):
name: str
email: str
reason: str
class CreateUserRequest(BaseModel):
email: str
password: str
class ApproveRequestData(BaseModel):
password: Optional[str] = None # Optional custom password, otherwise auto-generated
class RejectRequestData(BaseModel):
reason: Optional[str] = None
# Helper function to generate unique file paths
def get_unique_filename(directory, extension=".jpg"):
return os.path.join(directory, f"{uuid.uuid4()}{extension}")
def load_gallery():
try:
return storage_client.load_gallery()
except Exception as e:
logger.error(f"Error loading gallery data from HF: {str(e)}")
return []
def save_gallery(gallery_data):
try:
storage_client.save_gallery(gallery_data)
except Exception as e:
logger.error(f"Error saving gallery data to HF: {str(e)}")
# Background task for style transfer
async def run_style_transfer_task(
job_id: str,
content_local_path: str,
style_local_path: str,
output_local_path: str,
style_weight: float,
content_weight: float,
num_steps: int,
layer_weights: Dict[str, float]
):
try:
# Create a queue for this job if it doesn't exist
if job_id not in job_queues:
job_queues[job_id] = asyncio.Queue()
queue = job_queues[job_id]
start_time = time.time()
best_loss = float('inf')
style_loss = 0
content_loss = 0
# Update job status
await queue.put({
"status": "processing",
"progress": 0,
"style_loss": None,
"content_loss": None
})
# Define a callback that will update the job status
def on_progress(progress):
nonlocal style_loss, content_loss, best_loss
# Calculate total loss as the sum of style and content loss
total_loss = progress["style_loss"] + progress["content_loss"]
# Update the best loss if this one is better
if total_loss < best_loss:
best_loss = total_loss
progress_data = {
"status": "processing",
"progress": progress["iteration"] / num_steps * 100,
"style_loss": progress["style_loss"],
"content_loss": progress["content_loss"]
}
style_loss = progress["style_loss"]
content_loss = progress["content_loss"]
# Use asyncio.run_coroutine_threadsafe to safely put data in the queue from a different thread
loop = asyncio.get_event_loop()
asyncio.run_coroutine_threadsafe(queue.put(progress_data), loop)
# Run the style transfer
result_path, model_best_loss = transfer_style(
content_path=content_local_path,
style_path=style_local_path,
output_path=output_local_path,
style_weight=style_weight,
content_weight=content_weight,
num_steps=num_steps,
layer_weights=layer_weights,
progress_callback=on_progress
)
processing_time = time.time() - start_time
# If best_loss is still infinity, use the model's best loss or the sum of final losses
if math.isinf(best_loss):
best_loss = model_best_loss if not math.isinf(model_best_loss) else style_loss + content_loss
# Upload artifacts to Hugging Face dataset and build absolute URLs
date_prefix = datetime.utcnow().strftime("%Y/%m/%d")
base_prefix = f"runs/{date_prefix}/{job_id}"
content_ds_path = storage_client.upload_file(
local_path=content_local_path,
dst_path=f"{base_prefix}/content.jpg"
)
style_ds_path = storage_client.upload_file(
local_path=style_local_path,
dst_path=f"{base_prefix}/style.jpg"
)
result_ds_path = storage_client.upload_file(
local_path=output_local_path,
dst_path=f"{base_prefix}/result.jpg"
)
content_url = build_dataset_resolve_url(storage_client.dataset_repo, content_ds_path)
style_url = build_dataset_resolve_url(storage_client.dataset_repo, style_ds_path)
result_url = build_dataset_resolve_url(storage_client.dataset_repo, result_ds_path)
# Save to gallery
gallery_item = {
"id": job_id,
"timestamp": datetime.utcnow().isoformat(),
"contentImageUrl": content_url,
"styleImageUrl": style_url,
"resultImageUrl": result_url,
"bestLoss": style_loss + content_loss,
"styleLoss": style_loss,
"contentLoss": content_loss,
"processingTime": processing_time,
"parameters": {
"styleWeight": style_weight,
"contentWeight": content_weight,
"numSteps": num_steps,
"layerWeights": layer_weights
}
}
gallery = load_gallery()
gallery.append(gallery_item)
save_gallery(gallery)
# Update job status with result
await queue.put({
"status": "completed",
"progress": 100,
"style_loss": style_loss,
"content_loss": content_loss,
"result_url": result_url
})
except Exception as e:
logger.error(f"Error in style transfer: {str(e)}")
await queue.put({
"status": "failed",
"error": str(e)
})
finally:
# Keep the last status update in active_jobs
try:
last_status = queue.get_nowait()
active_jobs[job_id] = last_status
except asyncio.QueueEmpty:
pass
@app.post("/api/transfer")
async def create_style_transfer(
background_tasks: BackgroundTasks,
content_image: UploadFile = File(...),
style_image: UploadFile = File(...),
style_weight: float = Form(1000000.0),
content_weight: float = Form(1.0),
num_steps: int = Form(300),
layer_weights: str = Form("{}"),
current_user: Dict[str, Any] = Depends(get_current_user),
):
try:
# Parse layer weights from JSON string
layer_weights_dict = json.loads(layer_weights)
# Save uploaded files temporarily to local disk for processing
temp_dir = tempfile.gettempdir()
content_path = get_unique_filename(temp_dir)
style_path = get_unique_filename(temp_dir)
output_path = get_unique_filename(temp_dir)
with open(content_path, "wb") as content_file:
content_file.write(await content_image.read())
with open(style_path, "wb") as style_file:
style_file.write(await style_image.read())
# Create a unique job ID
job_id = str(uuid.uuid4())
# Initialize job status
active_jobs[job_id] = {
"status": "pending",
"progress": 0,
"style_loss": None,
"content_loss": None,
"result_url": None,
"error": None
}
# Start style transfer in the background
background_tasks.add_task(
run_style_transfer_task,
job_id,
content_path,
style_path,
output_path,
style_weight,
content_weight,
num_steps,
layer_weights_dict
)
return {
"job_id": job_id,
"status": "pending"
}
except Exception as e:
logger.error(f"Error creating style transfer: {str(e)}")
return CustomJSONResponse(
status_code=500,
content={"error": str(e)}
)
@app.get("/api/transfer/{job_id}")
async def get_transfer_status(job_id: str):
if job_id not in active_jobs and job_id not in job_queues:
return CustomJSONResponse(
status_code=404,
content={"error": "Job not found"}
)
# Try to get the latest status from the queue
if job_id in job_queues:
try:
# Get the latest status without removing it from the queue
status = job_queues[job_id].get_nowait()
job_queues[job_id].put_nowait(status) # Put it back
active_jobs[job_id] = status # Update active_jobs with latest status
except asyncio.QueueEmpty:
# If queue is empty, use the last known status from active_jobs
pass
job_status = active_jobs[job_id]
# Return appropriate response based on job status
if job_status["status"] == "completed" and job_status.get("result_url"):
# Clean up the queue for completed jobs
if job_id in job_queues:
del job_queues[job_id]
return {
"job_id": job_id,
"status": "completed",
"progress": 100,
"style_loss": job_status.get("style_loss"),
"content_loss": job_status.get("content_loss"),
"result_url": job_status["result_url"]
}
elif job_status["status"] == "failed":
# Clean up the queue for failed jobs
if job_id in job_queues:
del job_queues[job_id]
return {
"job_id": job_id,
"status": "failed",
"error": job_status.get("error", "Unknown error")
}
else:
return {
"job_id": job_id,
"status": job_status["status"],
"progress": job_status.get("progress", 0),
"style_loss": job_status.get("style_loss"),
"content_loss": job_status.get("content_loss")
}
@app.get("/api/health")
async def health_check():
return {"status": "ok"}
@app.get("/api/gallery")
async def get_gallery_items():
try:
gallery = load_gallery()
# Replace any infinity values before sending response
for item in gallery:
if 'bestLoss' in item and isinstance(item['bestLoss'], float) and math.isinf(item['bestLoss']):
item['bestLoss'] = 999999999 if item['bestLoss'] > 0 else -999999999
if 'styleLoss' in item and isinstance(item['styleLoss'], float) and math.isinf(item['styleLoss']):
item['styleLoss'] = 999999999 if item['styleLoss'] > 0 else -999999999
if 'contentLoss' in item and isinstance(item['contentLoss'], float) and math.isinf(item['contentLoss']):
item['contentLoss'] = 999999999 if item['contentLoss'] > 0 else -999999999
return gallery
except Exception as e:
logger.error(f"Error getting gallery items: {str(e)}")
return CustomJSONResponse(
status_code=500,
content={"error": str(e)}
)
@app.get("/api/gallery/{item_id}")
async def get_gallery_item(item_id: str):
try:
gallery = load_gallery()
item = next((item for item in gallery if item["id"] == item_id), None)
if item is None:
return CustomJSONResponse(status_code=404, content={"error": "Item not found"})
# Replace any infinity values before sending response
if 'bestLoss' in item and isinstance(item['bestLoss'], float) and math.isinf(item['bestLoss']):
item['bestLoss'] = 999999999 if item['bestLoss'] > 0 else -999999999
if 'styleLoss' in item and isinstance(item['styleLoss'], float) and math.isinf(item['styleLoss']):
item['styleLoss'] = 999999999 if item['styleLoss'] > 0 else -999999999
if 'contentLoss' in item and isinstance(item['contentLoss'], float) and math.isinf(item['contentLoss']):
item['contentLoss'] = 999999999 if item['contentLoss'] > 0 else -999999999
return item
except Exception as e:
logger.error(f"Error getting gallery item: {str(e)}")
return CustomJSONResponse(
status_code=500,
content={"error": str(e)}
)
@app.delete("/api/gallery/{item_id}")
async def delete_gallery_item(
item_id: str,
current_user: Dict[str, Any] = Depends(get_current_user),
):
try:
gallery = load_gallery()
item_to_delete = next((item for item in gallery if item["id"] == item_id), None)
if not item_to_delete:
return CustomJSONResponse(
status_code=404,
content={"error": "Item not found"}
)
# Remove from gallery first
gallery = [item for item in gallery if item["id"] != item_id]
save_gallery(gallery)
# Attempt to delete artifacts from dataset
try:
storage_client.delete_run_artifacts(item_to_delete)
except Exception as e:
logger.error(f"Error deleting dataset artifacts for {item_id}: {str(e)}")
return {"status": "success"}
except Exception as e:
logger.error(f"Error deleting gallery item: {str(e)}")
return CustomJSONResponse(
status_code=500,
content={"error": str(e)}
)
# Authentication endpoints
@app.post("/api/auth/login")
async def login(login_request: LoginRequest):
"""
Login with email/password or master password.
"""
logger.info(f"Login attempt - email: {login_request.email}, has_master_password: {bool(login_request.master_password)}")
try:
# Check master password first (doesn't require email or password)
if login_request.master_password and MASTER_PASSWORD and login_request.master_password == MASTER_PASSWORD:
access_token = create_access_token(data={"email": None, "is_master": True})
return {"access_token": access_token, "token_type": "bearer", "is_master": True}
# Check user email/password (requires both email and password)
if login_request.email and login_request.password:
user = auth_storage.get_user(login_request.email)
if user and verify_password(login_request.password, user["password_hash"]):
access_token = create_access_token(data={"email": login_request.email, "is_master": False})
return {"access_token": access_token, "token_type": "bearer", "is_master": False, "email": login_request.email}
raise HTTPException(
status_code=status.HTTP_401_UNAUTHORIZED,
detail="Incorrect email/password or master password"
)
except HTTPException:
raise
except Exception as e:
logger.error(f"Error in login: {str(e)}")
raise HTTPException(
status_code=status.HTTP_500_INTERNAL_SERVER_ERROR,
detail="Login failed"
)
@app.post("/api/auth/requests")
async def submit_permission_request(request: PermissionRequest):
"""
Submit a permission request. Public endpoint.
"""
try:
request_id = auth_storage.add_request(
name=request.name,
email=request.email,
reason=request.reason
)
# Get the request to get timestamp
req = auth_storage.get_request(request_id)
if req:
# Send email notification to admin
email_service.send_permission_request_notification(
name=request.name,
email=request.email,
reason=request.reason,
timestamp=req.get("timestamp", "")
)
return {"request_id": request_id, "status": "submitted"}
except Exception as e:
logger.error(f"Error submitting permission request: {str(e)}")
raise HTTPException(
status_code=status.HTTP_500_INTERNAL_SERVER_ERROR,
detail="Failed to submit request"
)
def verify_master_password(user: Dict[str, Any] = Depends(get_current_user)) -> Dict[str, Any]:
"""Verify that the current user is using master password."""
if not user.get("is_master"):
raise HTTPException(
status_code=status.HTTP_403_FORBIDDEN,
detail="Master password required"
)
return user
@app.get("/api/auth/requests")
async def list_permission_requests(
admin_user: Dict[str, Any] = Depends(verify_master_password)
):
"""List all permission requests. Admin only."""
try:
requests = auth_storage.load_requests()
return {"requests": requests}
except Exception as e:
logger.error(f"Error listing requests: {str(e)}")
raise HTTPException(
status_code=status.HTTP_500_INTERNAL_SERVER_ERROR,
detail="Failed to list requests"
)
@app.post("/api/auth/requests/{request_id}/approve")
async def approve_request(
request_id: str,
approve_data: ApproveRequestData,
admin_user: Dict[str, Any] = Depends(verify_master_password)
):
"""Approve a permission request and create user account. Admin only."""
try:
req = auth_storage.get_request(request_id)
if not req:
raise HTTPException(status_code=404, detail="Request not found")
if req.get("status") != "pending":
raise HTTPException(status_code=400, detail="Request already processed")
# Generate password if not provided
password = approve_data.password or secrets.token_urlsafe(12)
password_hash = get_password_hash(password)
# Create user account
try:
auth_storage.add_user(email=req["email"], password_hash=password_hash)
except ValueError as e:
# User might already exist
logger.warning(f"User creation warning: {str(e)}")
# Update request status
auth_storage.update_request_status(request_id, "approved")
# Send approval email
email_service.send_approval_email(
user_email=req["email"],
user_name=req["name"],
password=password
)
return {"status": "approved", "email": req["email"]}
except HTTPException:
raise
except Exception as e:
logger.error(f"Error approving request: {str(e)}")
raise HTTPException(
status_code=status.HTTP_500_INTERNAL_SERVER_ERROR,
detail="Failed to approve request"
)
@app.post("/api/auth/requests/{request_id}/reject")
async def reject_request(
request_id: str,
reject_data: RejectRequestData,
admin_user: Dict[str, Any] = Depends(verify_master_password)
):
"""Reject a permission request. Admin only."""
try:
req = auth_storage.get_request(request_id)
if not req:
raise HTTPException(status_code=404, detail="Request not found")
if req.get("status") != "pending":
raise HTTPException(status_code=400, detail="Request already processed")
# Update request status
auth_storage.update_request_status(request_id, "rejected", reject_data.reason)
# Send rejection email
email_service.send_rejection_email(
user_email=req["email"],
user_name=req["name"],
reason=reject_data.reason
)
return {"status": "rejected"}
except HTTPException:
raise
except Exception as e:
logger.error(f"Error rejecting request: {str(e)}")
raise HTTPException(
status_code=status.HTTP_500_INTERNAL_SERVER_ERROR,
detail="Failed to reject request"
)
@app.delete("/api/auth/requests/{request_id}")
async def delete_request(
request_id: str,
admin_user: Dict[str, Any] = Depends(verify_master_password)
):
"""Delete a permission request without sending email. Admin only."""
try:
auth_storage.delete_request(request_id)
return {"status": "deleted"}
except Exception as e:
logger.error(f"Error deleting request: {str(e)}")
raise HTTPException(
status_code=status.HTTP_500_INTERNAL_SERVER_ERROR,
detail="Failed to delete request"
)
@app.post("/api/auth/users")
async def create_user(
user_request: CreateUserRequest,
admin_user: Dict[str, Any] = Depends(verify_master_password)
):
"""Create a new user. Admin only."""
try:
password_hash = get_password_hash(user_request.password)
auth_storage.add_user(email=user_request.email, password_hash=password_hash)
return {"status": "created", "email": user_request.email}
except ValueError as e:
raise HTTPException(status_code=400, detail=str(e))
except Exception as e:
logger.error(f"Error creating user: {str(e)}")
raise HTTPException(
status_code=status.HTTP_500_INTERNAL_SERVER_ERROR,
detail="Failed to create user"
)
@app.get("/api/auth/users")
async def list_users(
admin_user: Dict[str, Any] = Depends(verify_master_password)
):
"""List all users. Admin only."""
try:
users = auth_storage.load_users()
# Don't return password hashes
user_list = [{"email": user["email"]} for user in users]
return {"users": user_list}
except Exception as e:
logger.error(f"Error listing users: {str(e)}")
raise HTTPException(
status_code=status.HTTP_500_INTERNAL_SERVER_ERROR,
detail="Failed to list users"
)
@app.delete("/api/auth/users/{email}")
async def delete_user(
email: str,
admin_user: Dict[str, Any] = Depends(verify_master_password)
):
"""Delete a user. Admin only."""
try:
auth_storage.delete_user(email)
return {"status": "deleted", "email": email}
except Exception as e:
logger.error(f"Error deleting user: {str(e)}")
raise HTTPException(
status_code=status.HTTP_500_INTERNAL_SERVER_ERROR,
detail="Failed to delete user"
)
if __name__ == "__main__":
import uvicorn
uvicorn.run("main:app", host="0.0.0.0", port=8000, reload=True) |