| 
									
										
										
										
											2024-11-24 13:28:46 +08:00
										 |  |  | from datetime import UTC, datetime | 
					
						
							| 
									
										
										
										
											2023-05-15 08:51:32 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-12-24 18:38:51 +08:00
										 |  |  | import pytz  # pip install pytz | 
					
						
							|  |  |  | from flask_login import current_user  # type: ignore | 
					
						
							|  |  |  | from flask_restful import Resource, marshal_with, reqparse  # type: ignore | 
					
						
							|  |  |  | from flask_restful.inputs import int_range  # type: ignore | 
					
						
							| 
									
										
										
										
											2024-02-06 13:21:13 +08:00
										 |  |  | from sqlalchemy import func, or_ | 
					
						
							|  |  |  | from sqlalchemy.orm import joinedload | 
					
						
							| 
									
										
										
										
											2024-06-14 07:34:25 -05:00
										 |  |  | from werkzeug.exceptions import Forbidden, NotFound | 
					
						
							| 
									
										
										
										
											2024-02-06 13:21:13 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-15 08:51:32 +08:00
										 |  |  | from controllers.console import api | 
					
						
							| 
									
										
										
										
											2024-04-08 18:51:46 +08:00
										 |  |  | from controllers.console.app.wraps import get_app_model | 
					
						
							| 
									
										
										
										
											2024-11-01 15:51:22 +08:00
										 |  |  | from controllers.console.wraps import account_initialization_required, setup_required | 
					
						
							| 
									
										
										
										
											2024-04-08 18:51:46 +08:00
										 |  |  | from core.app.entities.app_invoke_entities import InvokeFrom | 
					
						
							| 
									
										
										
										
											2023-05-15 08:51:32 +08:00
										 |  |  | from extensions.ext_database import db | 
					
						
							| 
									
										
										
										
											2024-02-06 13:21:13 +08:00
										 |  |  | from fields.conversation_fields import ( | 
					
						
							|  |  |  |     conversation_detail_fields, | 
					
						
							|  |  |  |     conversation_message_detail_fields, | 
					
						
							|  |  |  |     conversation_pagination_fields, | 
					
						
							|  |  |  |     conversation_with_summary_pagination_fields, | 
					
						
							|  |  |  | ) | 
					
						
							| 
									
										
										
										
											2024-09-11 16:40:52 +08:00
										 |  |  | from libs.helper import DatetimeString | 
					
						
							| 
									
										
										
										
											2024-01-12 12:34:01 +08:00
										 |  |  | from libs.login import login_required | 
					
						
							| 
									
										
										
										
											2024-10-21 10:43:49 +08:00
										 |  |  | from models import Conversation, EndUser, Message, MessageAnnotation | 
					
						
							|  |  |  | from models.model import AppMode | 
					
						
							| 
									
										
										
										
											2023-05-15 08:51:32 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class CompletionConversationApi(Resource): | 
					
						
							|  |  |  |     @setup_required | 
					
						
							|  |  |  |     @login_required | 
					
						
							|  |  |  |     @account_initialization_required | 
					
						
							| 
									
										
										
										
											2024-04-08 18:51:46 +08:00
										 |  |  |     @get_app_model(mode=AppMode.COMPLETION) | 
					
						
							| 
									
										
										
										
											2023-05-15 08:51:32 +08:00
										 |  |  |     @marshal_with(conversation_pagination_fields) | 
					
						
							| 
									
										
										
										
											2024-04-08 18:51:46 +08:00
										 |  |  |     def get(self, app_model): | 
					
						
							| 
									
										
										
										
											2024-08-15 20:36:51 +08:00
										 |  |  |         if not current_user.is_editor: | 
					
						
							| 
									
										
										
										
											2024-06-14 07:34:25 -05:00
										 |  |  |             raise Forbidden() | 
					
						
							| 
									
										
										
										
											2023-05-15 08:51:32 +08:00
										 |  |  |         parser = reqparse.RequestParser() | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |         parser.add_argument("keyword", type=str, location="args") | 
					
						
							| 
									
										
										
										
											2024-09-11 16:40:52 +08:00
										 |  |  |         parser.add_argument("start", type=DatetimeString("%Y-%m-%d %H:%M"), location="args") | 
					
						
							|  |  |  |         parser.add_argument("end", type=DatetimeString("%Y-%m-%d %H:%M"), location="args") | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |         parser.add_argument( | 
					
						
							|  |  |  |             "annotation_status", type=str, choices=["annotated", "not_annotated", "all"], default="all", location="args" | 
					
						
							|  |  |  |         ) | 
					
						
							|  |  |  |         parser.add_argument("page", type=int_range(1, 99999), default=1, location="args") | 
					
						
							|  |  |  |         parser.add_argument("limit", type=int_range(1, 100), default=20, location="args") | 
					
						
							| 
									
										
										
										
											2023-05-15 08:51:32 +08:00
										 |  |  |         args = parser.parse_args() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |         query = db.select(Conversation).where(Conversation.app_id == app_model.id, Conversation.mode == "completion") | 
					
						
							| 
									
										
										
										
											2023-05-15 08:51:32 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |         if args["keyword"]: | 
					
						
							|  |  |  |             query = query.join(Message, Message.conversation_id == Conversation.id).filter( | 
					
						
							| 
									
										
										
										
											2023-05-15 08:51:32 +08:00
										 |  |  |                 or_( | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |                     Message.query.ilike("%{}%".format(args["keyword"])), | 
					
						
							|  |  |  |                     Message.answer.ilike("%{}%".format(args["keyword"])), | 
					
						
							| 
									
										
										
										
											2023-05-15 08:51:32 +08:00
										 |  |  |                 ) | 
					
						
							|  |  |  |             ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         account = current_user | 
					
						
							|  |  |  |         timezone = pytz.timezone(account.timezone) | 
					
						
							|  |  |  |         utc_timezone = pytz.utc | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |         if args["start"]: | 
					
						
							|  |  |  |             start_datetime = datetime.strptime(args["start"], "%Y-%m-%d %H:%M") | 
					
						
							| 
									
										
										
										
											2023-05-15 08:51:32 +08:00
										 |  |  |             start_datetime = start_datetime.replace(second=0) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             start_datetime_timezone = timezone.localize(start_datetime) | 
					
						
							|  |  |  |             start_datetime_utc = start_datetime_timezone.astimezone(utc_timezone) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             query = query.where(Conversation.created_at >= start_datetime_utc) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |         if args["end"]: | 
					
						
							|  |  |  |             end_datetime = datetime.strptime(args["end"], "%Y-%m-%d %H:%M") | 
					
						
							| 
									
										
										
										
											2023-07-27 13:08:57 +08:00
										 |  |  |             end_datetime = end_datetime.replace(second=59) | 
					
						
							| 
									
										
										
										
											2023-05-15 08:51:32 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |             end_datetime_timezone = timezone.localize(end_datetime) | 
					
						
							|  |  |  |             end_datetime_utc = end_datetime_timezone.astimezone(utc_timezone) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             query = query.where(Conversation.created_at < end_datetime_utc) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-12-24 18:38:51 +08:00
										 |  |  |         # FIXME, the type ignore in this file | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |         if args["annotation_status"] == "annotated": | 
					
						
							| 
									
										
										
										
											2024-12-24 18:38:51 +08:00
										 |  |  |             query = query.options(joinedload(Conversation.message_annotations)).join(  # type: ignore | 
					
						
							| 
									
										
										
										
											2023-05-15 08:51:32 +08:00
										 |  |  |                 MessageAnnotation, MessageAnnotation.conversation_id == Conversation.id | 
					
						
							|  |  |  |             ) | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |         elif args["annotation_status"] == "not_annotated": | 
					
						
							|  |  |  |             query = ( | 
					
						
							|  |  |  |                 query.outerjoin(MessageAnnotation, MessageAnnotation.conversation_id == Conversation.id) | 
					
						
							|  |  |  |                 .group_by(Conversation.id) | 
					
						
							|  |  |  |                 .having(func.count(MessageAnnotation.id) == 0) | 
					
						
							|  |  |  |             ) | 
					
						
							| 
									
										
										
										
											2023-05-15 08:51:32 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         query = query.order_by(Conversation.created_at.desc()) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |         conversations = db.paginate(query, page=args["page"], per_page=args["limit"], error_out=False) | 
					
						
							| 
									
										
										
										
											2023-05-15 08:51:32 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return conversations | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class CompletionConversationDetailApi(Resource): | 
					
						
							|  |  |  |     @setup_required | 
					
						
							|  |  |  |     @login_required | 
					
						
							|  |  |  |     @account_initialization_required | 
					
						
							| 
									
										
										
										
											2024-04-08 18:51:46 +08:00
										 |  |  |     @get_app_model(mode=AppMode.COMPLETION) | 
					
						
							| 
									
										
										
										
											2023-09-27 16:06:32 +08:00
										 |  |  |     @marshal_with(conversation_message_detail_fields) | 
					
						
							| 
									
										
										
										
											2024-04-08 18:51:46 +08:00
										 |  |  |     def get(self, app_model, conversation_id): | 
					
						
							| 
									
										
										
										
											2024-08-15 20:36:51 +08:00
										 |  |  |         if not current_user.is_editor: | 
					
						
							| 
									
										
										
										
											2024-06-14 07:34:25 -05:00
										 |  |  |             raise Forbidden() | 
					
						
							| 
									
										
										
										
											2023-05-15 08:51:32 +08:00
										 |  |  |         conversation_id = str(conversation_id) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-08 18:51:46 +08:00
										 |  |  |         return _get_conversation(app_model, conversation_id) | 
					
						
							| 
									
										
										
										
											2023-11-13 22:05:46 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-28 13:31:51 +08:00
										 |  |  |     @setup_required | 
					
						
							|  |  |  |     @login_required | 
					
						
							|  |  |  |     @account_initialization_required | 
					
						
							| 
									
										
										
										
											2024-04-08 18:51:46 +08:00
										 |  |  |     @get_app_model(mode=[AppMode.CHAT, AppMode.AGENT_CHAT, AppMode.ADVANCED_CHAT]) | 
					
						
							|  |  |  |     def delete(self, app_model, conversation_id): | 
					
						
							| 
									
										
										
										
											2024-08-15 20:36:51 +08:00
										 |  |  |         if not current_user.is_editor: | 
					
						
							| 
									
										
										
										
											2024-06-14 07:34:25 -05:00
										 |  |  |             raise Forbidden() | 
					
						
							| 
									
										
										
										
											2023-06-28 13:31:51 +08:00
										 |  |  |         conversation_id = str(conversation_id) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |         conversation = ( | 
					
						
							|  |  |  |             db.session.query(Conversation) | 
					
						
							|  |  |  |             .filter(Conversation.id == conversation_id, Conversation.app_id == app_model.id) | 
					
						
							|  |  |  |             .first() | 
					
						
							|  |  |  |         ) | 
					
						
							| 
									
										
										
										
											2023-06-28 13:31:51 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if not conversation: | 
					
						
							|  |  |  |             raise NotFound("Conversation Not Exists.") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         conversation.is_deleted = True | 
					
						
							|  |  |  |         db.session.commit() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |         return {"result": "success"}, 204 | 
					
						
							| 
									
										
										
										
											2023-05-15 08:51:32 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class ChatConversationApi(Resource): | 
					
						
							|  |  |  |     @setup_required | 
					
						
							|  |  |  |     @login_required | 
					
						
							|  |  |  |     @account_initialization_required | 
					
						
							| 
									
										
										
										
											2024-04-08 18:51:46 +08:00
										 |  |  |     @get_app_model(mode=[AppMode.CHAT, AppMode.AGENT_CHAT, AppMode.ADVANCED_CHAT]) | 
					
						
							| 
									
										
										
										
											2023-09-27 16:06:32 +08:00
										 |  |  |     @marshal_with(conversation_with_summary_pagination_fields) | 
					
						
							| 
									
										
										
										
											2024-04-08 18:51:46 +08:00
										 |  |  |     def get(self, app_model): | 
					
						
							| 
									
										
										
										
											2024-08-05 04:55:55 +00:00
										 |  |  |         if not current_user.is_editor: | 
					
						
							| 
									
										
										
										
											2024-06-14 07:34:25 -05:00
										 |  |  |             raise Forbidden() | 
					
						
							| 
									
										
										
										
											2023-05-15 08:51:32 +08:00
										 |  |  |         parser = reqparse.RequestParser() | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |         parser.add_argument("keyword", type=str, location="args") | 
					
						
							| 
									
										
										
										
											2024-09-11 16:40:52 +08:00
										 |  |  |         parser.add_argument("start", type=DatetimeString("%Y-%m-%d %H:%M"), location="args") | 
					
						
							|  |  |  |         parser.add_argument("end", type=DatetimeString("%Y-%m-%d %H:%M"), location="args") | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |         parser.add_argument( | 
					
						
							|  |  |  |             "annotation_status", type=str, choices=["annotated", "not_annotated", "all"], default="all", location="args" | 
					
						
							|  |  |  |         ) | 
					
						
							|  |  |  |         parser.add_argument("message_count_gte", type=int_range(1, 99999), required=False, location="args") | 
					
						
							|  |  |  |         parser.add_argument("page", type=int_range(1, 99999), required=False, default=1, location="args") | 
					
						
							|  |  |  |         parser.add_argument("limit", type=int_range(1, 100), required=False, default=20, location="args") | 
					
						
							|  |  |  |         parser.add_argument( | 
					
						
							|  |  |  |             "sort_by", | 
					
						
							|  |  |  |             type=str, | 
					
						
							|  |  |  |             choices=["created_at", "-created_at", "updated_at", "-updated_at"], | 
					
						
							|  |  |  |             required=False, | 
					
						
							|  |  |  |             default="-updated_at", | 
					
						
							|  |  |  |             location="args", | 
					
						
							|  |  |  |         ) | 
					
						
							| 
									
										
										
										
											2023-05-15 08:51:32 +08:00
										 |  |  |         args = parser.parse_args() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-07-24 19:34:23 +08:00
										 |  |  |         subquery = ( | 
					
						
							|  |  |  |             db.session.query( | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |                 Conversation.id.label("conversation_id"), EndUser.session_id.label("from_end_user_session_id") | 
					
						
							| 
									
										
										
										
											2024-07-24 19:34:23 +08:00
										 |  |  |             ) | 
					
						
							|  |  |  |             .outerjoin(EndUser, Conversation.from_end_user_id == EndUser.id) | 
					
						
							|  |  |  |             .subquery() | 
					
						
							|  |  |  |         ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-08 18:51:46 +08:00
										 |  |  |         query = db.select(Conversation).where(Conversation.app_id == app_model.id) | 
					
						
							| 
									
										
										
										
											2023-05-15 08:51:32 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |         if args["keyword"]: | 
					
						
							|  |  |  |             keyword_filter = "%{}%".format(args["keyword"]) | 
					
						
							| 
									
										
										
										
											2024-09-04 10:00:55 +08:00
										 |  |  |             query = ( | 
					
						
							|  |  |  |                 query.join( | 
					
						
							|  |  |  |                     Message, | 
					
						
							|  |  |  |                     Message.conversation_id == Conversation.id, | 
					
						
							|  |  |  |                 ) | 
					
						
							|  |  |  |                 .join(subquery, subquery.c.conversation_id == Conversation.id) | 
					
						
							|  |  |  |                 .filter( | 
					
						
							|  |  |  |                     or_( | 
					
						
							|  |  |  |                         Message.query.ilike(keyword_filter), | 
					
						
							|  |  |  |                         Message.answer.ilike(keyword_filter), | 
					
						
							|  |  |  |                         Conversation.name.ilike(keyword_filter), | 
					
						
							|  |  |  |                         Conversation.introduction.ilike(keyword_filter), | 
					
						
							|  |  |  |                         subquery.c.from_end_user_session_id.ilike(keyword_filter), | 
					
						
							|  |  |  |                     ), | 
					
						
							|  |  |  |                 ) | 
					
						
							| 
									
										
										
										
											2024-10-08 17:25:33 +08:00
										 |  |  |                 .group_by(Conversation.id) | 
					
						
							| 
									
										
										
										
											2023-05-15 08:51:32 +08:00
										 |  |  |             ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         account = current_user | 
					
						
							|  |  |  |         timezone = pytz.timezone(account.timezone) | 
					
						
							|  |  |  |         utc_timezone = pytz.utc | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |         if args["start"]: | 
					
						
							|  |  |  |             start_datetime = datetime.strptime(args["start"], "%Y-%m-%d %H:%M") | 
					
						
							| 
									
										
										
										
											2023-05-15 08:51:32 +08:00
										 |  |  |             start_datetime = start_datetime.replace(second=0) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             start_datetime_timezone = timezone.localize(start_datetime) | 
					
						
							|  |  |  |             start_datetime_utc = start_datetime_timezone.astimezone(utc_timezone) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-09-06 16:31:51 +07:00
										 |  |  |             match args["sort_by"]: | 
					
						
							|  |  |  |                 case "updated_at" | "-updated_at": | 
					
						
							|  |  |  |                     query = query.where(Conversation.updated_at >= start_datetime_utc) | 
					
						
							|  |  |  |                 case "created_at" | "-created_at" | _: | 
					
						
							|  |  |  |                     query = query.where(Conversation.created_at >= start_datetime_utc) | 
					
						
							| 
									
										
										
										
											2023-05-15 08:51:32 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |         if args["end"]: | 
					
						
							|  |  |  |             end_datetime = datetime.strptime(args["end"], "%Y-%m-%d %H:%M") | 
					
						
							| 
									
										
										
										
											2023-07-27 13:08:57 +08:00
										 |  |  |             end_datetime = end_datetime.replace(second=59) | 
					
						
							| 
									
										
										
										
											2023-05-15 08:51:32 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |             end_datetime_timezone = timezone.localize(end_datetime) | 
					
						
							|  |  |  |             end_datetime_utc = end_datetime_timezone.astimezone(utc_timezone) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-09-06 16:31:51 +07:00
										 |  |  |             match args["sort_by"]: | 
					
						
							|  |  |  |                 case "updated_at" | "-updated_at": | 
					
						
							|  |  |  |                     query = query.where(Conversation.updated_at <= end_datetime_utc) | 
					
						
							|  |  |  |                 case "created_at" | "-created_at" | _: | 
					
						
							|  |  |  |                     query = query.where(Conversation.created_at <= end_datetime_utc) | 
					
						
							| 
									
										
										
										
											2023-05-15 08:51:32 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |         if args["annotation_status"] == "annotated": | 
					
						
							| 
									
										
										
										
											2024-12-24 18:38:51 +08:00
										 |  |  |             query = query.options(joinedload(Conversation.message_annotations)).join(  # type: ignore | 
					
						
							| 
									
										
										
										
											2023-05-15 08:51:32 +08:00
										 |  |  |                 MessageAnnotation, MessageAnnotation.conversation_id == Conversation.id | 
					
						
							|  |  |  |             ) | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |         elif args["annotation_status"] == "not_annotated": | 
					
						
							|  |  |  |             query = ( | 
					
						
							|  |  |  |                 query.outerjoin(MessageAnnotation, MessageAnnotation.conversation_id == Conversation.id) | 
					
						
							|  |  |  |                 .group_by(Conversation.id) | 
					
						
							|  |  |  |                 .having(func.count(MessageAnnotation.id) == 0) | 
					
						
							|  |  |  |             ) | 
					
						
							| 
									
										
										
										
											2023-05-15 08:51:32 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |         if args["message_count_gte"] and args["message_count_gte"] >= 1: | 
					
						
							| 
									
										
										
										
											2023-05-15 08:51:32 +08:00
										 |  |  |             query = ( | 
					
						
							| 
									
										
										
										
											2024-12-24 18:38:51 +08:00
										 |  |  |                 query.options(joinedload(Conversation.messages))  # type: ignore | 
					
						
							| 
									
										
										
										
											2023-05-15 08:51:32 +08:00
										 |  |  |                 .join(Message, Message.conversation_id == Conversation.id) | 
					
						
							|  |  |  |                 .group_by(Conversation.id) | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |                 .having(func.count(Message.id) >= args["message_count_gte"]) | 
					
						
							| 
									
										
										
										
											2023-05-15 08:51:32 +08:00
										 |  |  |             ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-08 18:51:46 +08:00
										 |  |  |         if app_model.mode == AppMode.ADVANCED_CHAT.value: | 
					
						
							|  |  |  |             query = query.where(Conversation.invoke_from != InvokeFrom.DEBUGGER.value) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |         match args["sort_by"]: | 
					
						
							|  |  |  |             case "created_at": | 
					
						
							| 
									
										
										
										
											2024-08-20 17:55:44 +08:00
										 |  |  |                 query = query.order_by(Conversation.created_at.asc()) | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |             case "-created_at": | 
					
						
							| 
									
										
										
										
											2024-08-20 17:55:44 +08:00
										 |  |  |                 query = query.order_by(Conversation.created_at.desc()) | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |             case "updated_at": | 
					
						
							| 
									
										
										
										
											2024-08-20 17:55:44 +08:00
										 |  |  |                 query = query.order_by(Conversation.updated_at.asc()) | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |             case "-updated_at": | 
					
						
							| 
									
										
										
										
											2024-08-20 17:55:44 +08:00
										 |  |  |                 query = query.order_by(Conversation.updated_at.desc()) | 
					
						
							|  |  |  |             case _: | 
					
						
							|  |  |  |                 query = query.order_by(Conversation.created_at.desc()) | 
					
						
							| 
									
										
										
										
											2023-05-15 08:51:32 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |         conversations = db.paginate(query, page=args["page"], per_page=args["limit"], error_out=False) | 
					
						
							| 
									
										
										
										
											2023-05-15 08:51:32 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return conversations | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class ChatConversationDetailApi(Resource): | 
					
						
							|  |  |  |     @setup_required | 
					
						
							|  |  |  |     @login_required | 
					
						
							|  |  |  |     @account_initialization_required | 
					
						
							| 
									
										
										
										
											2024-04-08 18:51:46 +08:00
										 |  |  |     @get_app_model(mode=[AppMode.CHAT, AppMode.AGENT_CHAT, AppMode.ADVANCED_CHAT]) | 
					
						
							| 
									
										
										
										
											2023-05-15 08:51:32 +08:00
										 |  |  |     @marshal_with(conversation_detail_fields) | 
					
						
							| 
									
										
										
										
											2024-04-08 18:51:46 +08:00
										 |  |  |     def get(self, app_model, conversation_id): | 
					
						
							| 
									
										
										
										
											2024-08-05 04:55:55 +00:00
										 |  |  |         if not current_user.is_editor: | 
					
						
							| 
									
										
										
										
											2024-06-14 07:34:25 -05:00
										 |  |  |             raise Forbidden() | 
					
						
							| 
									
										
										
										
											2023-05-15 08:51:32 +08:00
										 |  |  |         conversation_id = str(conversation_id) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-08 18:51:46 +08:00
										 |  |  |         return _get_conversation(app_model, conversation_id) | 
					
						
							| 
									
										
										
										
											2023-11-13 22:05:46 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-06-28 13:31:51 +08:00
										 |  |  |     @setup_required | 
					
						
							|  |  |  |     @login_required | 
					
						
							| 
									
										
										
										
											2024-04-08 18:51:46 +08:00
										 |  |  |     @get_app_model(mode=[AppMode.CHAT, AppMode.AGENT_CHAT, AppMode.ADVANCED_CHAT]) | 
					
						
							| 
									
										
										
										
											2023-06-28 13:31:51 +08:00
										 |  |  |     @account_initialization_required | 
					
						
							| 
									
										
										
										
											2024-04-08 18:51:46 +08:00
										 |  |  |     def delete(self, app_model, conversation_id): | 
					
						
							| 
									
										
										
										
											2024-08-15 20:36:51 +08:00
										 |  |  |         if not current_user.is_editor: | 
					
						
							| 
									
										
										
										
											2024-06-14 07:34:25 -05:00
										 |  |  |             raise Forbidden() | 
					
						
							| 
									
										
										
										
											2023-06-28 13:31:51 +08:00
										 |  |  |         conversation_id = str(conversation_id) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |         conversation = ( | 
					
						
							|  |  |  |             db.session.query(Conversation) | 
					
						
							|  |  |  |             .filter(Conversation.id == conversation_id, Conversation.app_id == app_model.id) | 
					
						
							|  |  |  |             .first() | 
					
						
							|  |  |  |         ) | 
					
						
							| 
									
										
										
										
											2023-06-28 13:31:51 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if not conversation: | 
					
						
							|  |  |  |             raise NotFound("Conversation Not Exists.") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         conversation.is_deleted = True | 
					
						
							|  |  |  |         db.session.commit() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |         return {"result": "success"}, 204 | 
					
						
							| 
									
										
										
										
											2023-05-15 08:51:32 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  | api.add_resource(CompletionConversationApi, "/apps/<uuid:app_id>/completion-conversations") | 
					
						
							|  |  |  | api.add_resource(CompletionConversationDetailApi, "/apps/<uuid:app_id>/completion-conversations/<uuid:conversation_id>") | 
					
						
							|  |  |  | api.add_resource(ChatConversationApi, "/apps/<uuid:app_id>/chat-conversations") | 
					
						
							|  |  |  | api.add_resource(ChatConversationDetailApi, "/apps/<uuid:app_id>/chat-conversations/<uuid:conversation_id>") | 
					
						
							| 
									
										
										
										
											2023-05-15 08:51:32 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-08 18:51:46 +08:00
										 |  |  | def _get_conversation(app_model, conversation_id): | 
					
						
							| 
									
										
										
										
											2024-08-26 15:29:10 +08:00
										 |  |  |     conversation = ( | 
					
						
							|  |  |  |         db.session.query(Conversation) | 
					
						
							|  |  |  |         .filter(Conversation.id == conversation_id, Conversation.app_id == app_model.id) | 
					
						
							|  |  |  |         .first() | 
					
						
							|  |  |  |     ) | 
					
						
							| 
									
										
										
										
											2023-05-15 08:51:32 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if not conversation: | 
					
						
							|  |  |  |         raise NotFound("Conversation Not Exists.") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if not conversation.read_at: | 
					
						
							| 
									
										
										
										
											2024-11-24 13:28:46 +08:00
										 |  |  |         conversation.read_at = datetime.now(UTC).replace(tzinfo=None) | 
					
						
							| 
									
										
										
										
											2023-05-15 08:51:32 +08:00
										 |  |  |         conversation.read_account_id = current_user.id | 
					
						
							|  |  |  |         db.session.commit() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return conversation |