mirror of
https://github.com/langgenius/dify.git
synced 2025-12-06 07:43:33 +00:00
Signed-off-by: lyzno1 <yuanyouhuilyz@gmail.com> Co-authored-by: Stream <Stream_2@qq.com> Co-authored-by: lyzno1 <92089059+lyzno1@users.noreply.github.com> Co-authored-by: zhsama <torvalds@linux.do> Co-authored-by: Harry <xh001x@hotmail.com> Co-authored-by: lyzno1 <yuanyouhuilyz@gmail.com> Co-authored-by: yessenia <yessenia.contact@gmail.com> Co-authored-by: hjlarry <hjlarry@163.com> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: WTW0313 <twwu@dify.ai> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
61 lines
2.2 KiB
Python
61 lines
2.2 KiB
Python
import logging
|
|
|
|
from celery import shared_task
|
|
from sqlalchemy.orm import sessionmaker
|
|
|
|
from core.workflow.nodes.trigger_schedule.exc import (
|
|
ScheduleExecutionError,
|
|
ScheduleNotFoundError,
|
|
TenantOwnerNotFoundError,
|
|
)
|
|
from extensions.ext_database import db
|
|
from models.trigger import WorkflowSchedulePlan
|
|
from services.async_workflow_service import AsyncWorkflowService
|
|
from services.trigger.schedule_service import ScheduleService
|
|
from services.workflow.entities import ScheduleTriggerData
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
@shared_task(queue="schedule_executor")
|
|
def run_schedule_trigger(schedule_id: str) -> None:
|
|
"""
|
|
Execute a scheduled workflow trigger.
|
|
|
|
Note: No retry logic needed as schedules will run again at next interval.
|
|
The execution result is tracked via WorkflowTriggerLog.
|
|
|
|
Raises:
|
|
ScheduleNotFoundError: If schedule doesn't exist
|
|
TenantOwnerNotFoundError: If no owner/admin for tenant
|
|
ScheduleExecutionError: If workflow trigger fails
|
|
"""
|
|
session_factory = sessionmaker(bind=db.engine, expire_on_commit=False)
|
|
|
|
with session_factory() as session:
|
|
schedule = session.get(WorkflowSchedulePlan, schedule_id)
|
|
if not schedule:
|
|
raise ScheduleNotFoundError(f"Schedule {schedule_id} not found")
|
|
|
|
tenant_owner = ScheduleService.get_tenant_owner(session, schedule.tenant_id)
|
|
if not tenant_owner:
|
|
raise TenantOwnerNotFoundError(f"No owner or admin found for tenant {schedule.tenant_id}")
|
|
|
|
try:
|
|
# Production dispatch: Trigger the workflow normally
|
|
response = AsyncWorkflowService.trigger_workflow_async(
|
|
session=session,
|
|
user=tenant_owner,
|
|
trigger_data=ScheduleTriggerData(
|
|
app_id=schedule.app_id,
|
|
root_node_id=schedule.node_id,
|
|
inputs={},
|
|
tenant_id=schedule.tenant_id,
|
|
),
|
|
)
|
|
logger.info("Schedule %s triggered workflow: %s", schedule_id, response.workflow_trigger_log_id)
|
|
except Exception as e:
|
|
raise ScheduleExecutionError(
|
|
f"Failed to trigger workflow for schedule {schedule_id}, app {schedule.app_id}"
|
|
) from e
|