Files
dify/api/services/workflow_ref_service.py
WH-2099 62cb5b5865 fix(api): scope nested resource lookups by owner refs (#38177)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2026-06-30 08:19:58 +00:00

27 lines
823 B
Python

"""Typed resource references for workflow ownership chains."""
from typing import NamedTuple
from models.dataset import Pipeline
from models.model import App
class WorkflowRef(NamedTuple):
"""Workflow identifiers used to scope downstream resource lookups."""
tenant_id: str
owner_id: str
workflow_id: str
class WorkflowRefService:
"""Factory helpers for app and RAG pipeline workflow refs."""
@staticmethod
def create_app_workflow_ref(app: App, workflow_id: str) -> WorkflowRef:
return WorkflowRef(tenant_id=app.tenant_id, owner_id=app.id, workflow_id=workflow_id)
@staticmethod
def create_pipeline_workflow_ref(pipeline: Pipeline, workflow_id: str) -> WorkflowRef:
return WorkflowRef(tenant_id=pipeline.tenant_id, owner_id=pipeline.id, workflow_id=workflow_id)