mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 12:19:06 +00:00
* feat: use file pipeline for upload and reprocess action * fix: make file pipeline correctly report status events * fix: duplication of transcripts_controller * fix: tests * test: fix file upload test * test: fix reprocess * fix: also patch from main_file_pipeline (how patch is done is dependent of file import unfortunately)
57 lines
1.6 KiB
Python
57 lines
1.6 KiB
Python
from typing import Annotated, Optional
|
|
|
|
import celery
|
|
from fastapi import APIRouter, Depends, HTTPException
|
|
from pydantic import BaseModel
|
|
|
|
import reflector.auth as auth
|
|
from reflector.db.transcripts import transcripts_controller
|
|
from reflector.pipelines.main_file_pipeline import task_pipeline_file_process
|
|
|
|
router = APIRouter()
|
|
|
|
|
|
class ProcessStatus(BaseModel):
|
|
status: str
|
|
|
|
|
|
@router.post("/transcripts/{transcript_id}/process")
|
|
async def transcript_process(
|
|
transcript_id: str,
|
|
user: Annotated[Optional[auth.UserInfo], Depends(auth.current_user_optional)],
|
|
):
|
|
user_id = user["sub"] if user else None
|
|
transcript = await transcripts_controller.get_by_id_for_http(
|
|
transcript_id, user_id=user_id
|
|
)
|
|
|
|
if transcript.locked:
|
|
raise HTTPException(status_code=400, detail="Transcript is locked")
|
|
|
|
if transcript.status == "idle":
|
|
raise HTTPException(
|
|
status_code=400, detail="Recording is not ready for processing"
|
|
)
|
|
|
|
if task_is_scheduled_or_active(
|
|
"reflector.pipelines.main_live_pipeline.task_pipeline_process",
|
|
transcript_id=transcript_id,
|
|
):
|
|
return ProcessStatus(status="already running")
|
|
|
|
# schedule a background task process the file
|
|
task_pipeline_file_process.delay(transcript_id=transcript_id)
|
|
|
|
return ProcessStatus(status="ok")
|
|
|
|
|
|
def task_is_scheduled_or_active(task_name: str, **kwargs):
|
|
inspect = celery.current_app.control.inspect()
|
|
|
|
for worker, tasks in (inspect.scheduled() | inspect.active()).items():
|
|
for task in tasks:
|
|
if task["name"] == task_name and task["kwargs"] == kwargs:
|
|
return True
|
|
|
|
return False
|