|
@@ -1,36 +1,38 @@
|
|
-from pydantic import BaseModel
|
|
|
|
|
|
+from pydantic import BaseModel, ConfigDict
|
|
from typing import List, Union, Optional
|
|
from typing import List, Union, Optional
|
|
-from peewee import *
|
|
|
|
-from playhouse.shortcuts import model_to_dict
|
|
|
|
|
|
|
|
import json
|
|
import json
|
|
import uuid
|
|
import uuid
|
|
import time
|
|
import time
|
|
|
|
|
|
-from apps.webui.internal.db import DB
|
|
|
|
|
|
+from sqlalchemy import Column, String, BigInteger, Boolean, Text
|
|
|
|
+
|
|
|
|
+from apps.webui.internal.db import Base, Session
|
|
|
|
+
|
|
|
|
|
|
####################
|
|
####################
|
|
# Chat DB Schema
|
|
# Chat DB Schema
|
|
####################
|
|
####################
|
|
|
|
|
|
|
|
|
|
-class Chat(Model):
|
|
|
|
- id = CharField(unique=True)
|
|
|
|
- user_id = CharField()
|
|
|
|
- title = TextField()
|
|
|
|
- chat = TextField() # Save Chat JSON as Text
|
|
|
|
|
|
+class Chat(Base):
|
|
|
|
+ __tablename__ = "chat"
|
|
|
|
|
|
- created_at = BigIntegerField()
|
|
|
|
- updated_at = BigIntegerField()
|
|
|
|
|
|
+ id = Column(String, primary_key=True)
|
|
|
|
+ user_id = Column(String)
|
|
|
|
+ title = Column(Text)
|
|
|
|
+ chat = Column(Text) # Save Chat JSON as Text
|
|
|
|
|
|
- share_id = CharField(null=True, unique=True)
|
|
|
|
- archived = BooleanField(default=False)
|
|
|
|
|
|
+ created_at = Column(BigInteger)
|
|
|
|
+ updated_at = Column(BigInteger)
|
|
|
|
|
|
- class Meta:
|
|
|
|
- database = DB
|
|
|
|
|
|
+ share_id = Column(Text, unique=True, nullable=True)
|
|
|
|
+ archived = Column(Boolean, default=False)
|
|
|
|
|
|
|
|
|
|
class ChatModel(BaseModel):
|
|
class ChatModel(BaseModel):
|
|
|
|
+ model_config = ConfigDict(from_attributes=True)
|
|
|
|
+
|
|
id: str
|
|
id: str
|
|
user_id: str
|
|
user_id: str
|
|
title: str
|
|
title: str
|
|
@@ -75,9 +77,6 @@ class ChatTitleIdResponse(BaseModel):
|
|
|
|
|
|
|
|
|
|
class ChatTable:
|
|
class ChatTable:
|
|
- def __init__(self, db):
|
|
|
|
- self.db = db
|
|
|
|
- db.create_tables([Chat])
|
|
|
|
|
|
|
|
def insert_new_chat(self, user_id: str, form_data: ChatForm) -> Optional[ChatModel]:
|
|
def insert_new_chat(self, user_id: str, form_data: ChatForm) -> Optional[ChatModel]:
|
|
id = str(uuid.uuid4())
|
|
id = str(uuid.uuid4())
|
|
@@ -94,26 +93,28 @@ class ChatTable:
|
|
}
|
|
}
|
|
)
|
|
)
|
|
|
|
|
|
- result = Chat.create(**chat.model_dump())
|
|
|
|
- return chat if result else None
|
|
|
|
|
|
+ result = Chat(**chat.model_dump())
|
|
|
|
+ Session.add(result)
|
|
|
|
+ Session.commit()
|
|
|
|
+ Session.refresh(result)
|
|
|
|
+ return ChatModel.model_validate(result) if result else None
|
|
|
|
|
|
def update_chat_by_id(self, id: str, chat: dict) -> Optional[ChatModel]:
|
|
def update_chat_by_id(self, id: str, chat: dict) -> Optional[ChatModel]:
|
|
try:
|
|
try:
|
|
- query = Chat.update(
|
|
|
|
- chat=json.dumps(chat),
|
|
|
|
- title=chat["title"] if "title" in chat else "New Chat",
|
|
|
|
- updated_at=int(time.time()),
|
|
|
|
- ).where(Chat.id == id)
|
|
|
|
- query.execute()
|
|
|
|
-
|
|
|
|
- chat = Chat.get(Chat.id == id)
|
|
|
|
- return ChatModel(**model_to_dict(chat))
|
|
|
|
- except:
|
|
|
|
|
|
+ chat_obj = Session.get(Chat, id)
|
|
|
|
+ chat_obj.chat = json.dumps(chat)
|
|
|
|
+ chat_obj.title = chat["title"] if "title" in chat else "New Chat"
|
|
|
|
+ chat_obj.updated_at = int(time.time())
|
|
|
|
+ Session.commit()
|
|
|
|
+ Session.refresh(chat_obj)
|
|
|
|
+
|
|
|
|
+ return ChatModel.model_validate(chat_obj)
|
|
|
|
+ except Exception as e:
|
|
return None
|
|
return None
|
|
|
|
|
|
def insert_shared_chat_by_chat_id(self, chat_id: str) -> Optional[ChatModel]:
|
|
def insert_shared_chat_by_chat_id(self, chat_id: str) -> Optional[ChatModel]:
|
|
# Get the existing chat to share
|
|
# Get the existing chat to share
|
|
- chat = Chat.get(Chat.id == chat_id)
|
|
|
|
|
|
+ chat = Session.get(Chat, chat_id)
|
|
# Check if the chat is already shared
|
|
# Check if the chat is already shared
|
|
if chat.share_id:
|
|
if chat.share_id:
|
|
return self.get_chat_by_id_and_user_id(chat.share_id, "shared")
|
|
return self.get_chat_by_id_and_user_id(chat.share_id, "shared")
|
|
@@ -128,10 +129,15 @@ class ChatTable:
|
|
"updated_at": int(time.time()),
|
|
"updated_at": int(time.time()),
|
|
}
|
|
}
|
|
)
|
|
)
|
|
- shared_result = Chat.create(**shared_chat.model_dump())
|
|
|
|
|
|
+ shared_result = Chat(**shared_chat.model_dump())
|
|
|
|
+ Session.add(shared_result)
|
|
|
|
+ Session.commit()
|
|
|
|
+ Session.refresh(shared_result)
|
|
# Update the original chat with the share_id
|
|
# Update the original chat with the share_id
|
|
result = (
|
|
result = (
|
|
- Chat.update(share_id=shared_chat.id).where(Chat.id == chat_id).execute()
|
|
|
|
|
|
+ Session.query(Chat)
|
|
|
|
+ .filter_by(id=chat_id)
|
|
|
|
+ .update({"share_id": shared_chat.id})
|
|
)
|
|
)
|
|
|
|
|
|
return shared_chat if (shared_result and result) else None
|
|
return shared_chat if (shared_result and result) else None
|
|
@@ -139,26 +145,20 @@ class ChatTable:
|
|
def update_shared_chat_by_chat_id(self, chat_id: str) -> Optional[ChatModel]:
|
|
def update_shared_chat_by_chat_id(self, chat_id: str) -> Optional[ChatModel]:
|
|
try:
|
|
try:
|
|
print("update_shared_chat_by_id")
|
|
print("update_shared_chat_by_id")
|
|
- chat = Chat.get(Chat.id == chat_id)
|
|
|
|
|
|
+ chat = Session.get(Chat, chat_id)
|
|
print(chat)
|
|
print(chat)
|
|
|
|
+ chat.title = chat.title
|
|
|
|
+ chat.chat = chat.chat
|
|
|
|
+ Session.commit()
|
|
|
|
+ Session.refresh(chat)
|
|
|
|
|
|
- query = Chat.update(
|
|
|
|
- title=chat.title,
|
|
|
|
- chat=chat.chat,
|
|
|
|
- ).where(Chat.id == chat.share_id)
|
|
|
|
-
|
|
|
|
- query.execute()
|
|
|
|
-
|
|
|
|
- chat = Chat.get(Chat.id == chat.share_id)
|
|
|
|
- return ChatModel(**model_to_dict(chat))
|
|
|
|
|
|
+ return self.get_chat_by_id(chat.share_id)
|
|
except:
|
|
except:
|
|
return None
|
|
return None
|
|
|
|
|
|
def delete_shared_chat_by_chat_id(self, chat_id: str) -> bool:
|
|
def delete_shared_chat_by_chat_id(self, chat_id: str) -> bool:
|
|
try:
|
|
try:
|
|
- query = Chat.delete().where(Chat.user_id == f"shared-{chat_id}")
|
|
|
|
- query.execute() # Remove the rows, return number of rows removed.
|
|
|
|
-
|
|
|
|
|
|
+ Session.query(Chat).filter_by(user_id=f"shared-{chat_id}").delete()
|
|
return True
|
|
return True
|
|
except:
|
|
except:
|
|
return False
|
|
return False
|
|
@@ -167,40 +167,27 @@ class ChatTable:
|
|
self, id: str, share_id: Optional[str]
|
|
self, id: str, share_id: Optional[str]
|
|
) -> Optional[ChatModel]:
|
|
) -> Optional[ChatModel]:
|
|
try:
|
|
try:
|
|
- query = Chat.update(
|
|
|
|
- share_id=share_id,
|
|
|
|
- ).where(Chat.id == id)
|
|
|
|
- query.execute()
|
|
|
|
-
|
|
|
|
- chat = Chat.get(Chat.id == id)
|
|
|
|
- return ChatModel(**model_to_dict(chat))
|
|
|
|
|
|
+ chat = Session.get(Chat, id)
|
|
|
|
+ chat.share_id = share_id
|
|
|
|
+ Session.commit()
|
|
|
|
+ Session.refresh(chat)
|
|
|
|
+ return ChatModel.model_validate(chat)
|
|
except:
|
|
except:
|
|
return None
|
|
return None
|
|
|
|
|
|
def toggle_chat_archive_by_id(self, id: str) -> Optional[ChatModel]:
|
|
def toggle_chat_archive_by_id(self, id: str) -> Optional[ChatModel]:
|
|
try:
|
|
try:
|
|
- chat = self.get_chat_by_id(id)
|
|
|
|
- query = Chat.update(
|
|
|
|
- archived=(not chat.archived),
|
|
|
|
- ).where(Chat.id == id)
|
|
|
|
-
|
|
|
|
- query.execute()
|
|
|
|
-
|
|
|
|
- chat = Chat.get(Chat.id == id)
|
|
|
|
- return ChatModel(**model_to_dict(chat))
|
|
|
|
|
|
+ chat = Session.get(Chat, id)
|
|
|
|
+ chat.archived = not chat.archived
|
|
|
|
+ Session.commit()
|
|
|
|
+ Session.refresh(chat)
|
|
|
|
+ return ChatModel.model_validate(chat)
|
|
except:
|
|
except:
|
|
return None
|
|
return None
|
|
|
|
|
|
def archive_all_chats_by_user_id(self, user_id: str) -> bool:
|
|
def archive_all_chats_by_user_id(self, user_id: str) -> bool:
|
|
try:
|
|
try:
|
|
- chats = self.get_chats_by_user_id(user_id)
|
|
|
|
- for chat in chats:
|
|
|
|
- query = Chat.update(
|
|
|
|
- archived=True,
|
|
|
|
- ).where(Chat.id == chat.id)
|
|
|
|
-
|
|
|
|
- query.execute()
|
|
|
|
-
|
|
|
|
|
|
+ Session.query(Chat).filter_by(user_id=user_id).update({"archived": True})
|
|
return True
|
|
return True
|
|
except:
|
|
except:
|
|
return False
|
|
return False
|
|
@@ -208,15 +195,14 @@ class ChatTable:
|
|
def get_archived_chat_list_by_user_id(
|
|
def get_archived_chat_list_by_user_id(
|
|
self, user_id: str, skip: int = 0, limit: int = 50
|
|
self, user_id: str, skip: int = 0, limit: int = 50
|
|
) -> List[ChatModel]:
|
|
) -> List[ChatModel]:
|
|
- return [
|
|
|
|
- ChatModel(**model_to_dict(chat))
|
|
|
|
- for chat in Chat.select()
|
|
|
|
- .where(Chat.archived == True)
|
|
|
|
- .where(Chat.user_id == user_id)
|
|
|
|
|
|
+ all_chats = (
|
|
|
|
+ Session.query(Chat)
|
|
|
|
+ .filter_by(user_id=user_id, archived=True)
|
|
.order_by(Chat.updated_at.desc())
|
|
.order_by(Chat.updated_at.desc())
|
|
- # .limit(limit)
|
|
|
|
- # .offset(skip)
|
|
|
|
- ]
|
|
|
|
|
|
+ # .limit(limit).offset(skip)
|
|
|
|
+ .all()
|
|
|
|
+ )
|
|
|
|
+ return [ChatModel.model_validate(chat) for chat in all_chats]
|
|
|
|
|
|
def get_chat_list_by_user_id(
|
|
def get_chat_list_by_user_id(
|
|
self,
|
|
self,
|
|
@@ -225,92 +211,80 @@ class ChatTable:
|
|
skip: int = 0,
|
|
skip: int = 0,
|
|
limit: int = 50,
|
|
limit: int = 50,
|
|
) -> List[ChatModel]:
|
|
) -> List[ChatModel]:
|
|
- if include_archived:
|
|
|
|
- return [
|
|
|
|
- ChatModel(**model_to_dict(chat))
|
|
|
|
- for chat in Chat.select()
|
|
|
|
- .where(Chat.user_id == user_id)
|
|
|
|
- .order_by(Chat.updated_at.desc())
|
|
|
|
- # .limit(limit)
|
|
|
|
- # .offset(skip)
|
|
|
|
- ]
|
|
|
|
- else:
|
|
|
|
- return [
|
|
|
|
- ChatModel(**model_to_dict(chat))
|
|
|
|
- for chat in Chat.select()
|
|
|
|
- .where(Chat.archived == False)
|
|
|
|
- .where(Chat.user_id == user_id)
|
|
|
|
- .order_by(Chat.updated_at.desc())
|
|
|
|
- # .limit(limit)
|
|
|
|
- # .offset(skip)
|
|
|
|
- ]
|
|
|
|
|
|
+ query = Session.query(Chat).filter_by(user_id=user_id)
|
|
|
|
+ if not include_archived:
|
|
|
|
+ query = query.filter_by(archived=False)
|
|
|
|
+ all_chats = (
|
|
|
|
+ query.order_by(Chat.updated_at.desc())
|
|
|
|
+ # .limit(limit).offset(skip)
|
|
|
|
+ .all()
|
|
|
|
+ )
|
|
|
|
+ return [ChatModel.model_validate(chat) for chat in all_chats]
|
|
|
|
|
|
def get_chat_list_by_chat_ids(
|
|
def get_chat_list_by_chat_ids(
|
|
self, chat_ids: List[str], skip: int = 0, limit: int = 50
|
|
self, chat_ids: List[str], skip: int = 0, limit: int = 50
|
|
) -> List[ChatModel]:
|
|
) -> List[ChatModel]:
|
|
- return [
|
|
|
|
- ChatModel(**model_to_dict(chat))
|
|
|
|
- for chat in Chat.select()
|
|
|
|
- .where(Chat.archived == False)
|
|
|
|
- .where(Chat.id.in_(chat_ids))
|
|
|
|
|
|
+ all_chats = (
|
|
|
|
+ Session.query(Chat)
|
|
|
|
+ .filter(Chat.id.in_(chat_ids))
|
|
|
|
+ .filter_by(archived=False)
|
|
.order_by(Chat.updated_at.desc())
|
|
.order_by(Chat.updated_at.desc())
|
|
- ]
|
|
|
|
|
|
+ .all()
|
|
|
|
+ )
|
|
|
|
+ return [ChatModel.model_validate(chat) for chat in all_chats]
|
|
|
|
|
|
def get_chat_by_id(self, id: str) -> Optional[ChatModel]:
|
|
def get_chat_by_id(self, id: str) -> Optional[ChatModel]:
|
|
try:
|
|
try:
|
|
- chat = Chat.get(Chat.id == id)
|
|
|
|
- return ChatModel(**model_to_dict(chat))
|
|
|
|
|
|
+ chat = Session.get(Chat, id)
|
|
|
|
+ return ChatModel.model_validate(chat)
|
|
except:
|
|
except:
|
|
return None
|
|
return None
|
|
|
|
|
|
def get_chat_by_share_id(self, id: str) -> Optional[ChatModel]:
|
|
def get_chat_by_share_id(self, id: str) -> Optional[ChatModel]:
|
|
try:
|
|
try:
|
|
- chat = Chat.get(Chat.share_id == id)
|
|
|
|
|
|
+ chat = Session.query(Chat).filter_by(share_id=id).first()
|
|
|
|
|
|
if chat:
|
|
if chat:
|
|
- chat = Chat.get(Chat.id == id)
|
|
|
|
- return ChatModel(**model_to_dict(chat))
|
|
|
|
|
|
+ return self.get_chat_by_id(id)
|
|
else:
|
|
else:
|
|
return None
|
|
return None
|
|
- except:
|
|
|
|
|
|
+ except Exception as e:
|
|
return None
|
|
return None
|
|
|
|
|
|
def get_chat_by_id_and_user_id(self, id: str, user_id: str) -> Optional[ChatModel]:
|
|
def get_chat_by_id_and_user_id(self, id: str, user_id: str) -> Optional[ChatModel]:
|
|
try:
|
|
try:
|
|
- chat = Chat.get(Chat.id == id, Chat.user_id == user_id)
|
|
|
|
- return ChatModel(**model_to_dict(chat))
|
|
|
|
|
|
+ chat = Session.query(Chat).filter_by(id=id, user_id=user_id).first()
|
|
|
|
+ return ChatModel.model_validate(chat)
|
|
except:
|
|
except:
|
|
return None
|
|
return None
|
|
|
|
|
|
def get_chats(self, skip: int = 0, limit: int = 50) -> List[ChatModel]:
|
|
def get_chats(self, skip: int = 0, limit: int = 50) -> List[ChatModel]:
|
|
- return [
|
|
|
|
- ChatModel(**model_to_dict(chat))
|
|
|
|
- for chat in Chat.select().order_by(Chat.updated_at.desc())
|
|
|
|
|
|
+ all_chats = (
|
|
|
|
+ Session.query(Chat)
|
|
# .limit(limit).offset(skip)
|
|
# .limit(limit).offset(skip)
|
|
- ]
|
|
|
|
|
|
+ .order_by(Chat.updated_at.desc())
|
|
|
|
+ )
|
|
|
|
+ return [ChatModel.model_validate(chat) for chat in all_chats]
|
|
|
|
|
|
def get_chats_by_user_id(self, user_id: str) -> List[ChatModel]:
|
|
def get_chats_by_user_id(self, user_id: str) -> List[ChatModel]:
|
|
- return [
|
|
|
|
- ChatModel(**model_to_dict(chat))
|
|
|
|
- for chat in Chat.select()
|
|
|
|
- .where(Chat.user_id == user_id)
|
|
|
|
|
|
+ all_chats = (
|
|
|
|
+ Session.query(Chat)
|
|
|
|
+ .filter_by(user_id=user_id)
|
|
.order_by(Chat.updated_at.desc())
|
|
.order_by(Chat.updated_at.desc())
|
|
- # .limit(limit).offset(skip)
|
|
|
|
- ]
|
|
|
|
|
|
+ )
|
|
|
|
+ return [ChatModel.model_validate(chat) for chat in all_chats]
|
|
|
|
|
|
def get_archived_chats_by_user_id(self, user_id: str) -> List[ChatModel]:
|
|
def get_archived_chats_by_user_id(self, user_id: str) -> List[ChatModel]:
|
|
- return [
|
|
|
|
- ChatModel(**model_to_dict(chat))
|
|
|
|
- for chat in Chat.select()
|
|
|
|
- .where(Chat.archived == True)
|
|
|
|
- .where(Chat.user_id == user_id)
|
|
|
|
|
|
+ all_chats = (
|
|
|
|
+ Session.query(Chat)
|
|
|
|
+ .filter_by(user_id=user_id, archived=True)
|
|
.order_by(Chat.updated_at.desc())
|
|
.order_by(Chat.updated_at.desc())
|
|
- ]
|
|
|
|
|
|
+ )
|
|
|
|
+ return [ChatModel.model_validate(chat) for chat in all_chats]
|
|
|
|
|
|
def delete_chat_by_id(self, id: str) -> bool:
|
|
def delete_chat_by_id(self, id: str) -> bool:
|
|
try:
|
|
try:
|
|
- query = Chat.delete().where((Chat.id == id))
|
|
|
|
- query.execute() # Remove the rows, return number of rows removed.
|
|
|
|
|
|
+ Session.query(Chat).filter_by(id=id).delete()
|
|
|
|
|
|
return True and self.delete_shared_chat_by_chat_id(id)
|
|
return True and self.delete_shared_chat_by_chat_id(id)
|
|
except:
|
|
except:
|
|
@@ -318,8 +292,7 @@ class ChatTable:
|
|
|
|
|
|
def delete_chat_by_id_and_user_id(self, id: str, user_id: str) -> bool:
|
|
def delete_chat_by_id_and_user_id(self, id: str, user_id: str) -> bool:
|
|
try:
|
|
try:
|
|
- query = Chat.delete().where((Chat.id == id) & (Chat.user_id == user_id))
|
|
|
|
- query.execute() # Remove the rows, return number of rows removed.
|
|
|
|
|
|
+ Session.query(Chat).filter_by(id=id, user_id=user_id).delete()
|
|
|
|
|
|
return True and self.delete_shared_chat_by_chat_id(id)
|
|
return True and self.delete_shared_chat_by_chat_id(id)
|
|
except:
|
|
except:
|
|
@@ -327,29 +300,23 @@ class ChatTable:
|
|
|
|
|
|
def delete_chats_by_user_id(self, user_id: str) -> bool:
|
|
def delete_chats_by_user_id(self, user_id: str) -> bool:
|
|
try:
|
|
try:
|
|
-
|
|
|
|
self.delete_shared_chats_by_user_id(user_id)
|
|
self.delete_shared_chats_by_user_id(user_id)
|
|
|
|
|
|
- query = Chat.delete().where(Chat.user_id == user_id)
|
|
|
|
- query.execute() # Remove the rows, return number of rows removed.
|
|
|
|
-
|
|
|
|
|
|
+ Session.query(Chat).filter_by(user_id=user_id).delete()
|
|
return True
|
|
return True
|
|
except:
|
|
except:
|
|
return False
|
|
return False
|
|
|
|
|
|
def delete_shared_chats_by_user_id(self, user_id: str) -> bool:
|
|
def delete_shared_chats_by_user_id(self, user_id: str) -> bool:
|
|
try:
|
|
try:
|
|
- shared_chat_ids = [
|
|
|
|
- f"shared-{chat.id}"
|
|
|
|
- for chat in Chat.select().where(Chat.user_id == user_id)
|
|
|
|
- ]
|
|
|
|
|
|
+ chats_by_user = Session.query(Chat).filter_by(user_id=user_id).all()
|
|
|
|
+ shared_chat_ids = [f"shared-{chat.id}" for chat in chats_by_user]
|
|
|
|
|
|
- query = Chat.delete().where(Chat.user_id << shared_chat_ids)
|
|
|
|
- query.execute() # Remove the rows, return number of rows removed.
|
|
|
|
|
|
+ Session.query(Chat).filter(Chat.user_id.in_(shared_chat_ids)).delete()
|
|
|
|
|
|
return True
|
|
return True
|
|
except:
|
|
except:
|
|
return False
|
|
return False
|
|
|
|
|
|
|
|
|
|
-Chats = ChatTable(DB)
|
|
|
|
|
|
+Chats = ChatTable()
|