chats.py 9.53 KB
Newer Older
1
from pydantic import BaseModel, ConfigDict
Timothy J. Baek's avatar
Timothy J. Baek committed
2
3
4
5
6
7
from typing import List, Union, Optional

import json
import uuid
import time

8
9
from sqlalchemy import Column, String, BigInteger, Boolean

10
from apps.webui.internal.db import Base, Session
11

Timothy J. Baek's avatar
Timothy J. Baek committed
12
13
14
15
16
17

####################
# Chat DB Schema
####################


18
19
class Chat(Base):
    __tablename__ = "chat"
20

21
22
23
24
    id = Column(String, primary_key=True)
    user_id = Column(String)
    title = Column(String)
    chat = Column(String)  # Save Chat JSON as Text
25

26
27
    created_at = Column(BigInteger)
    updated_at = Column(BigInteger)
Timothy J. Baek's avatar
Timothy J. Baek committed
28

29
30
    share_id = Column(String, unique=True, nullable=True)
    archived = Column(Boolean, default=False)
Timothy J. Baek's avatar
Timothy J. Baek committed
31
32
33


class ChatModel(BaseModel):
34
35
    model_config = ConfigDict(from_attributes=True)

Timothy J. Baek's avatar
Timothy J. Baek committed
36
37
38
    id: str
    user_id: str
    title: str
Timothy J. Baek's avatar
Timothy J. Baek committed
39
    chat: str
40
41
42
43

    created_at: int  # timestamp in epoch
    updated_at: int  # timestamp in epoch

44
    share_id: Optional[str] = None
Timothy J. Baek's avatar
Timothy J. Baek committed
45
    archived: bool = False
Timothy J. Baek's avatar
Timothy J. Baek committed
46
47
48
49
50
51
52
53
54
55
56


####################
# Forms
####################


class ChatForm(BaseModel):
    chat: dict


Timothy J. Baek's avatar
Timothy J. Baek committed
57
58
59
60
class ChatTitleForm(BaseModel):
    title: str


61
class ChatResponse(BaseModel):
Timothy J. Baek's avatar
Timothy J. Baek committed
62
    id: str
63
64
65
    user_id: str
    title: str
    chat: dict
66
67
    updated_at: int  # timestamp in epoch
    created_at: int  # timestamp in epoch
68
    share_id: Optional[str] = None  # id of the chat to be shared
69
    archived: bool
Timothy J. Baek's avatar
Timothy J. Baek committed
70
71
72
73
74


class ChatTitleIdResponse(BaseModel):
    id: str
    title: str
75
76
    updated_at: int
    created_at: int
Timothy J. Baek's avatar
Timothy J. Baek committed
77
78
79
80


class ChatTable:

81
    def insert_new_chat(self, user_id: str, form_data: ChatForm) -> Optional[ChatModel]:
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
        id = str(uuid.uuid4())
        chat = ChatModel(
            **{
                "id": id,
                "user_id": user_id,
                "title": (
                    form_data.chat["title"]
                    if "title" in form_data.chat
                    else "New Chat"
                ),
                "chat": json.dumps(form_data.chat),
                "created_at": int(time.time()),
                "updated_at": int(time.time()),
            }
        )

        result = Chat(**chat.model_dump())
        Session.add(result)
        Session.commit()
        Session.refresh(result)
        return ChatModel.model_validate(result) if result else None
Timothy J. Baek's avatar
Timothy J. Baek committed
103

104
    def update_chat_by_id(self, id: str, chat: dict) -> Optional[ChatModel]:
105
106
107
108
109
110
111
112
113
114
115
        try:
            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
116

