mirror of
https://github.com/langgenius/dify.git
synced 2026-05-10 15:01:36 -04:00
# Conflicts: # .vite-hooks/pre-commit # api/controllers/console/__init__.py # api/core/agent/base_agent_runner.py # api/core/app/app_config/easy_ui_based_app/model_config/converter.py # api/core/app/apps/agent_chat/app_runner.py # api/core/entities/provider_configuration.py # api/core/helper/moderation.py # api/core/model_manager.py # api/core/rag/embedding/cached_embedding.py # api/core/rag/retrieval/dataset_retrieval.py # api/core/rag/splitter/fixed_text_splitter.py # api/core/workflow/nodes/datasource/datasource_node.py # api/core/workflow/nodes/knowledge_index/knowledge_index_node.py # api/models/human_input.py # api/providers/trace/trace-tencent/src/dify_trace_tencent/span_builder.py # api/services/workflow_service.py # api/tasks/trigger_processing_tasks.py # api/tests/integration_tests/core/workflow/nodes/datasource/test_datasource_node_integration.py # api/tests/integration_tests/workflow/nodes/test_http.py # api/tests/integration_tests/workflow/nodes/test_parameter_extractor.py # api/tests/unit_tests/controllers/service_api/app/test_conversation.py # api/tests/unit_tests/core/prompt/test_agent_history_prompt_transform.py # api/tests/unit_tests/core/variables/test_segment.py # api/tests/unit_tests/core/workflow/graph_engine/test_mock_factory.py # api/tests/unit_tests/core/workflow/nodes/answer/test_answer.py # api/tests/unit_tests/core/workflow/nodes/datasource/test_datasource_node.py # api/tests/unit_tests/core/workflow/nodes/http_request/test_http_request_node.py # api/tests/unit_tests/core/workflow/nodes/human_input/test_email_delivery_config.py # api/tests/unit_tests/services/workflow/test_workflow_human_input_delivery.py # web/app/(commonLayout)/layout.tsx # web/app/components/app/configuration/dataset-config/params-config/weighted-score.tsx # web/app/components/app/configuration/debug/debug-with-multiple-model/debug-item.tsx # web/app/components/app/workflow-log/__tests__/list.spec.tsx # web/app/components/apps/__tests__/list.spec.tsx # web/app/components/apps/list.tsx # web/app/components/base/chat/chat-with-history/header/operation.tsx # web/app/components/base/chat/chat-with-history/sidebar/operation.tsx # web/app/components/header/account-setting/data-source-page-new/operator.tsx # web/app/components/header/account-setting/members-page/operation/index.tsx # web/app/components/plugins/marketplace/sort-dropdown/__tests__/index.spec.tsx # web/app/components/plugins/marketplace/sort-dropdown/index.tsx # web/app/components/plugins/plugin-page/plugin-tasks/index.tsx # web/app/components/workflow/header/__tests__/test-run-menu.spec.tsx # web/app/components/workflow/header/test-run-menu.tsx # web/app/components/workflow/nodes/_base/components/next-step/operator.tsx # web/app/components/workflow/nodes/_base/components/panel-operator/index.tsx # web/app/components/workflow/nodes/assigner/components/__tests__/operation-selector.spec.tsx # web/app/components/workflow/nodes/assigner/components/operation-selector.tsx # web/app/components/workflow/operator/__tests__/more-actions.spec.tsx # web/app/components/workflow/operator/zoom-in-out.tsx # web/app/components/workflow/panel/version-history-panel/context-menu/menu-item.tsx # web/app/components/workflow/selection-contextmenu.tsx # web/eslint-suppressions.json Co-authored-by: FFXN <31929997+FFXN@users.noreply.github.com>
343 lines
14 KiB
Python
343 lines
14 KiB
Python
from datetime import datetime
|
|
from typing import Any, Literal
|
|
|
|
from flask import request
|
|
from flask_restx import Resource
|
|
from graphon.variables.types import SegmentType
|
|
from pydantic import BaseModel, Field, TypeAdapter, field_validator
|
|
from sqlalchemy.orm import sessionmaker
|
|
from werkzeug.exceptions import BadRequest, NotFound
|
|
|
|
import services
|
|
from controllers.common.controller_schemas import ConversationRenamePayload
|
|
from controllers.common.schema import register_schema_models
|
|
from controllers.service_api import service_api_ns
|
|
from controllers.service_api.app.error import NotChatAppError
|
|
from controllers.service_api.wraps import FetchUserArg, WhereisUserArg, validate_app_token
|
|
from core.app.entities.app_invoke_entities import InvokeFrom
|
|
from extensions.ext_database import db
|
|
from fields._value_type_serializer import serialize_value_type
|
|
from fields.base import ResponseModel
|
|
from fields.conversation_fields import (
|
|
ConversationInfiniteScrollPagination,
|
|
SimpleConversation,
|
|
)
|
|
from libs.helper import UUIDStrOrEmpty
|
|
from models.model import App, AppMode, EndUser
|
|
from services.conversation_service import ConversationService
|
|
|
|
|
|
class ConversationListQuery(BaseModel):
|
|
last_id: UUIDStrOrEmpty | None = Field(default=None, description="Last conversation ID for pagination")
|
|
limit: int = Field(default=20, ge=1, le=100, description="Number of conversations to return")
|
|
sort_by: Literal["created_at", "-created_at", "updated_at", "-updated_at"] = Field(
|
|
default="-updated_at", description="Sort order for conversations"
|
|
)
|
|
|
|
|
|
class ConversationVariablesQuery(BaseModel):
|
|
last_id: UUIDStrOrEmpty | None = Field(default=None, description="Last variable ID for pagination")
|
|
limit: int = Field(default=20, ge=1, le=100, description="Number of variables to return")
|
|
variable_name: str | None = Field(
|
|
default=None, description="Filter variables by name", min_length=1, max_length=255
|
|
)
|
|
|
|
@field_validator("variable_name", mode="before")
|
|
@classmethod
|
|
def validate_variable_name(cls, v: str | None) -> str | None:
|
|
"""
|
|
Validate variable_name to prevent injection attacks.
|
|
"""
|
|
if v is None:
|
|
return v
|
|
|
|
# Only allow safe characters: alphanumeric, underscore, hyphen, period
|
|
if not v.replace("-", "").replace("_", "").replace(".", "").isalnum():
|
|
raise ValueError(
|
|
"Variable name can only contain letters, numbers, hyphens (-), underscores (_), and periods (.)"
|
|
)
|
|
|
|
# Prevent SQL injection patterns
|
|
dangerous_patterns = ["'", '"', ";", "--", "/*", "*/", "xp_", "sp_"]
|
|
for pattern in dangerous_patterns:
|
|
if pattern in v.lower():
|
|
raise ValueError(f"Variable name contains invalid characters: {pattern}")
|
|
|
|
return v
|
|
|
|
|
|
class ConversationVariableUpdatePayload(BaseModel):
|
|
value: Any
|
|
|
|
|
|
class ConversationVariableResponse(ResponseModel):
|
|
id: str
|
|
name: str
|
|
value_type: str
|
|
value: str | None = None
|
|
description: str | None = None
|
|
created_at: int | None = None
|
|
updated_at: int | None = None
|
|
|
|
@field_validator("value_type", mode="before")
|
|
@classmethod
|
|
def normalize_value_type(cls, value: Any) -> str:
|
|
exposed_type = getattr(value, "exposed_type", None)
|
|
if callable(exposed_type):
|
|
return str(exposed_type())
|
|
if isinstance(value, str):
|
|
try:
|
|
return str(SegmentType(value).exposed_type())
|
|
except ValueError:
|
|
return value
|
|
try:
|
|
return serialize_value_type(value)
|
|
except (AttributeError, TypeError, ValueError):
|
|
pass
|
|
|
|
try:
|
|
return serialize_value_type({"value_type": value})
|
|
except (AttributeError, TypeError, ValueError):
|
|
value_attr = getattr(value, "value", None)
|
|
if value_attr is not None:
|
|
return str(value_attr)
|
|
return str(value)
|
|
|
|
@field_validator("value", mode="before")
|
|
@classmethod
|
|
def normalize_value(cls, value: Any | None) -> str | None:
|
|
if value is None:
|
|
return None
|
|
if isinstance(value, str):
|
|
return value
|
|
return str(value)
|
|
|
|
@field_validator("created_at", "updated_at", mode="before")
|
|
@classmethod
|
|
def normalize_timestamp(cls, value: datetime | int | None) -> int | None:
|
|
if isinstance(value, datetime):
|
|
return int(value.timestamp())
|
|
return value
|
|
|
|
|
|
class ConversationVariableInfiniteScrollPaginationResponse(ResponseModel):
|
|
limit: int
|
|
has_more: bool
|
|
data: list[ConversationVariableResponse]
|
|
|
|
|
|
register_schema_models(
|
|
service_api_ns,
|
|
ConversationListQuery,
|
|
ConversationRenamePayload,
|
|
ConversationVariablesQuery,
|
|
ConversationVariableUpdatePayload,
|
|
ConversationVariableResponse,
|
|
ConversationVariableInfiniteScrollPaginationResponse,
|
|
)
|
|
|
|
|
|
@service_api_ns.route("/conversations")
|
|
class ConversationApi(Resource):
|
|
@service_api_ns.expect(service_api_ns.models[ConversationListQuery.__name__])
|
|
@service_api_ns.doc("list_conversations")
|
|
@service_api_ns.doc(description="List all conversations for the current user")
|
|
@service_api_ns.doc(
|
|
responses={
|
|
200: "Conversations retrieved successfully",
|
|
401: "Unauthorized - invalid API token",
|
|
404: "Last conversation not found",
|
|
}
|
|
)
|
|
@validate_app_token(fetch_user_arg=FetchUserArg(fetch_from=WhereisUserArg.QUERY))
|
|
def get(self, app_model: App, end_user: EndUser):
|
|
"""List all conversations for the current user.
|
|
|
|
Supports pagination using last_id and limit parameters.
|
|
"""
|
|
app_mode = AppMode.value_of(app_model.mode)
|
|
if app_mode not in {AppMode.CHAT, AppMode.AGENT_CHAT, AppMode.ADVANCED_CHAT}:
|
|
raise NotChatAppError()
|
|
|
|
query_args = ConversationListQuery.model_validate(request.args.to_dict())
|
|
last_id = str(query_args.last_id) if query_args.last_id else None
|
|
|
|
try:
|
|
with sessionmaker(db.engine).begin() as session:
|
|
pagination = ConversationService.pagination_by_last_id(
|
|
session=session,
|
|
app_model=app_model,
|
|
user=end_user,
|
|
last_id=last_id,
|
|
limit=query_args.limit,
|
|
invoke_from=InvokeFrom.SERVICE_API,
|
|
sort_by=query_args.sort_by,
|
|
)
|
|
adapter = TypeAdapter(SimpleConversation)
|
|
conversations = [adapter.validate_python(item, from_attributes=True) for item in pagination.data]
|
|
return ConversationInfiniteScrollPagination(
|
|
limit=pagination.limit,
|
|
has_more=pagination.has_more,
|
|
data=conversations,
|
|
).model_dump(mode="json")
|
|
except services.errors.conversation.LastConversationNotExistsError:
|
|
raise NotFound("Last Conversation Not Exists.")
|
|
|
|
|
|
@service_api_ns.route("/conversations/<uuid:c_id>")
|
|
class ConversationDetailApi(Resource):
|
|
@service_api_ns.doc("delete_conversation")
|
|
@service_api_ns.doc(description="Delete a specific conversation")
|
|
@service_api_ns.doc(params={"c_id": "Conversation ID"})
|
|
@service_api_ns.doc(
|
|
responses={
|
|
204: "Conversation deleted successfully",
|
|
401: "Unauthorized - invalid API token",
|
|
404: "Conversation not found",
|
|
}
|
|
)
|
|
@validate_app_token(fetch_user_arg=FetchUserArg(fetch_from=WhereisUserArg.JSON))
|
|
def delete(self, app_model: App, end_user: EndUser, c_id):
|
|
"""Delete a specific conversation."""
|
|
app_mode = AppMode.value_of(app_model.mode)
|
|
if app_mode not in {AppMode.CHAT, AppMode.AGENT_CHAT, AppMode.ADVANCED_CHAT}:
|
|
raise NotChatAppError()
|
|
|
|
conversation_id = str(c_id)
|
|
|
|
try:
|
|
ConversationService.delete(app_model, conversation_id, end_user)
|
|
except services.errors.conversation.ConversationNotExistsError:
|
|
raise NotFound("Conversation Not Exists.")
|
|
return "", 204
|
|
|
|
|
|
@service_api_ns.route("/conversations/<uuid:c_id>/name")
|
|
class ConversationRenameApi(Resource):
|
|
@service_api_ns.expect(service_api_ns.models[ConversationRenamePayload.__name__])
|
|
@service_api_ns.doc("rename_conversation")
|
|
@service_api_ns.doc(description="Rename a conversation or auto-generate a name")
|
|
@service_api_ns.doc(params={"c_id": "Conversation ID"})
|
|
@service_api_ns.doc(
|
|
responses={
|
|
200: "Conversation renamed successfully",
|
|
401: "Unauthorized - invalid API token",
|
|
404: "Conversation not found",
|
|
}
|
|
)
|
|
@validate_app_token(fetch_user_arg=FetchUserArg(fetch_from=WhereisUserArg.JSON))
|
|
def post(self, app_model: App, end_user: EndUser, c_id):
|
|
"""Rename a conversation or auto-generate a name."""
|
|
app_mode = AppMode.value_of(app_model.mode)
|
|
if app_mode not in {AppMode.CHAT, AppMode.AGENT_CHAT, AppMode.ADVANCED_CHAT}:
|
|
raise NotChatAppError()
|
|
|
|
conversation_id = str(c_id)
|
|
|
|
payload = ConversationRenamePayload.model_validate(service_api_ns.payload or {})
|
|
|
|
try:
|
|
conversation = ConversationService.rename(
|
|
app_model, conversation_id, end_user, payload.name, payload.auto_generate
|
|
)
|
|
return (
|
|
TypeAdapter(SimpleConversation)
|
|
.validate_python(conversation, from_attributes=True)
|
|
.model_dump(mode="json")
|
|
)
|
|
except services.errors.conversation.ConversationNotExistsError:
|
|
raise NotFound("Conversation Not Exists.")
|
|
|
|
|
|
@service_api_ns.route("/conversations/<uuid:c_id>/variables")
|
|
class ConversationVariablesApi(Resource):
|
|
@service_api_ns.expect(service_api_ns.models[ConversationVariablesQuery.__name__])
|
|
@service_api_ns.doc("list_conversation_variables")
|
|
@service_api_ns.doc(description="List all variables for a conversation")
|
|
@service_api_ns.doc(params={"c_id": "Conversation ID"})
|
|
@service_api_ns.doc(
|
|
responses={
|
|
200: "Variables retrieved successfully",
|
|
401: "Unauthorized - invalid API token",
|
|
404: "Conversation not found",
|
|
}
|
|
)
|
|
@service_api_ns.response(
|
|
200,
|
|
"Variables retrieved successfully",
|
|
service_api_ns.models[ConversationVariableInfiniteScrollPaginationResponse.__name__],
|
|
)
|
|
@validate_app_token(fetch_user_arg=FetchUserArg(fetch_from=WhereisUserArg.QUERY))
|
|
def get(self, app_model: App, end_user: EndUser, c_id):
|
|
"""List all variables for a conversation.
|
|
|
|
Conversational variables are only available for chat applications.
|
|
"""
|
|
# conversational variable only for chat app
|
|
app_mode = AppMode.value_of(app_model.mode)
|
|
if app_mode not in {AppMode.CHAT, AppMode.AGENT_CHAT, AppMode.ADVANCED_CHAT}:
|
|
raise NotChatAppError()
|
|
|
|
conversation_id = str(c_id)
|
|
|
|
query_args = ConversationVariablesQuery.model_validate(request.args.to_dict())
|
|
last_id = str(query_args.last_id) if query_args.last_id else None
|
|
|
|
try:
|
|
pagination = ConversationService.get_conversational_variable(
|
|
app_model, conversation_id, end_user, query_args.limit, last_id, query_args.variable_name
|
|
)
|
|
return ConversationVariableInfiniteScrollPaginationResponse.model_validate(
|
|
pagination, from_attributes=True
|
|
).model_dump(mode="json")
|
|
except services.errors.conversation.ConversationNotExistsError:
|
|
raise NotFound("Conversation Not Exists.")
|
|
|
|
|
|
@service_api_ns.route("/conversations/<uuid:c_id>/variables/<uuid:variable_id>")
|
|
class ConversationVariableDetailApi(Resource):
|
|
@service_api_ns.expect(service_api_ns.models[ConversationVariableUpdatePayload.__name__])
|
|
@service_api_ns.doc("update_conversation_variable")
|
|
@service_api_ns.doc(description="Update a conversation variable's value")
|
|
@service_api_ns.doc(params={"c_id": "Conversation ID", "variable_id": "Variable ID"})
|
|
@service_api_ns.doc(
|
|
responses={
|
|
200: "Variable updated successfully",
|
|
400: "Bad request - type mismatch",
|
|
401: "Unauthorized - invalid API token",
|
|
404: "Conversation or variable not found",
|
|
}
|
|
)
|
|
@service_api_ns.response(
|
|
200,
|
|
"Variable updated successfully",
|
|
service_api_ns.models[ConversationVariableResponse.__name__],
|
|
)
|
|
@validate_app_token(fetch_user_arg=FetchUserArg(fetch_from=WhereisUserArg.JSON))
|
|
def put(self, app_model: App, end_user: EndUser, c_id, variable_id):
|
|
"""Update a conversation variable's value.
|
|
|
|
Allows updating the value of a specific conversation variable.
|
|
The value must match the variable's expected type.
|
|
"""
|
|
app_mode = AppMode.value_of(app_model.mode)
|
|
if app_mode not in {AppMode.CHAT, AppMode.AGENT_CHAT, AppMode.ADVANCED_CHAT}:
|
|
raise NotChatAppError()
|
|
|
|
conversation_id = str(c_id)
|
|
variable_id = str(variable_id)
|
|
|
|
payload = ConversationVariableUpdatePayload.model_validate(service_api_ns.payload or {})
|
|
|
|
try:
|
|
variable = ConversationService.update_conversation_variable(
|
|
app_model, conversation_id, variable_id, end_user, payload.value
|
|
)
|
|
return ConversationVariableResponse.model_validate(variable, from_attributes=True).model_dump(mode="json")
|
|
except services.errors.conversation.ConversationNotExistsError:
|
|
raise NotFound("Conversation Not Exists.")
|
|
except services.errors.conversation.ConversationVariableNotExistsError:
|
|
raise NotFound("Conversation Variable Not Exists.")
|
|
except services.errors.conversation.ConversationVariableTypeMismatchError as e:
|
|
raise BadRequest(str(e))
|