cf5103bbca
主要变更: - 数据库: SQLite → PostgreSQL (yzr_nr) - 选题系统: 硬编码字段 → 配置化 (TopicField/TopicConfigField/TopicStatusConfig) - 新增模型: ContentCalendar, ContentMetrics, MediaAsset, PlatformConfig, ContentTask - 新增 API: topic-config, calendar, metrics, assets, tasks, platform-config - 数据迁移: 现有选题数据迁移到新 schema (field_id/tags/custom_data/scoring_data) - 初始化数据: 10个领域, 5种状态, 3个平台配置 服务运行: http://localhost:8001 默认账号: admin / admin123
234 lines
6.5 KiB
Python
234 lines
6.5 KiB
Python
import uuid
|
|
from fastapi import APIRouter, Depends, HTTPException, Query
|
|
from sqlalchemy.orm import Session
|
|
from typing import List, Optional
|
|
|
|
from ..database import get_db
|
|
from ..models import ContentTask, Topic
|
|
from ..schemas import ContentTaskCreate, ContentTaskResponse
|
|
from .auth import get_current_user
|
|
|
|
router = APIRouter(prefix="/api/tasks", tags=["tasks"])
|
|
|
|
|
|
@router.get("", response_model=List[ContentTaskResponse])
|
|
def list_tasks(
|
|
status: Optional[str] = None,
|
|
topic_id: Optional[str] = None,
|
|
stage: Optional[str] = None,
|
|
limit: int = Query(50, le=200),
|
|
db: Session = Depends(get_db),
|
|
current_user=Depends(get_current_user)
|
|
):
|
|
query = db.query(ContentTask)
|
|
if status:
|
|
query = query.filter(ContentTask.status == status)
|
|
if topic_id:
|
|
query = query.filter(ContentTask.topic_id == topic_id)
|
|
if stage:
|
|
query = query.filter(ContentTask.stage == stage)
|
|
return query.order_by(ContentTask.created_at.desc()).limit(limit).all()
|
|
|
|
|
|
@router.get("/active")
|
|
def get_active_tasks(
|
|
db: Session = Depends(get_db),
|
|
current_user=Depends(get_current_user)
|
|
):
|
|
return db.query(ContentTask).filter(
|
|
ContentTask.status == "running"
|
|
).order_by(ContentTask.started_at.desc()).all()
|
|
|
|
|
|
@router.post("", response_model=ContentTaskResponse)
|
|
def create_task(
|
|
data: ContentTaskCreate,
|
|
db: Session = Depends(get_db),
|
|
current_user=Depends(get_current_user)
|
|
):
|
|
if data.topic_id:
|
|
topic = db.query(Topic).filter(Topic.id == data.topic_id).first()
|
|
if not topic:
|
|
raise HTTPException(status_code=404, detail="选题不存在")
|
|
|
|
task_id = f"task_{uuid.uuid4().hex[:16]}"
|
|
|
|
task = ContentTask(
|
|
task_id=task_id,
|
|
topic_id=data.topic_id,
|
|
stage=data.stage,
|
|
status="pending",
|
|
created_by=data.created_by or current_user.username
|
|
)
|
|
db.add(task)
|
|
db.commit()
|
|
db.refresh(task)
|
|
return task
|
|
|
|
|
|
@router.get("/{task_id}", response_model=ContentTaskResponse)
|
|
def get_task(
|
|
task_id: str,
|
|
db: Session = Depends(get_db),
|
|
current_user=Depends(get_current_user)
|
|
):
|
|
task = db.query(ContentTask).filter(ContentTask.task_id == task_id).first()
|
|
if not task:
|
|
raise HTTPException(status_code=404, detail="任务不存在")
|
|
return task
|
|
|
|
|
|
@router.put("/{task_id}/start")
|
|
def start_task(
|
|
task_id: str,
|
|
db: Session = Depends(get_db),
|
|
current_user=Depends(get_current_user)
|
|
):
|
|
task = db.query(ContentTask).filter(ContentTask.task_id == task_id).first()
|
|
if not task:
|
|
raise HTTPException(status_code=404, detail="任务不存在")
|
|
|
|
from datetime import datetime
|
|
task.status = "running"
|
|
task.started_at = datetime.now()
|
|
task.message = "任务已启动"
|
|
task.progress = 0
|
|
db.commit()
|
|
db.refresh(task)
|
|
return task
|
|
|
|
|
|
@router.put("/{task_id}/progress")
|
|
def update_progress(
|
|
task_id: str,
|
|
progress: int = Query(..., ge=0, le=100),
|
|
message: Optional[str] = None,
|
|
db: Session = Depends(get_db),
|
|
current_user=Depends(get_current_user)
|
|
):
|
|
task = db.query(ContentTask).filter(ContentTask.task_id == task_id).first()
|
|
if not task:
|
|
raise HTTPException(status_code=404, detail="任务不存在")
|
|
|
|
task.progress = progress
|
|
if message:
|
|
task.message = message
|
|
db.commit()
|
|
db.refresh(task)
|
|
return task
|
|
|
|
|
|
@router.put("/{task_id}/complete")
|
|
def complete_task(
|
|
task_id: str,
|
|
result_data: dict = None,
|
|
message: Optional[str] = None,
|
|
db: Session = Depends(get_db),
|
|
current_user=Depends(get_current_user)
|
|
):
|
|
task = db.query(ContentTask).filter(ContentTask.task_id == task_id).first()
|
|
if not task:
|
|
raise HTTPException(status_code=404, detail="任务不存在")
|
|
|
|
from datetime import datetime
|
|
task.status = "completed"
|
|
task.finished_at = datetime.now()
|
|
task.progress = 100
|
|
if message:
|
|
task.message = message
|
|
if result_data:
|
|
task.result_data = result_data
|
|
if task.started_at:
|
|
task.duration = int((task.finished_at - task.started_at).total_seconds())
|
|
db.commit()
|
|
db.refresh(task)
|
|
return task
|
|
|
|
|
|
@router.put("/{task_id}/fail")
|
|
def fail_task(
|
|
task_id: str,
|
|
error_msg: str = Query(...),
|
|
db: Session = Depends(get_db),
|
|
current_user=Depends(get_current_user)
|
|
):
|
|
task = db.query(ContentTask).filter(ContentTask.task_id == task_id).first()
|
|
if not task:
|
|
raise HTTPException(status_code=404, detail="任务不存在")
|
|
|
|
from datetime import datetime
|
|
task.status = "failed"
|
|
task.finished_at = datetime.now()
|
|
task.error_msg = error_msg
|
|
if task.started_at:
|
|
task.duration = int((task.finished_at - task.started_at).total_seconds())
|
|
db.commit()
|
|
db.refresh(task)
|
|
return task
|
|
|
|
|
|
@router.delete("/{task_id}")
|
|
def cancel_task(
|
|
task_id: str,
|
|
db: Session = Depends(get_db),
|
|
current_user=Depends(get_current_user)
|
|
):
|
|
task = db.query(ContentTask).filter(ContentTask.task_id == task_id).first()
|
|
if not task:
|
|
raise HTTPException(status_code=404, detail="任务不存在")
|
|
|
|
task.status = "cancelled"
|
|
db.commit()
|
|
return {"ok": True}
|
|
|
|
|
|
@router.post("/run-creator")
|
|
def run_creator_task(
|
|
topic_id: Optional[str] = None,
|
|
db: Session = Depends(get_db),
|
|
current_user=Depends(get_current_user)
|
|
):
|
|
import threading
|
|
from datetime import datetime
|
|
|
|
task_id = f"task_{uuid.uuid4().hex[:16]}"
|
|
|
|
task = ContentTask(
|
|
task_id=task_id,
|
|
topic_id=topic_id,
|
|
stage="creator",
|
|
status="running",
|
|
started_at=datetime.now(),
|
|
created_by=current_user.username
|
|
)
|
|
db.add(task)
|
|
db.commit()
|
|
db.refresh(task)
|
|
|
|
from ..core.generator import run_creator
|
|
|
|
def _run():
|
|
try:
|
|
result = run_creator(topic_id)
|
|
from datetime import datetime
|
|
task.status = "completed"
|
|
task.finished_at = datetime.now()
|
|
task.progress = 100
|
|
task.message = "创作完成"
|
|
task.result_data = result or {}
|
|
if task.started_at:
|
|
task.duration = int((task.finished_at - task.started_at).total_seconds())
|
|
db.commit()
|
|
except Exception as e:
|
|
from datetime import datetime
|
|
task.status = "failed"
|
|
task.finished_at = datetime.now()
|
|
task.error_msg = str(e)
|
|
if task.started_at:
|
|
task.duration = int((task.finished_at - task.started_at).total_seconds())
|
|
db.commit()
|
|
|
|
thread = threading.Thread(target=_run)
|
|
thread.start()
|
|
|
|
return task |