Spaces:
Running
Running
File size: 29,614 Bytes
cfe45d5 | 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 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 | import os
import shutil
import time
from typing import Optional
from fastapi import APIRouter, Depends, HTTPException, Request, UploadFile, File, Form
from sqlalchemy.orm import Session
from app.database import get_db
from app.auth import get_current_user
from app.config import settings
from app.models.user import User
from app.models.project import Project, ProjectStatus
from app.schemas.schemas import (
ProjectCreate, ProjectOut, ProjectListOut, SceneOut, SceneUpdate,
ReorderScenesRequest, RegenerateSceneRequest
)
from app.services import r2_storage
from app.services.remotion import safe_remove_workspace, get_workspace_dir
from app.services.doc_extractor import extract_from_documents
from app.services.template_service import validate_template_id, get_preview_colors, get_valid_layouts
router = APIRouter(prefix="/api/projects", tags=["projects"])
# βββ Constants ββββββββββββββββββββββββββββββββββββββββββββ
_MAX_UPLOAD_FILES = 5
_MAX_FILE_SIZE = 5 * 1024 * 1024 # 5 MB
_ALLOWED_MIME_TYPES = {
"application/pdf",
"application/vnd.openxmlformats-officedocument.wordprocessingml.document", # .docx
"application/vnd.openxmlformats-officedocument.presentationml.presentation", # .pptx
}
_ALLOWED_EXTENSIONS = {".pdf", ".docx", ".pptx"}
@router.post("", response_model=ProjectOut)
def create_project(
data: ProjectCreate,
user: User = Depends(get_current_user),
db: Session = Depends(get_db),
):
"""Create a new project from a blog URL. Counts against video limit."""
if not user.can_create_video:
raise HTTPException(
status_code=403,
detail=f"Video limit reached ({user.video_limit}). Upgrade to Pro for 100 videos/month.",
)
if not data.blog_url:
raise HTTPException(status_code=400, detail="blog_url is required for URL-based project creation.")
name = data.name or _name_from_url(data.blog_url)
template_id = validate_template_id(data.template)
colors = get_preview_colors(template_id)
project = Project(
user_id=user.id,
name=name,
blog_url=data.blog_url,
template=template_id,
voice_gender=data.voice_gender or "female",
voice_accent=data.voice_accent or "american",
accent_color=data.accent_color or (colors.get("accent") if colors else None) or "#7C3AED",
bg_color=data.bg_color or (colors.get("bg") if colors else None) or "#FFFFFF",
text_color=data.text_color or (colors.get("text") if colors else None) or "#000000",
animation_instructions=data.animation_instructions or None,
logo_position=data.logo_position or "bottom_right",
logo_opacity=data.logo_opacity if data.logo_opacity is not None else 0.9,
custom_voice_id=data.custom_voice_id or None,
aspect_ratio=data.aspect_ratio or "landscape",
status=ProjectStatus.CREATED,
)
db.add(project)
# Increment usage counter
user.videos_used_this_period += 1
db.commit()
db.refresh(project)
return project
@router.post("/upload", response_model=ProjectOut)
def create_project_from_upload(
request: Request,
files: list[UploadFile] = File(...),
name: Optional[str] = Form(None),
voice_gender: Optional[str] = Form("female"),
voice_accent: Optional[str] = Form("american"),
accent_color: Optional[str] = Form(None),
bg_color: Optional[str] = Form(None),
text_color: Optional[str] = Form(None),
animation_instructions: Optional[str] = Form(None),
logo_position: Optional[str] = Form("bottom_right"),
logo_opacity: Optional[float] = Form(0.9),
custom_voice_id: Optional[str] = Form(None),
aspect_ratio: Optional[str] = Form("landscape"),
template: Optional[str] = Form(None),
user: User = Depends(get_current_user),
db: Session = Depends(get_db),
):
"""Create a new project from uploaded documents (PDF, DOCX, PPTX). Counts against video limit."""
if not user.can_create_video:
raise HTTPException(
status_code=403,
detail=f"Video limit reached ({user.video_limit}). Upgrade to Pro for 100 videos/month.",
)
# ββ Validate files ββββββββββββββββββββββββββββββββββββ
if not files or len(files) == 0:
raise HTTPException(status_code=400, detail="At least one file is required.")
if len(files) > _MAX_UPLOAD_FILES:
raise HTTPException(status_code=400, detail=f"Maximum {_MAX_UPLOAD_FILES} files allowed.")
for f in files:
# Check by extension (MIME types can be unreliable for Office files)
file_ext = os.path.splitext(f.filename or "")[1].lower() if f.filename else ""
if file_ext not in _ALLOWED_EXTENSIONS and f.content_type not in _ALLOWED_MIME_TYPES:
raise HTTPException(
status_code=400,
detail=f"File '{f.filename}' is not supported. Accepted formats: PDF, DOCX, PPTX.",
)
# Check file size (read content to measure, then reset)
content = f.file.read()
if len(content) > _MAX_FILE_SIZE:
raise HTTPException(
status_code=400,
detail=f"File '{f.filename}' exceeds the 5 MB size limit.",
)
f.file.seek(0) # Reset for later reading
# ββ Create project ββββββββββββββββββββββββββββββββββββ
project_name = name or _name_from_files(files)
template_id = validate_template_id(template)
colors = get_preview_colors(template_id)
print(f"[PROJECTS] Creating project from upload: template='{template}', validated='{template_id}'")
project = Project(
user_id=user.id,
name=project_name,
blog_url="upload://documents",
template=template_id,
voice_gender=voice_gender or "female",
voice_accent=voice_accent or "american",
accent_color=accent_color or (colors.get("accent") if colors else None) or "#7C3AED",
bg_color=bg_color or (colors.get("bg") if colors else None) or "#FFFFFF",
text_color=text_color or (colors.get("text") if colors else None) or "#000000",
animation_instructions=animation_instructions or None,
logo_position=logo_position or "bottom_right",
logo_opacity=logo_opacity if logo_opacity is not None else 0.9,
custom_voice_id=custom_voice_id or None,
aspect_ratio=aspect_ratio or "landscape",
status=ProjectStatus.CREATED,
)
db.add(project)
user.videos_used_this_period += 1
db.commit()
db.refresh(project)
print(f"[PROJECTS] Project {project.id} created with template='{project.template}'")
# ββ Extract text + images from documents ββββββββββββββββ
try:
project = extract_from_documents(project, files, db)
except Exception as e:
print(f"[PROJECTS] Document extraction failed for project {project.id}: {e}")
project.status = ProjectStatus.ERROR
db.commit()
raise HTTPException(status_code=500, detail=f"Document extraction failed: {str(e)}")
return project
@router.post("/{project_id}/upload-documents", response_model=ProjectOut)
def upload_documents_to_project(
project_id: int,
files: list[UploadFile] = File(...),
user: User = Depends(get_current_user),
db: Session = Depends(get_db),
):
"""Upload documents to an existing project and extract text + images."""
project = _get_user_project(project_id, user.id, db)
if project.status != ProjectStatus.CREATED:
raise HTTPException(status_code=400, detail="Project already has content.")
# Validate files
if not files or len(files) == 0:
raise HTTPException(status_code=400, detail="At least one file is required.")
if len(files) > _MAX_UPLOAD_FILES:
raise HTTPException(status_code=400, detail=f"Maximum {_MAX_UPLOAD_FILES} files allowed.")
for f in files:
file_ext = os.path.splitext(f.filename or "")[1].lower() if f.filename else ""
if file_ext not in _ALLOWED_EXTENSIONS and f.content_type not in _ALLOWED_MIME_TYPES:
raise HTTPException(
status_code=400,
detail=f"File '{f.filename}' is not supported. Accepted formats: PDF, DOCX, PPTX.",
)
content = f.file.read()
if len(content) > _MAX_FILE_SIZE:
raise HTTPException(
status_code=400,
detail=f"File '{f.filename}' exceeds the 5 MB size limit.",
)
f.file.seek(0)
try:
project = extract_from_documents(project, files, db)
except Exception as e:
print(f"[PROJECTS] Document extraction failed for project {project.id}: {e}")
project.status = ProjectStatus.ERROR
db.commit()
raise HTTPException(status_code=500, detail=f"Document extraction failed: {str(e)}")
return project
@router.post("/{project_id}/logo")
def upload_logo(
project_id: int,
request: Request,
file: UploadFile = File(...),
user: User = Depends(get_current_user),
db: Session = Depends(get_db),
):
"""Upload a logo image for the project. Stored in R2."""
project = _get_user_project(project_id, user.id, db)
# Validate file type
allowed_types = {"image/png", "image/jpeg", "image/webp", "image/svg+xml"}
if file.content_type not in allowed_types:
raise HTTPException(status_code=400, detail="Logo must be PNG, JPEG, WebP, or SVG.")
# Read file content and enforce size limit (2 MB max)
MAX_LOGO_SIZE = 2 * 1024 * 1024 # 2 MB
file_bytes = file.file.read()
if len(file_bytes) > MAX_LOGO_SIZE:
raise HTTPException(status_code=400, detail="Logo file too large. Maximum size is 2 MB.")
# Save locally first
logo_dir = os.path.join(settings.MEDIA_DIR, f"projects/{project_id}")
os.makedirs(logo_dir, exist_ok=True)
ext = file.filename.rsplit(".", 1)[-1] if file.filename and "." in file.filename else "png"
logo_filename = f"logo.{ext}"
local_path = os.path.join(logo_dir, logo_filename)
with open(local_path, "wb") as f:
f.write(file_bytes)
# Upload to R2
if r2_storage.is_r2_configured():
try:
r2_key = r2_storage.image_key(user.id, project_id, logo_filename)
r2_url = r2_storage.upload_file(local_path, r2_key, content_type=file.content_type)
project.logo_r2_key = r2_key
project.logo_r2_url = r2_url
except Exception as e:
print(f"[PROJECTS] Logo R2 upload failed: {e}")
project.logo_r2_key = None
project.logo_r2_url = None
# Fallback: if R2 isn't configured or upload failed, use local serving URL
if not project.logo_r2_url:
base = str(request.base_url).rstrip("/")
project.logo_r2_url = f"{base}/media/projects/{project_id}/{logo_filename}"
db.commit()
db.refresh(project)
return {"logo_url": project.logo_r2_url, "logo_position": project.logo_position}
@router.get("", response_model=list[ProjectListOut])
def list_projects(
user: User = Depends(get_current_user),
db: Session = Depends(get_db),
):
"""List all projects for the current user."""
projects = (
db.query(Project)
.filter(Project.user_id == user.id)
.order_by(Project.created_at.desc())
.all()
)
result = []
for p in projects:
item = ProjectListOut(
id=p.id,
name=p.name,
blog_url=p.blog_url,
status=p.status.value,
created_at=p.created_at,
updated_at=p.updated_at,
scene_count=len(p.scenes),
)
result.append(item)
return result
@router.get("/{project_id}", response_model=ProjectOut)
def get_project(
project_id: int,
user: User = Depends(get_current_user),
db: Session = Depends(get_db),
):
"""Get a single project with all its scenes and assets."""
project = _get_user_project(project_id, user.id, db)
return project
@router.delete("/{project_id}")
def delete_project(
project_id: int,
user: User = Depends(get_current_user),
db: Session = Depends(get_db),
):
"""Delete a project and all related data (local + R2 storage)."""
project = _get_user_project(project_id, user.id, db)
# Delete R2 files
if r2_storage.is_r2_configured():
try:
r2_storage.delete_project_files(project.user_id, project.id)
except Exception as e:
print(f"[PROJECTS] R2 cleanup failed for project {project.id}: {e}")
# Delete local files
project_media = os.path.join(settings.MEDIA_DIR, f"projects/{project.id}")
if os.path.exists(project_media):
safe_remove_workspace(get_workspace_dir(project.id))
shutil.rmtree(project_media, ignore_errors=True)
db.delete(project)
db.commit()
return {"detail": "Project deleted"}
@router.patch("/{project_id}/assets/{asset_id}/exclude")
def toggle_asset_exclusion(
project_id: int,
asset_id: int,
user: User = Depends(get_current_user),
db: Session = Depends(get_db),
):
"""Toggle an image's excluded status (paid users only)."""
from app.models.asset import Asset
if user.plan == "free":
raise HTTPException(
status_code=403,
detail="Image editing is a Pro feature. Upgrade to exclude images.",
)
_get_user_project(project_id, user.id, db)
asset = (
db.query(Asset)
.filter(Asset.id == asset_id, Asset.project_id == project_id)
.first()
)
if not asset:
raise HTTPException(status_code=404, detail="Asset not found")
asset.excluded = not asset.excluded
db.commit()
db.refresh(asset)
return {"id": asset.id, "excluded": asset.excluded}
@router.delete("/{project_id}/assets/{asset_id}")
def delete_asset(
project_id: int,
asset_id: int,
user: User = Depends(get_current_user),
db: Session = Depends(get_db),
):
"""Delete an asset (image) from the project. Removes from DB and optionally from R2.
Also clears assignedImage from any scenes that reference this image."""
from app.models.asset import Asset
from app.models.scene import Scene
import json
_get_user_project(project_id, user.id, db)
asset = (
db.query(Asset)
.filter(Asset.id == asset_id, Asset.project_id == project_id)
.first()
)
if not asset:
raise HTTPException(status_code=404, detail="Asset not found")
# If this is an image, clear assignedImage from scenes that reference it
# and mark those scenes as hideImage=true so they won't get a new generic
# image auto-assigned later.
if asset.asset_type.value == "image":
deleted_filename = asset.filename
scenes = db.query(Scene).filter(Scene.project_id == project_id).all()
scenes_updated = False
for scene in scenes:
if not scene.remotion_code:
continue
try:
desc = json.loads(scene.remotion_code)
layout_props = desc.get("layoutProps", {}) or {}
assigned_image = layout_props.get("assignedImage")
# If this scene has the deleted image assigned, clear it and lock it to no image
if assigned_image == deleted_filename:
layout_props.pop("assignedImage", None)
layout_props["hideImage"] = True
desc["layoutProps"] = layout_props
scene.remotion_code = json.dumps(desc)
scenes_updated = True
except (json.JSONDecodeError, TypeError):
continue
if scenes_updated:
db.commit()
local_path = asset.local_path
r2_key = asset.r2_key
db.delete(asset)
db.commit()
if local_path and os.path.isfile(local_path):
try:
os.remove(local_path)
except OSError as e:
print(f"[PROJECTS] Failed to remove local file {local_path}: {e}")
if r2_key:
try:
r2_storage.delete_file(r2_key)
except Exception as e:
print(f"[PROJECTS] R2 delete failed for {r2_key}: {e}")
return {"detail": "Asset deleted"}
@router.put("/{project_id}/scenes/{scene_id}", response_model=SceneOut)
def update_scene(
project_id: int,
scene_id: int,
data: SceneUpdate,
user: User = Depends(get_current_user),
db: Session = Depends(get_db),
):
"""Manually update a scene."""
from app.models.scene import Scene
# Verify ownership
_get_user_project(project_id, user.id, db)
scene = (
db.query(Scene)
.filter(Scene.id == scene_id, Scene.project_id == project_id)
.first()
)
if not scene:
raise HTTPException(status_code=404, detail="Scene not found")
update_data = data.model_dump(exclude_unset=True)
for key, value in update_data.items():
setattr(scene, key, value)
db.commit()
db.refresh(scene)
return scene
@router.get("/{project_id}/layouts")
def get_project_layouts(
project_id: int,
user: User = Depends(get_current_user),
db: Session = Depends(get_db),
):
"""Get valid layouts for a project's template."""
project = _get_user_project(project_id, user.id, db)
valid_layouts = get_valid_layouts(project.template)
# Convert layout IDs to human-readable names
layout_names = {}
for layout_id in valid_layouts:
# Convert snake_case to Title Case
name = layout_id.replace("_", " ").title()
layout_names[layout_id] = name
return {
"layouts": sorted(list(valid_layouts)),
"layout_names": layout_names,
}
@router.post("/{project_id}/scenes/reorder", response_model=list[SceneOut])
def reorder_scenes(
project_id: int,
data: ReorderScenesRequest,
user: User = Depends(get_current_user),
db: Session = Depends(get_db),
):
"""Reorder scenes by updating their order values."""
from app.models.scene import Scene
from app.services.remotion import rebuild_workspace
project = _get_user_project(project_id, user.id, db)
# Get all scenes for this project
scenes = db.query(Scene).filter(Scene.project_id == project_id).all()
scene_map = {s.id: s for s in scenes}
# Validate all scene_ids belong to project
for item in data.scene_orders:
if item.scene_id not in scene_map:
raise HTTPException(status_code=404, detail=f"Scene {item.scene_id} not found")
# Update orders
for item in data.scene_orders:
scene_map[item.scene_id].order = item.order
# Ensure sequential ordering (1, 2, 3...)
sorted_scenes = sorted(scenes, key=lambda s: s.order)
for i, scene in enumerate(sorted_scenes, 1):
scene.order = i
db.commit()
# Refresh all scenes
for scene in sorted_scenes:
db.refresh(scene)
# Ensure the per-project Remotion workspace reflects the new order
# (rendering uses the workspace files; without this, renders can use stale data.json/audio copies)
try:
rebuild_workspace(project, sorted_scenes, db)
except Exception as e:
# Don't fail the reorder if workspace rebuild fails; UI can still reflect DB order.
print(f"[PROJECTS] Warning: Failed to rebuild workspace after reorder for project {project_id}: {e}")
return sorted_scenes
@router.post("/{project_id}/scenes/{scene_id}/regenerate", response_model=SceneOut)
async def regenerate_scene(
project_id: int,
scene_id: int,
description: Optional[str] = Form(None),
narration_text: str = Form(...),
regenerate_voiceover: str = Form("false"),
layout: Optional[str] = Form(None),
image: Optional[UploadFile] = File(None),
user: User = Depends(get_current_user),
db: Session = Depends(get_db),
):
"""Regenerate a scene using AI with optional layout selection and image upload."""
import json
from app.models.scene import Scene
from app.models.asset import Asset, AssetType
from app.models.user import PlanTier
from app.dspy_modules.template_scene_gen import TemplateSceneGenerator
from app.dspy_modules.narration_edit import rewrite_narration_if_requested
from app.services.voiceover import generate_voiceover
from app.services.remotion import rebuild_workspace
project = _get_user_project(project_id, user.id, db)
# Check usage limits
if user.plan != PlanTier.PRO:
if project.ai_assisted_editing_count >= 3:
raise HTTPException(
status_code=403,
detail="AI editing limit reached (3 uses per project). Upgrade to Pro for unlimited AI edits."
)
scene = (
db.query(Scene)
.filter(Scene.id == scene_id, Scene.project_id == project_id)
.first()
)
if not scene:
raise HTTPException(status_code=404, detail="Scene not found")
# Validate layout if provided
normalized_layout = None
if layout:
valid_layouts = get_valid_layouts(project.template)
normalized_layout = layout.strip().lower().replace(" ", "_").replace("-", "_")
if normalized_layout not in valid_layouts:
raise HTTPException(
status_code=400,
detail=f"Invalid layout '{layout}'. Valid layouts: {', '.join(sorted(valid_layouts))}"
)
# Handle image upload if provided
image_filename = None
if image:
# Validate file type
allowed_types = {"image/png", "image/jpeg", "image/webp", "image/jpg"}
if image.content_type not in allowed_types:
raise HTTPException(status_code=400, detail="Image must be PNG, JPEG, or WebP.")
# Read file content
MAX_IMAGE_SIZE = 5 * 1024 * 1024 # 5 MB
file_bytes = image.file.read()
if len(file_bytes) > MAX_IMAGE_SIZE:
raise HTTPException(status_code=400, detail="Image file too large. Maximum size is 5 MB.")
# Save locally
image_dir = os.path.join(settings.MEDIA_DIR, f"projects/{project_id}/images")
os.makedirs(image_dir, exist_ok=True)
ext = image.filename.rsplit(".", 1)[-1] if image.filename and "." in image.filename else "png"
image_filename = f"scene_{scene_id}_{int(time.time())}.{ext}"
local_path = os.path.join(image_dir, image_filename)
with open(local_path, "wb") as f:
f.write(file_bytes)
# Upload to R2 if configured
r2_key_val = None
r2_url_val = None
if r2_storage.is_r2_configured():
try:
r2_key_val = r2_storage.image_key(user.id, project_id, image_filename)
r2_url_val = r2_storage.upload_file(local_path, r2_key_val, content_type=image.content_type)
except Exception as e:
print(f"[REGENERATE] R2 upload failed for {image_filename}: {e}")
# Create Asset record
asset = Asset(
project_id=project_id,
asset_type=AssetType.IMAGE,
local_path=local_path,
filename=image_filename,
r2_key=r2_key_val,
r2_url=r2_url_val,
excluded=False,
)
db.add(asset)
db.flush()
# Parse description for removal instructions (only if description is provided)
description_lower = (description or "").lower()
remove_image = any(phrase in description_lower for phrase in [
"remove image", "no image", "don't show image", "hide image",
"without image", "no picture", "remove picture"
])
hide_narration = any(phrase in description_lower for phrase in [
"no narration", "don't show narration", "hide narration",
"without narration", "remove narration", "no text",
"don't display narration", "visualization only"
])
# Use the provided narration_text (display text) or keep existing if not provided
if hide_narration:
new_narration = ""
elif narration_text and narration_text.strip():
new_narration = narration_text.strip()
else:
new_narration = scene.narration_text or ""
# Regenerate visual_description only if description is provided
if description and description.strip():
from app.dspy_modules.visual_description import regenerate_visual_description
new_visual_description = await regenerate_visual_description(
current_visual_description=scene.visual_description or "",
user_instruction=description,
scene_title=scene.title,
display_text=new_narration,
)
else:
# Keep existing visual_description if description is empty or None
new_visual_description = scene.visual_description or ""
# Regenerate scene using regeneration-specific DSPy signature
template_gen = TemplateSceneGenerator(project.template)
all_scenes = (
db.query(Scene)
.filter(Scene.project_id == project_id)
.order_by(Scene.order)
.all()
)
# Build other_scenes_layouts so the model can avoid repeating layouts
other_layout_parts = []
for s in all_scenes:
if s.id == scene.id:
continue
layout_name = "unknown"
if s.remotion_code:
try:
desc = json.loads(s.remotion_code)
layout_name = desc.get("layout", "unknown")
except (json.JSONDecodeError, TypeError):
pass
other_layout_parts.append(f"scene {s.order}: {layout_name}")
other_scenes_layouts = ", ".join(other_layout_parts)
# Current descriptor for optional incremental edit context
current_descriptor = None
if scene.remotion_code:
try:
current_descriptor = json.loads(scene.remotion_code)
except (json.JSONDecodeError, TypeError):
pass
descriptor = await template_gen.generate_regenerate_descriptor(
scene_title=scene.title,
narration=new_narration,
visual_description=new_visual_description,
scene_index=scene.order - 1,
total_scenes=len(all_scenes),
other_scenes_layouts=other_scenes_layouts,
preferred_layout=normalized_layout,
current_descriptor=current_descriptor,
)
# Set hideImage flag in layoutProps if image should be removed
if remove_image:
if "layoutProps" not in descriptor:
descriptor["layoutProps"] = {}
descriptor["layoutProps"]["hideImage"] = True
descriptor["layoutProps"].pop("imageUrl", None)
# Update scene
scene.visual_description = new_visual_description
scene.narration_text = new_narration
scene.remotion_code = json.dumps(descriptor)
db.commit()
# Regenerate voiceover only if requested
should_regenerate_voiceover = regenerate_voiceover.lower() == "true"
if should_regenerate_voiceover and new_narration.strip():
# Expand narration_text to detailed voiceover and regenerate voiceover
from app.dspy_modules.voiceover_expand import expand_narration_to_voiceover
expanded_voiceover = await expand_narration_to_voiceover(new_narration, scene.title)
# Temporarily store expanded voiceover in narration_text for voiceover generation
original_narration = scene.narration_text
scene.narration_text = expanded_voiceover
db.commit()
# Generate voiceover with expanded text
generate_voiceover(scene, db, use_expanded=False)
# Restore original narration_text (display text)
scene.narration_text = original_narration
db.commit()
# Increment usage count (only for free users)
if user.plan != PlanTier.PRO:
project.ai_assisted_editing_count += 1
db.commit()
# Rebuild Remotion workspace
scenes = db.query(Scene).filter(Scene.project_id == project_id).order_by(Scene.order).all()
rebuild_workspace(project, scenes, db)
db.refresh(scene)
return scene
def _get_user_project(project_id: int, user_id: int, db: Session) -> Project:
"""Get a project owned by the given user, or raise 404."""
project = (
db.query(Project)
.filter(Project.id == project_id, Project.user_id == user_id)
.first()
)
if not project:
raise HTTPException(status_code=404, detail="Project not found")
return project
def _name_from_url(url: str) -> str:
"""Generate a project name from a URL."""
from urllib.parse import urlparse
parsed = urlparse(url)
path = parsed.path.strip("/").split("/")[-1] if parsed.path.strip("/") else parsed.netloc
return path.replace("-", " ").replace("_", " ").title()[:100] or "Untitled Project"
def _name_from_files(files: list[UploadFile]) -> str:
"""Generate a project name from uploaded file names."""
if files and files[0].filename:
# Use the first file's name without extension
base = os.path.splitext(files[0].filename)[0]
name = base.replace("-", " ").replace("_", " ").title()[:100]
if name:
return name
return "Uploaded Document"
|