| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320 | 
							- import logging
 - 
 - from flask_restx import Resource, fields, marshal_with, reqparse
 - from flask_restx.inputs import int_range
 - from sqlalchemy import exists, select
 - from werkzeug.exceptions import Forbidden, InternalServerError, NotFound
 - 
 - from controllers.console import api, console_ns
 - from controllers.console.app.error import (
 -     CompletionRequestError,
 -     ProviderModelCurrentlyNotSupportError,
 -     ProviderNotInitializeError,
 -     ProviderQuotaExceededError,
 - )
 - from controllers.console.app.wraps import get_app_model
 - from controllers.console.explore.error import AppSuggestedQuestionsAfterAnswerDisabledError
 - from controllers.console.wraps import (
 -     account_initialization_required,
 -     cloud_edition_billing_resource_check,
 -     setup_required,
 - )
 - from core.app.entities.app_invoke_entities import InvokeFrom
 - from core.errors.error import ModelCurrentlyNotSupportError, ProviderTokenNotInitError, QuotaExceededError
 - from core.model_runtime.errors.invoke import InvokeError
 - from extensions.ext_database import db
 - from fields.conversation_fields import annotation_fields, message_detail_fields
 - from libs.helper import uuid_value
 - from libs.infinite_scroll_pagination import InfiniteScrollPagination
 - from libs.login import current_user, login_required
 - from models.account import Account
 - from models.model import AppMode, Conversation, Message, MessageAnnotation, MessageFeedback
 - from services.annotation_service import AppAnnotationService
 - from services.errors.conversation import ConversationNotExistsError
 - from services.errors.message import MessageNotExistsError, SuggestedQuestionsAfterAnswerDisabledError
 - from services.message_service import MessageService
 - 
 - logger = logging.getLogger(__name__)
 - 
 - 
 - @console_ns.route("/apps/<uuid:app_id>/chat-messages")
 - class ChatMessageListApi(Resource):
 -     message_infinite_scroll_pagination_fields = {
 -         "limit": fields.Integer,
 -         "has_more": fields.Boolean,
 -         "data": fields.List(fields.Nested(message_detail_fields)),
 -     }
 - 
 -     @api.doc("list_chat_messages")
 -     @api.doc(description="Get chat messages for a conversation with pagination")
 -     @api.doc(params={"app_id": "Application ID"})
 -     @api.expect(
 -         api.parser()
 -         .add_argument("conversation_id", type=str, required=True, location="args", help="Conversation ID")
 -         .add_argument("first_id", type=str, location="args", help="First message ID for pagination")
 -         .add_argument("limit", type=int, location="args", default=20, help="Number of messages to return (1-100)")
 -     )
 -     @api.response(200, "Success", message_infinite_scroll_pagination_fields)
 -     @api.response(404, "Conversation not found")
 -     @setup_required
 -     @login_required
 -     @get_app_model(mode=[AppMode.CHAT, AppMode.AGENT_CHAT, AppMode.ADVANCED_CHAT])
 -     @account_initialization_required
 -     @marshal_with(message_infinite_scroll_pagination_fields)
 -     def get(self, app_model):
 -         if not isinstance(current_user, Account) or not current_user.has_edit_permission:
 -             raise Forbidden()
 - 
 -         parser = reqparse.RequestParser()
 -         parser.add_argument("conversation_id", required=True, type=uuid_value, location="args")
 -         parser.add_argument("first_id", type=uuid_value, location="args")
 -         parser.add_argument("limit", type=int_range(1, 100), required=False, default=20, location="args")
 -         args = parser.parse_args()
 - 
 -         conversation = (
 -             db.session.query(Conversation)
 -             .where(Conversation.id == args["conversation_id"], Conversation.app_id == app_model.id)
 -             .first()
 -         )
 - 
 -         if not conversation:
 -             raise NotFound("Conversation Not Exists.")
 - 
 -         if args["first_id"]:
 -             first_message = (
 -                 db.session.query(Message)
 -                 .where(Message.conversation_id == conversation.id, Message.id == args["first_id"])
 -                 .first()
 -             )
 - 
 -             if not first_message:
 -                 raise NotFound("First message not found")
 - 
 -             history_messages = (
 -                 db.session.query(Message)
 -                 .where(
 -                     Message.conversation_id == conversation.id,
 -                     Message.created_at < first_message.created_at,
 -                     Message.id != first_message.id,
 -                 )
 -                 .order_by(Message.created_at.desc())
 -                 .limit(args["limit"])
 -                 .all()
 -             )
 -         else:
 -             history_messages = (
 -                 db.session.query(Message)
 -                 .where(Message.conversation_id == conversation.id)
 -                 .order_by(Message.created_at.desc())
 -                 .limit(args["limit"])
 -                 .all()
 -             )
 - 
 -         # Initialize has_more based on whether we have a full page
 -         if len(history_messages) == args["limit"]:
 -             current_page_first_message = history_messages[-1]
 -             # Check if there are more messages before the current page
 -             has_more = db.session.scalar(
 -                 select(
 -                     exists().where(
 -                         Message.conversation_id == conversation.id,
 -                         Message.created_at < current_page_first_message.created_at,
 -                         Message.id != current_page_first_message.id,
 -                     )
 -                 )
 -             )
 -         else:
 -             # If we don't have a full page, there are no more messages
 -             has_more = False
 - 
 -         history_messages = list(reversed(history_messages))
 - 
 -         return InfiniteScrollPagination(data=history_messages, limit=args["limit"], has_more=has_more)
 - 
 - 
 - @console_ns.route("/apps/<uuid:app_id>/feedbacks")
 - class MessageFeedbackApi(Resource):
 -     @api.doc("create_message_feedback")
 -     @api.doc(description="Create or update message feedback (like/dislike)")
 -     @api.doc(params={"app_id": "Application ID"})
 -     @api.expect(
 -         api.model(
 -             "MessageFeedbackRequest",
 -             {
 -                 "message_id": fields.String(required=True, description="Message ID"),
 -                 "rating": fields.String(enum=["like", "dislike"], description="Feedback rating"),
 -             },
 -         )
 -     )
 -     @api.response(200, "Feedback updated successfully")
 -     @api.response(404, "Message not found")
 -     @api.response(403, "Insufficient permissions")
 -     @get_app_model
 -     @setup_required
 -     @login_required
 -     @account_initialization_required
 -     def post(self, app_model):
 -         if current_user is None:
 -             raise Forbidden()
 - 
 -         parser = reqparse.RequestParser()
 -         parser.add_argument("message_id", required=True, type=uuid_value, location="json")
 -         parser.add_argument("rating", type=str, choices=["like", "dislike", None], location="json")
 -         args = parser.parse_args()
 - 
 -         message_id = str(args["message_id"])
 - 
 -         message = db.session.query(Message).where(Message.id == message_id, Message.app_id == app_model.id).first()
 - 
 -         if not message:
 -             raise NotFound("Message Not Exists.")
 - 
 -         feedback = message.admin_feedback
 - 
 -         if not args["rating"] and feedback:
 -             db.session.delete(feedback)
 -         elif args["rating"] and feedback:
 -             feedback.rating = args["rating"]
 -         elif not args["rating"] and not feedback:
 -             raise ValueError("rating cannot be None when feedback not exists")
 -         else:
 -             feedback = MessageFeedback(
 -                 app_id=app_model.id,
 -                 conversation_id=message.conversation_id,
 -                 message_id=message.id,
 -                 rating=args["rating"],
 -                 from_source="admin",
 -                 from_account_id=current_user.id,
 -             )
 -             db.session.add(feedback)
 - 
 -         db.session.commit()
 - 
 -         return {"result": "success"}
 - 
 - 
 - @console_ns.route("/apps/<uuid:app_id>/annotations")
 - class MessageAnnotationApi(Resource):
 -     @api.doc("create_message_annotation")
 -     @api.doc(description="Create message annotation")
 -     @api.doc(params={"app_id": "Application ID"})
 -     @api.expect(
 -         api.model(
 -             "MessageAnnotationRequest",
 -             {
 -                 "message_id": fields.String(description="Message ID"),
 -                 "question": fields.String(required=True, description="Question text"),
 -                 "answer": fields.String(required=True, description="Answer text"),
 -                 "annotation_reply": fields.Raw(description="Annotation reply"),
 -             },
 -         )
 -     )
 -     @api.response(200, "Annotation created successfully", annotation_fields)
 -     @api.response(403, "Insufficient permissions")
 -     @setup_required
 -     @login_required
 -     @account_initialization_required
 -     @cloud_edition_billing_resource_check("annotation")
 -     @get_app_model
 -     @marshal_with(annotation_fields)
 -     def post(self, app_model):
 -         if not isinstance(current_user, Account):
 -             raise Forbidden()
 -         if not current_user.has_edit_permission:
 -             raise Forbidden()
 - 
 -         parser = reqparse.RequestParser()
 -         parser.add_argument("message_id", required=False, type=uuid_value, location="json")
 -         parser.add_argument("question", required=True, type=str, location="json")
 -         parser.add_argument("answer", required=True, type=str, location="json")
 -         parser.add_argument("annotation_reply", required=False, type=dict, location="json")
 -         args = parser.parse_args()
 -         annotation = AppAnnotationService.up_insert_app_annotation_from_message(args, app_model.id)
 - 
 -         return annotation
 - 
 - 
 - @console_ns.route("/apps/<uuid:app_id>/annotations/count")
 - class MessageAnnotationCountApi(Resource):
 -     @api.doc("get_annotation_count")
 -     @api.doc(description="Get count of message annotations for the app")
 -     @api.doc(params={"app_id": "Application ID"})
 -     @api.response(
 -         200,
 -         "Annotation count retrieved successfully",
 -         api.model("AnnotationCountResponse", {"count": fields.Integer(description="Number of annotations")}),
 -     )
 -     @get_app_model
 -     @setup_required
 -     @login_required
 -     @account_initialization_required
 -     def get(self, app_model):
 -         count = db.session.query(MessageAnnotation).where(MessageAnnotation.app_id == app_model.id).count()
 - 
 -         return {"count": count}
 - 
 - 
 - @console_ns.route("/apps/<uuid:app_id>/chat-messages/<uuid:message_id>/suggested-questions")
 - class MessageSuggestedQuestionApi(Resource):
 -     @api.doc("get_message_suggested_questions")
 -     @api.doc(description="Get suggested questions for a message")
 -     @api.doc(params={"app_id": "Application ID", "message_id": "Message ID"})
 -     @api.response(
 -         200,
 -         "Suggested questions retrieved successfully",
 -         api.model("SuggestedQuestionsResponse", {"data": fields.List(fields.String(description="Suggested question"))}),
 -     )
 -     @api.response(404, "Message or conversation not found")
 -     @setup_required
 -     @login_required
 -     @account_initialization_required
 -     @get_app_model(mode=[AppMode.CHAT, AppMode.AGENT_CHAT, AppMode.ADVANCED_CHAT])
 -     def get(self, app_model, message_id):
 -         message_id = str(message_id)
 - 
 -         try:
 -             questions = MessageService.get_suggested_questions_after_answer(
 -                 app_model=app_model, message_id=message_id, user=current_user, invoke_from=InvokeFrom.DEBUGGER
 -             )
 -         except MessageNotExistsError:
 -             raise NotFound("Message not found")
 -         except ConversationNotExistsError:
 -             raise NotFound("Conversation not found")
 -         except ProviderTokenNotInitError as ex:
 -             raise ProviderNotInitializeError(ex.description)
 -         except QuotaExceededError:
 -             raise ProviderQuotaExceededError()
 -         except ModelCurrentlyNotSupportError:
 -             raise ProviderModelCurrentlyNotSupportError()
 -         except InvokeError as e:
 -             raise CompletionRequestError(e.description)
 -         except SuggestedQuestionsAfterAnswerDisabledError:
 -             raise AppSuggestedQuestionsAfterAnswerDisabledError()
 -         except Exception:
 -             logger.exception("internal server error.")
 -             raise InternalServerError()
 - 
 -         return {"data": questions}
 - 
 - 
 - @console_ns.route("/apps/<uuid:app_id>/messages/<uuid:message_id>")
 - class MessageApi(Resource):
 -     @api.doc("get_message")
 -     @api.doc(description="Get message details by ID")
 -     @api.doc(params={"app_id": "Application ID", "message_id": "Message ID"})
 -     @api.response(200, "Message retrieved successfully", message_detail_fields)
 -     @api.response(404, "Message not found")
 -     @setup_required
 -     @login_required
 -     @account_initialization_required
 -     @get_app_model
 -     @marshal_with(message_detail_fields)
 -     def get(self, app_model, message_id):
 -         message_id = str(message_id)
 - 
 -         message = db.session.query(Message).where(Message.id == message_id, Message.app_id == app_model.id).first()
 - 
 -         if not message:
 -             raise NotFound("Message Not Exists.")
 - 
 -         return message
 
 
  |