117
    def insert_shared_chat_by_chat_id(self, chat_id: str) -> Optional[ChatModel]:
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
        # Get the existing chat to share
        chat = Session.get(Chat, chat_id)
        # Check if the chat is already shared
        if chat.share_id:
            return self.get_chat_by_id_and_user_id(chat.share_id, "shared")
        # Create a new chat with the same data, but with a new ID
        shared_chat = ChatModel(
            **{
                "id": str(uuid.uuid4()),
                "user_id": f"shared-{chat_id}",
                "title": chat.title,
                "chat": chat.chat,
                "created_at": chat.created_at,
                "updated_at": int(time.time()),
            }
        )
        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
        result = (
            Session.query(Chat)
            .filter_by(id=chat_id)
            .update({"share_id": shared_chat.id})
        )

        return shared_chat if (shared_result and result) else None
146

147
    def update_shared_chat_by_chat_id(self, chat_id: str) -> Optional[ChatModel]:
148
149
150
151
152
153
154
155
156
157
158
159
        try:
            print("update_shared_chat_by_id")
            chat = Session.get(Chat, chat_id)
            print(chat)
            chat.title = chat.title
            chat.chat = chat.chat
            Session.commit()
            Session.refresh(chat)

            return self.get_chat_by_id(chat.share_id)
        except:
            return None
Timothy J. Baek's avatar
Timothy J. Baek committed
160

161
    def delete_shared_chat_by_chat_id(self, chat_id: str) -> bool:
Timothy J. Baek's avatar
Timothy J. Baek committed
162
        try:
163
            Session.query(Chat).filter_by(user_id=f"shared-{chat_id}").delete()
Timothy J. Baek's avatar
Timothy J. Baek committed
164
165
166
167
            return True
        except:
            return False

168
    def update_chat_share_id_by_id(
169
        self, id: str, share_id: Optional[str]
170
171
    ) -> Optional[ChatModel]:
        try:
172
173
174
175
176
            chat = Session.get(Chat, id)
            chat.share_id = share_id
            Session.commit()
            Session.refresh(chat)
            return ChatModel.model_validate(chat)
177
178
179
        except:
            return None

180
    def toggle_chat_archive_by_id(self, id: str) -> Optional[ChatModel]:
Timothy J. Baek's avatar
Timothy J. Baek committed
181
        try:
182
183
184
185
186
            chat = Session.get(Chat, id)
            chat.archived = not chat.archived
            Session.commit()
            Session.refresh(chat)
            return ChatModel.model_validate(chat)
Timothy J. Baek's avatar
Timothy J. Baek committed
187
188
189
        except:
            return None

190
    def archive_all_chats_by_user_id(self, user_id: str) -> bool:
191
        try:
192
            Session.query(Chat).filter_by(user_id=user_id).update({"archived": True})
193
194
195
196
            return True
        except:
            return False

Timothy J. Baek's avatar
Timothy J. Baek committed
197
    def get_archived_chat_list_by_user_id(
198
        self, user_id: str, skip: int = 0, limit: int = 50
199
    ) -> List[ChatModel]:
200
            all_chats = (
201
                Session.query(Chat)
202
203
204
205
206
207
                .filter_by(user_id=user_id, archived=True)
                .order_by(Chat.updated_at.desc())
                # .limit(limit).offset(skip)
                .all()
            )
            return [ChatModel.model_validate(chat) for chat in all_chats]
208

Timothy J. Baek's avatar
Timothy J. Baek committed
209
    def get_chat_list_by_user_id(
210
211
212
213
214
        self,
        user_id: str,
        include_archived: bool = False,
        skip: int = 0,
        limit: int = 50,
Timothy J. Baek's avatar
Timothy J. Baek committed
215
    ) -> List[ChatModel]:
216
217
218
219
220
221
222
223
224
        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]
Timothy J. Baek's avatar
Timothy J. Baek committed
225

Timothy J. Baek's avatar
Timothy J. Baek committed
226
    def get_chat_list_by_chat_ids(
227
        self, chat_ids: List[str], skip: int = 0, limit: int = 50
Timothy J. Baek's avatar
Timothy J. Baek committed
228
    ) -> List[ChatModel]:
