mirror of
https://github.com/langgenius/dify.git
synced 2026-03-17 12:57:51 +08:00
Signed-off-by: majiayu000 <1835304752@qq.com> Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: NeatGuyCoding <15627489+NeatGuyCoding@users.noreply.github.com> Signed-off-by: -LAN- <laipz8200@outlook.com> Signed-off-by: yihong0618 <zouzou0208@gmail.com> Co-authored-by: QuantumGhost <obelisk.reg+git@gmail.com> Co-authored-by: 盐粒 Yanli <yanli@dify.ai> Co-authored-by: wangxiaolei <fatelei@gmail.com> Co-authored-by: Stephen Zhou <38493346+hyoban@users.noreply.github.com> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Co-authored-by: Cursx <33718736+Cursx@users.noreply.github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: lif <1835304752@qq.com> Co-authored-by: 非法操作 <hjlarry@163.com> Co-authored-by: Asuka Minato <i@asukaminato.eu.org> Co-authored-by: fenglin <790872612@qq.com> Co-authored-by: qiaofenglin <qiaofenglin@baidu.com> Co-authored-by: -LAN- <laipz8200@outlook.com> Co-authored-by: TomoOkuyama <49631611+TomoOkuyama@users.noreply.github.com> Co-authored-by: Tomo Okuyama <tomo.okuyama@intersystems.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: zyssyz123 <916125788@qq.com> Co-authored-by: hj24 <mambahj24@gmail.com> Co-authored-by: Coding On Star <447357187@qq.com> Co-authored-by: CodingOnStar <hanxujiang@dify.ai> Co-authored-by: yyh <92089059+lyzno1@users.noreply.github.com> Co-authored-by: Xiangxuan Qu <fghpdf@outlook.com> Co-authored-by: fghpdf <fghpdf@users.noreply.github.com> Co-authored-by: coopercoder <whitetiger0127@163.com> Co-authored-by: zhaiguangpeng <zhaiguangpeng@didiglobal.com> Co-authored-by: Junyan Qin (Chin) <rockchinq@gmail.com> Co-authored-by: E.G <146701565+GlobalStar117@users.noreply.github.com> Co-authored-by: GlobalStar117 <GlobalStar117@users.noreply.github.com> Co-authored-by: Claude Haiku 4.5 <noreply@anthropic.com> Co-authored-by: CodingOnStar <hanxujiang@dify.com> Co-authored-by: crazywoola <100913391+crazywoola@users.noreply.github.com> Co-authored-by: heyszt <270985384@qq.com> Co-authored-by: NeatGuyCoding <15627489+NeatGuyCoding@users.noreply.github.com> Co-authored-by: Yeuoly <45712896+Yeuoly@users.noreply.github.com> Co-authored-by: zxhlyh <jasonapring2015@outlook.com> Co-authored-by: moonpanda <chuanzegao@163.com> Co-authored-by: warlocgao <warlocgao@tencent.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: claude[bot] <41898282+claude[bot]@users.noreply.github.com> Co-authored-by: KVOJJJin <jzongcode@gmail.com> Co-authored-by: eux <euxx@users.noreply.github.com> Co-authored-by: bangjiehan <bangjiehan@gmail.com> Co-authored-by: FFXN <31929997+FFXN@users.noreply.github.com> Co-authored-by: Jyong <76649700+JohnJyong@users.noreply.github.com> Co-authored-by: Nie Ronghua <nieronghua@sf-express.com> Co-authored-by: JQSevenMiao <141806521+JQSevenMiao@users.noreply.github.com> Co-authored-by: jiasiqi <jiasiqi3@tal.com> Co-authored-by: Seokrin Taron Sung <sungsjade@gmail.com> Co-authored-by: CrabSAMA <40541269+CrabSAMA@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: yihong <zouzou0208@gmail.com> Co-authored-by: Joel <iamjoel007@gmail.com> Co-authored-by: Wu Tianwei <30284043+WTW0313@users.noreply.github.com> Co-authored-by: yessenia <yessenia.contact@gmail.com> Co-authored-by: Jax <anobaka@qq.com> Co-authored-by: niveshdandyan <155956228+niveshdandyan@users.noreply.github.com> Co-authored-by: OSS Contributor <oss-contributor@example.com> Co-authored-by: niveshdandyan <niveshdandyan@users.noreply.github.com> Co-authored-by: Sean Kenneth Doherty <Smaster7772@gmail.com>
285 lines
12 KiB
Python
285 lines
12 KiB
Python
from typing import Any, Literal
|
|
|
|
from flask import request
|
|
from flask_restx import Resource
|
|
from pydantic import BaseModel, Field, TypeAdapter, field_validator, model_validator
|
|
from sqlalchemy.orm import Session
|
|
from werkzeug.exceptions import BadRequest, NotFound
|
|
|
|
import services
|
|
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.conversation_fields import (
|
|
ConversationDelete,
|
|
ConversationInfiniteScrollPagination,
|
|
SimpleConversation,
|
|
)
|
|
from fields.conversation_variable_fields import (
|
|
build_conversation_variable_infinite_scroll_pagination_model,
|
|
build_conversation_variable_model,
|
|
)
|
|
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 ConversationRenamePayload(BaseModel):
|
|
name: str | None = Field(default=None, description="New conversation name (required if auto_generate is false)")
|
|
auto_generate: bool = Field(default=False, description="Auto-generate conversation name")
|
|
|
|
@model_validator(mode="after")
|
|
def validate_name_requirement(self):
|
|
if not self.auto_generate:
|
|
if self.name is None or not self.name.strip():
|
|
raise ValueError("name is required when auto_generate is false")
|
|
return self
|
|
|
|
|
|
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
|
|
|
|
|
|
register_schema_models(
|
|
service_api_ns,
|
|
ConversationListQuery,
|
|
ConversationRenamePayload,
|
|
ConversationVariablesQuery,
|
|
ConversationVariableUpdatePayload,
|
|
)
|
|
|
|
|
|
@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 Session(db.engine) 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 ConversationDelete(result="success").model_dump(mode="json"), 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",
|
|
}
|
|
)
|
|
@validate_app_token(fetch_user_arg=FetchUserArg(fetch_from=WhereisUserArg.QUERY))
|
|
@service_api_ns.marshal_with(build_conversation_variable_infinite_scroll_pagination_model(service_api_ns))
|
|
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:
|
|
return ConversationService.get_conversational_variable(
|
|
app_model, conversation_id, end_user, query_args.limit, last_id, query_args.variable_name
|
|
)
|
|
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",
|
|
}
|
|
)
|
|
@validate_app_token(fetch_user_arg=FetchUserArg(fetch_from=WhereisUserArg.JSON))
|
|
@service_api_ns.marshal_with(build_conversation_variable_model(service_api_ns))
|
|
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:
|
|
return ConversationService.update_conversation_variable(
|
|
app_model, conversation_id, variable_id, end_user, payload.value
|
|
)
|
|
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))
|