Spaces:
Build error
Build error
File size: 26,862 Bytes
7d6a5e2 | 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 | """
BG Remover Pro โ FastAPI Backend
Supports: Fast Mode (u2net) & Thinking Mode (BiRefNet + Claude AI)
Queue: max 10 waiting | Rate limiting | Anti-spam
"""
import asyncio
import base64
import gc
import io
import json
import logging
import os
import time
import uuid
from collections import defaultdict
from dataclasses import dataclass, field
from enum import Enum
from pathlib import Path
from typing import Dict, List, Optional
import anthropic
from fastapi import FastAPI, File, HTTPException, Request, UploadFile, WebSocket, WebSocketDisconnect
from fastapi.middleware.cors import CORSMiddleware
from fastapi.responses import JSONResponse, Response
from fastapi.staticfiles import StaticFiles
from PIL import Image, ImageFilter
import numpy as np
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
# LOGGING
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
logging.basicConfig(level=logging.INFO, format="%(asctime)s [%(levelname)s] %(message)s")
log = logging.getLogger("bgremover")
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
# CONSTANTS
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
ALLOWED_MIME_TYPES = {
"image/jpeg", "image/jpg", "image/png", "image/webp",
"image/gif", "image/bmp", "image/tiff", "image/avif",
"image/heic", "image/heif", "image/x-png",
}
ALLOWED_EXTENSIONS = {
".jpg", ".jpeg", ".png", ".webp",
".gif", ".bmp", ".tiff", ".tif", ".avif",
}
MAX_FILE_SIZE = 100 * 1024 * 1024 # 100 MB
MAX_QUEUE_SIZE = 10 # max waiting tasks
RATE_LIMIT_WINDOW = 60 # seconds
RATE_LIMIT_MAX = 5 # requests per window per IP
MAX_ACTIVE_PER_IP = 2 # concurrent tasks per IP
THINKING_TIMEOUT = 120 # seconds (2 min max)
RESULT_TTL = 3600 # keep results for 1 hour
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
# ENUMS & DATA CLASSES
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
class Mode(str, Enum):
FAST = "fast"
THINKING = "thinking"
class TaskStatus(str, Enum):
PENDING = "pending"
PROCESSING = "processing"
COMPLETED = "completed"
FAILED = "failed"
@dataclass
class Task:
id: str
mode: Mode
image_data: bytes
filename: str
ip: str
status: TaskStatus = TaskStatus.PENDING
queue_pos: int = 0
created_at: float = field(default_factory=time.time)
result_png: Optional[bytes] = None
result_webp: Optional[bytes] = None
error: Optional[str] = None
analysis: Optional[str] = None
orig_size: Optional[tuple] = None
proc_time: Optional[float] = None
stage: str = "ุงูุชุธุงุฑ"
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
# GLOBAL STATE
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
tasks: Dict[str, Task] = {}
pending_queue: List[str] = []
queue_lock: asyncio.Lock = asyncio.Lock()
ws_map: Dict[str, List[WebSocket]] = defaultdict(list)
ip_times: Dict[str, List[float]] = defaultdict(list)
ip_active: Dict[str, int] = defaultdict(int)
current_task: Optional[str] = None
# Sessions (loaded at startup)
fast_session = None
thinking_session = None
anthropic_client = None
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
# APP
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
app = FastAPI(title="BG Remover Pro", version="2.0")
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_methods=["*"],
allow_headers=["*"],
)
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
# STARTUP
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
@app.on_event("startup")
async def startup_event():
global fast_session, thinking_session, anthropic_client
log.info("Loading fast model (u2net)...")
from rembg import new_session
fast_session = new_session("u2net")
log.info("โ u2net loaded")
log.info("Loading thinking model (birefnet-general)...")
thinking_session = new_session("birefnet-general")
log.info("โ birefnet-general loaded")
api_key = os.getenv("ANTHROPIC_API_KEY", "")
if api_key:
anthropic_client = anthropic.Anthropic(api_key=api_key)
log.info("โ Anthropic client initialized")
else:
log.warning("ANTHROPIC_API_KEY not set โ AI analysis disabled")
asyncio.create_task(queue_worker())
asyncio.create_task(cleanup_worker())
log.info("โ Workers started")
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
# RATE LIMITING
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
def check_rate_limit(ip: str) -> tuple[bool, str]:
now = time.time()
ip_times[ip] = [t for t in ip_times[ip] if now - t < RATE_LIMIT_WINDOW]
if len(ip_times[ip]) >= RATE_LIMIT_MAX:
remaining = int(RATE_LIMIT_WINDOW - (now - ip_times[ip][0]))
return False, f"ุชุฌุงูุฒุช ุงูุญุฏ ุงูู
ุณู
ูุญ ุจู ({RATE_LIMIT_MAX} ุทูุจุงุช/{RATE_LIMIT_WINDOW}ุซ). ุงูุชุธุฑ {remaining}ุซ"
if ip_active[ip] >= MAX_ACTIVE_PER_IP:
return False, f"ูุฏูู {MAX_ACTIVE_PER_IP} ู
ูุงู
ูุดุทุฉ ุจุงููุนู. ุงูุชุธุฑ ุงูุชู
ุงููุง"
ip_times[ip].append(now)
return True, ""
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
# IMAGE VALIDATION
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
async def validate_image(file: UploadFile, data: bytes) -> tuple[bool, str]:
if len(data) > MAX_FILE_SIZE:
return False, "ุญุฌู
ุงูู
ูู ูุชุฌุงูุฒ 100MB"
fname = file.filename or ""
ext = Path(fname).suffix.lower()
if ext and ext not in ALLOWED_EXTENSIONS:
return False, f"ุงู
ุชุฏุงุฏ ุบูุฑ ู
ุณู
ูุญ: {ext}. ุงูู
ุณู
ูุญ: {', '.join(sorted(ALLOWED_EXTENSIONS))}"
ct = (file.content_type or "").lower().split(";")[0].strip()
if ct and ct not in ALLOWED_MIME_TYPES and not ct.startswith("image/"):
return False, f"ููุน ุงูู
ูู ุบูุฑ ู
ุณู
ูุญ: {ct}"
# Verify actual image bytes
try:
img = Image.open(io.BytesIO(data))
img.verify()
except Exception:
try:
img = Image.open(io.BytesIO(data))
img.load()
except Exception:
return False, "ุงูู
ูู ุชุงูู ุฃู ููุณ ุตูุฑุฉ ุตุงูุญุฉ"
return True, ""
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
# AI ANALYSIS (Claude)
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
async def analyze_image(image_data: bytes, mode: Mode) -> str:
if not anthropic_client:
return "ุชุญููู ุงูุฐูุงุก ุงูุงุตุทูุงุนู ุบูุฑ ู
ุชุงุญ (ANTHROPIC_API_KEY ุบูุฑ ู
ุญุฏุฏ)"
try:
# Resize for API if too large (saves tokens)
img = Image.open(io.BytesIO(image_data)).convert("RGB")
if max(img.size) > 1024:
img.thumbnail((1024, 1024), Image.LANCZOS)
buf = io.BytesIO()
img.save(buf, format="JPEG", quality=85)
b64 = base64.standard_b64encode(buf.getvalue()).decode()
if mode == Mode.THINKING:
# Extended thinking for maximum precision analysis
response = anthropic_client.messages.create(
model="claude-sonnet-4-20250514",
max_tokens=2000,
thinking={"type": "enabled", "budget_tokens": 8000},
messages=[{
"role": "user",
"content": [
{
"type": "image",
"source": {"type": "base64", "media_type": "image/jpeg", "data": b64}
},
{
"type": "text",
"text": (
"ุฃูุช ุฎุจูุฑ ู
ุญุชุฑู ูู ู
ุนุงูุฌุฉ ุงูุตูุฑ ูุฅุฒุงูุฉ ุงูุฎูููุงุช. ุญูู ูุฐู ุงูุตูุฑุฉ ุชุญูููุงู ุฏูููุงู:\n\n"
"1. **ุงูู
ูุถูุน ุงูุฑุฆูุณู**: ู
ุง ููุ (ุดุฎุตุ ุญููุงูุ ู
ูุชุฌุ ุฅูุฎ)\n"
"2. **ุงูุฎูููุฉ**: ุทุจูุนุชูุง ูู
ุฏู ุชุนููุฏูุง\n"
"3. **ุงูุญูุงู ุงูุตุนุจุฉ**: ูู ููุฌุฏ ุดุนุฑุ ูุฑุงุกุ ุดูุงููุฉุ ุธูุงูุ\n"
"4. **ู
ุณุชูู ุงูุตุนูุจุฉ**: ุณูู / ู
ุชูุณุท / ุตุนุจ ุฌุฏุงู\n"
"5. **ุชูุตูุฉ**: ู
ุง ุงูุฅุณุชุฑุงุชูุฌูุฉ ุงูู
ุซูู ูุฅุฒุงูุฉ ุงูุฎูููุฉุ\n\n"
"ูู ุฏูููุงู ูู
ุฎุชุตุฑุงู."
)
}
]
}]
)
else:
response = anthropic_client.messages.create(
model="claude-sonnet-4-20250514",
max_tokens=300,
messages=[{
"role": "user",
"content": [
{
"type": "image",
"source": {"type": "base64", "media_type": "image/jpeg", "data": b64}
},
{
"type": "text",
"text": "ู
ุง ุงูู
ูุถูุน ุงูุฑุฆูุณู ูู ูุฐู ุงูุตูุฑุฉุ ูู ุงูุฎูููุฉ ุจุณูุทุฉ ุฃู
ู
ุนูุฏุฉุ ุฌู
ูุชุงู ููุท."
}
]
}]
)
text_blocks = [b for b in response.content if b.type == "text"]
return text_blocks[0].text if text_blocks else "ุชู
ุงูุชุญููู"
except Exception as e:
log.error(f"Claude analysis error: {e}")
return f"ุชุนุฐุฑ ุงูุชุญููู: {str(e)[:120]}"
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
# BACKGROUND REMOVAL
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
def _do_remove_fast(data: bytes) -> bytes:
"""Fast removal using u2net โ standard quality, quick."""
from rembg import remove
return remove(
data,
session=fast_session,
alpha_matting=False,
post_process_mask=True,
bgcolor=None,
)
def _do_remove_thinking(data: bytes) -> bytes:
"""
Thinking removal using BiRefNet + alpha matting.
Multi-pass for maximum edge precision.
"""
from rembg import remove
# Pass 1: BiRefNet segmentation with alpha matting
result_bytes = remove(
data,
session=thinking_session,
alpha_matting=True,
alpha_matting_foreground_threshold=240,
alpha_matting_background_threshold=10,
alpha_matting_erode_size=10,
post_process_mask=True,
bgcolor=None,
)
# Pass 2: Alpha channel refinement
try:
result_img = Image.open(io.BytesIO(result_bytes)).convert("RGBA")
r, g, b, alpha = result_img.split()
# Denoise alpha channel โ reduces haloing artifacts
alpha_arr = np.array(alpha, dtype=np.float32)
# Bilateral-style smoothing on edge regions
# Only smooth near-edge pixels (20โ200), keep full opacity/transparency
edge_mask = (alpha_arr > 20) & (alpha_arr < 235)
if edge_mask.any():
from PIL import ImageFilter
alpha_smooth = alpha.filter(ImageFilter.SMOOTH_MORE)
alpha_arr2 = np.array(alpha_smooth, dtype=np.float32)
# Blend only at edge pixels
alpha_arr[edge_mask] = (
alpha_arr[edge_mask] * 0.4 + alpha_arr2[edge_mask] * 0.6
)
alpha_final = Image.fromarray(alpha_arr.clip(0, 255).astype(np.uint8))
final_img = Image.merge("RGBA", (r, g, b, alpha_final))
out = io.BytesIO()
final_img.save(out, format="PNG", optimize=False, compress_level=1)
return out.getvalue()
except Exception as e:
log.warning(f"Pass 2 refinement failed (returning pass 1): {e}")
return result_bytes
async def run_removal(task: Task) -> bytes:
loop = asyncio.get_event_loop()
if task.mode == Mode.FAST:
return await loop.run_in_executor(None, _do_remove_fast, task.image_data)
else:
return await asyncio.wait_for(
loop.run_in_executor(None, _do_remove_thinking, task.image_data),
timeout=THINKING_TIMEOUT,
)
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
# WEBSOCKET BROADCAST
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
async def broadcast(task_id: str, payload: dict):
dead = []
for ws in ws_map.get(task_id, []):
try:
await ws.send_json(payload)
except Exception:
dead.append(ws)
for ws in dead:
try:
ws_map[task_id].remove(ws)
except ValueError:
pass
async def broadcast_all_positions():
"""Notify all waiting tasks of their new queue positions."""
async with queue_lock:
for i, tid in enumerate(pending_queue):
await broadcast(tid, {
"event": "position_update",
"position": i + 1,
"total": len(pending_queue),
})
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
# QUEUE WORKER
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
async def queue_worker():
global current_task
log.info("Queue worker started")
while True:
task_id = None
async with queue_lock:
if pending_queue:
task_id = pending_queue.pop(0)
t = tasks.get(task_id)
if t:
t.status = TaskStatus.PROCESSING
t.stage = "ุชุญููู ุงูุตูุฑุฉ"
t.queue_pos = 0
current_task = task_id
# Update remaining positions
for i, tid in enumerate(pending_queue):
if tid in tasks:
tasks[tid].queue_pos = i + 1
if not task_id:
await asyncio.sleep(0.3)
continue
task = tasks.get(task_id)
if not task:
current_task = None
continue
start = time.time()
try:
# Step 1: AI analysis
await broadcast(task_id, {"event": "stage", "stage": "ุชุญููู ุงูุตูุฑุฉ ุจุงูุฐูุงุก ุงูุงุตุทูุงุนู..."})
task.stage = "ุชุญููู"
task.analysis = await analyze_image(task.image_data, task.mode)
# Step 2: Background removal
stage_msg = (
"ุฅุฒุงูุฉ ุงูุฎูููุฉ โ ูุถุน ุงูุชูููุฑ ุงูุนู
ูู (ุญุชู ุฏูููุชูู)..."
if task.mode == Mode.THINKING
else "ุฅุฒุงูุฉ ุงูุฎูููุฉ โ ุงููุถุน ุงูุณุฑูุน..."
)
await broadcast(task_id, {"event": "stage", "stage": stage_msg, "analysis": task.analysis})
task.stage = "ุฅุฒุงูุฉ ุงูุฎูููุฉ"
result_bytes = await run_removal(task)
task.result_png = result_bytes
# Step 3: Generate WebP lossless
await broadcast(task_id, {"event": "stage", "stage": "ุชูููุฏ ู
ูู WebP..."})
result_img = Image.open(io.BytesIO(result_bytes)).convert("RGBA")
webp_buf = io.BytesIO()
result_img.save(webp_buf, format="WEBP", lossless=True, quality=100)
task.result_webp = webp_buf.getvalue()
task.proc_time = time.time() - start
task.status = TaskStatus.COMPLETED
task.stage = "ู
ูุชู
ู"
log.info(f"Task {task_id[:8]} completed in {task.proc_time:.1f}s ({task.mode})")
await broadcast(task_id, {
"event": "completed",
"task_id": task_id,
"proc_time": f"{task.proc_time:.1f}",
"analysis": task.analysis,
"size_kb": len(task.result_png) // 1024,
})
except asyncio.TimeoutError:
task.status = TaskStatus.FAILED
task.error = "ุงูุชูุช ู
ููุฉ ุงูู
ุนุงูุฌุฉ (120 ุซุงููุฉ). ุฌุฑุจ ุงููุถุน ุงูุณุฑูุน"
log.warning(f"Task {task_id[:8]} timed out")
await broadcast(task_id, {"event": "failed", "error": task.error})
except Exception as exc:
task.status = TaskStatus.FAILED
task.error = str(exc)
log.error(f"Task {task_id[:8]} failed: {exc}", exc_info=True)
await broadcast(task_id, {"event": "failed", "error": str(exc)[:300]})
finally:
ip_active[task.ip] = max(0, ip_active[task.ip] - 1)
current_task = None
del task.image_data # free memory immediately
gc.collect()
await broadcast_all_positions()
await asyncio.sleep(0.1)
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
# CLEANUP WORKER โ removes old results
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
async def cleanup_worker():
while True:
await asyncio.sleep(300)
now = time.time()
stale = [
tid for tid, t in tasks.items()
if now - t.created_at > RESULT_TTL
and t.status in (TaskStatus.COMPLETED, TaskStatus.FAILED)
]
for tid in stale:
del tasks[tid]
if stale:
log.info(f"Cleaned up {len(stale)} old tasks")
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
# WEBSOCKET ENDPOINT
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
@app.websocket("/ws/{task_id}")
async def ws_endpoint(websocket: WebSocket, task_id: str):
await websocket.accept()
ws_map[task_id].append(websocket)
# Send current state immediately
task = tasks.get(task_id)
if task:
if task.status == TaskStatus.COMPLETED:
await websocket.send_json({"event": "completed", "task_id": task_id, "proc_time": str(task.proc_time or 0), "analysis": task.analysis})
elif task.status == TaskStatus.FAILED:
await websocket.send_json({"event": "failed", "error": task.error})
elif task.status == TaskStatus.PENDING:
await websocket.send_json({"event": "queued", "position": task.queue_pos, "total": len(pending_queue)})
elif task.status == TaskStatus.PROCESSING:
await websocket.send_json({"event": "stage", "stage": task.stage})
try:
while True:
await asyncio.wait_for(websocket.receive_text(), timeout=60)
except (WebSocketDisconnect, asyncio.TimeoutError):
pass
finally:
try:
ws_map[task_id].remove(websocket)
except ValueError:
pass
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
# HTTP ENDPOINTS
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
@app.get("/health")
async def health():
return {"status": "ok", "queue": len(pending_queue), "processing": current_task is not None}
@app.get("/")
async def root():
from fastapi.responses import FileResponse
return FileResponse("static/index.html")
@app.post("/upload")
async def upload(
request: Request,
file: UploadFile = File(...),
mode: str = "fast",
):
ip = request.client.host or "unknown"
# Validate mode
if mode not in (Mode.FAST, Mode.THINKING):
raise HTTPException(400, "ูุถุน ุบูุฑ ุตุงูุญ. ุงุณุชุฎุฏู
'fast' ุฃู 'thinking'")
# Rate limit
allowed, msg = check_rate_limit(ip)
if not allowed:
raise HTTPException(429, msg)
# Queue capacity
async with queue_lock:
if len(pending_queue) >= MAX_QUEUE_SIZE:
raise HTTPException(503, f"ุงูุทุงุจูุฑ ู
ู
ุชูุฆ ({MAX_QUEUE_SIZE}/{MAX_QUEUE_SIZE}). ูุฑุฌู ุงูุงูุชุธุงุฑ")
# Read & validate
data = await file.read()
valid, err = await validate_image(file, data)
if not valid:
# Refund the rate limit slot
ip_times[ip].pop() if ip_times[ip] else None
raise HTTPException(400, err)
# Image metadata
img = Image.open(io.BytesIO(data))
orig_size = img.size
# Create task
task_id = str(uuid.uuid4())
task = Task(
id=task_id,
mode=Mode(mode),
image_data=data,
filename=file.filename or "image",
ip=ip,
orig_size=orig_size,
)
async with queue_lock:
tasks[task_id] = task
pending_queue.append(task_id)
task.queue_pos = len(pending_queue)
ip_active[ip] += 1
log.info(f"New task {task_id[:8]} | mode={mode} | size={orig_size} | ip={ip}")
return JSONResponse({
"task_id": task_id,
"queue_pos": task.queue_pos,
"queue_total": len(pending_queue),
"mode": mode,
"image_size": f"{orig_size[0]}ร{orig_size[1]}",
"filename": file.filename,
})
@app.get("/status/{task_id}")
async def status(task_id: str):
task = tasks.get(task_id)
if not task:
raise HTTPException(404, "ุงูู
ูู
ุฉ ุบูุฑ ู
ูุฌูุฏุฉ ุฃู ุงูุชูุช ุตูุงุญูุชูุง")
base = {
"task_id": task_id,
"status": task.status.value,
"mode": task.mode.value,
"filename": task.filename,
}
if task.status == TaskStatus.PENDING:
base.update({"queue_pos": task.queue_pos, "queue_total": len(pending_queue) + (1 if current_task else 0)})
elif task.status == TaskStatus.PROCESSING:
base.update({"stage": task.stage})
elif task.status == TaskStatus.COMPLETED:
base.update({"proc_time": task.proc_time, "analysis": task.analysis, "size_kb": len(task.result_png or b"") // 1024})
elif task.status == TaskStatus.FAILED:
base.update({"error": task.error})
return JSONResponse(base)
@app.get("/result/{task_id}")
async def result(task_id: str, fmt: str = "png"):
task = tasks.get(task_id)
if not task:
raise HTTPException(404, "ุงูู
ูู
ุฉ ุบูุฑ ู
ูุฌูุฏุฉ")
if task.status != TaskStatus.COMPLETED:
raise HTTPException(400, f"ุงูู
ูู
ุฉ ูู
ุชูุชู
ู. ุงูุญุงูุฉ: {task.status.value}")
stem = Path(task.filename).stem
if fmt == "webp" and task.result_webp:
return Response(
content=task.result_webp,
media_type="image/webp",
headers={"Content-Disposition": f'attachment; filename="{stem}_nobg.webp"'},
)
return Response(
content=task.result_png,
media_type="image/png",
headers={"Content-Disposition": f'attachment; filename="{stem}_nobg.png"'},
)
@app.get("/preview/{task_id}")
async def preview(task_id: str):
"""Inline preview (no Content-Disposition) for display in browser."""
task = tasks.get(task_id)
if not task or task.status != TaskStatus.COMPLETED:
raise HTTPException(404, "ุงููุชูุฌุฉ ุบูุฑ ู
ุชุงุญุฉ")
return Response(content=task.result_png, media_type="image/png")
@app.get("/queue-info")
async def queue_info():
return JSONResponse({
"waiting": len(pending_queue),
"max": MAX_QUEUE_SIZE,
"free_slots": MAX_QUEUE_SIZE - len(pending_queue),
"processing": current_task is not None,
"total_tasks": len(tasks),
})
@app.delete("/task/{task_id}")
async def cancel_task(task_id: str, request: Request):
task = tasks.get(task_id)
if not task:
raise HTTPException(404, "ุงูู
ูู
ุฉ ุบูุฑ ู
ูุฌูุฏุฉ")
if task.status == TaskStatus.PROCESSING:
raise HTTPException(400, "ูุง ูู
ูู ุฅูุบุงุก ู
ูู
ุฉ ููุฏ ุงูู
ุนุงูุฌุฉ")
async with queue_lock:
if task_id in pending_queue:
pending_queue.remove(task_id)
ip_active[task.ip] = max(0, ip_active[task.ip] - 1)
if task_id in tasks:
del tasks[task_id]
await broadcast_all_positions()
return JSONResponse({"message": "ุชู
ุฅูุบุงุก ุงูู
ูู
ุฉ"})
# Mount static files
app.mount("/static", StaticFiles(directory="static"), name="static")
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
if __name__ == "__main__":
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=7860, loop="asyncio")
|