229
230
231
232
233
234
235
236
        all_chats = (
            Session.query(Chat)
            .filter(Chat.id.in_(chat_ids))
            .filter_by(archived=False)
            .order_by(Chat.updated_at.desc())
            .all()
        )
        return [ChatModel.model_validate(chat) for chat in all_chats]
237
238

    def get_chat_by_id(self, id: str) -> Optional[ChatModel]:
Timothy J. Baek's avatar
Timothy J. Baek committed
239
        try:
240
241
            chat = Session.get(Chat, id)
            return ChatModel.model_validate(chat)
Timothy J. Baek's avatar
Timothy J. Baek committed
242
243
244
        except:
            return None

245
    def get_chat_by_share_id(self, id: str) -> Optional[ChatModel]:
246
        try:
247
            chat = Session.query(Chat).filter_by(share_id=id).first()
248

249
250
251
252
            if chat:
                return self.get_chat_by_id(id)
            else:
                return None
253
        except Exception as e:
254
255
            return None

256
    def get_chat_by_id_and_user_id(self, id: str, user_id: str) -> Optional[ChatModel]:
Timothy J. Baek's avatar
Timothy J. Baek committed
257
        try:
258
259
            chat = Session.query(Chat).filter_by(id=id, user_id=user_id).first()
            return ChatModel.model_validate(chat)
Timothy J. Baek's avatar
Timothy J. Baek committed
260
261
262
        except:
            return None

263
    def get_chats(self, skip: int = 0, limit: int = 50) -> List[ChatModel]:
264
265
266
267
268
269
        all_chats = (
            Session.query(Chat)
            # .limit(limit).offset(skip)
            .order_by(Chat.updated_at.desc())
        )
        return [ChatModel.model_validate(chat) for chat in all_chats]
270

271
    def get_chats_by_user_id(self, user_id: str) -> List[ChatModel]:
272
273
274
275
276
277
        all_chats = (
            Session.query(Chat)
            .filter_by(user_id=user_id)
            .order_by(Chat.updated_at.desc())
        )
        return [ChatModel.model_validate(chat) for chat in all_chats]
278

279
    def get_archived_chats_by_user_id(self, user_id: str) -> List[ChatModel]:
280
281
282
283
284
285
        all_chats = (
            Session.query(Chat)
            .filter_by(user_id=user_id, archived=True)
            .order_by(Chat.updated_at.desc())
        )
        return [ChatModel.model_validate(chat) for chat in all_chats]
286
287

    def delete_chat_by_id(self, id: str) -> bool:
288
        try:
289
            Session.query(Chat).filter_by(id=id).delete()
290

291
            return True and self.delete_shared_chat_by_chat_id(id)
292
293
294
        except:
            return False

295
    def delete_chat_by_id_and_user_id(self, id: str, user_id: str) -> bool:
296
        try:
297
            Session.query(Chat).filter_by(id=id, user_id=user_id).delete()
298

299
            return True and self.delete_shared_chat_by_chat_id(id)
300
301
302
        except:
            return False

303
    def delete_chats_by_user_id(self, user_id: str) -> bool:
304
        try:
305
            self.delete_shared_chats_by_user_id(user_id)
306

307
            Session.query(Chat).filter_by(user_id=user_id).delete()
308
            return True
Timothy J. Baek's avatar
Timothy J. Baek committed
309
310
311
        except:
            return False

312
    def delete_shared_chats_by_user_id(self, user_id: str) -> bool:
Timothy J. Baek's avatar
Timothy J. Baek committed
313
        try:
314
315
            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]
Timothy J. Baek's avatar
Timothy J. Baek committed
316

317
            Session.query(Chat).filter(Chat.user_id.in_(shared_chat_ids)).delete()
Timothy J. Baek's avatar
Timothy J. Baek committed
318

319
320
321
322
            return True
        except:
            return False

Timothy J. Baek's avatar
Timothy J. Baek committed
323

324
Chats = ChatTable()