chats.py 9.91 KB
Newer Older
Timothy J. Baek's avatar
Timothy J. Baek committed
1
2
3
4
5
6
7
8
9
from pydantic import BaseModel
from typing import List, Union, Optional
from peewee import *
from playhouse.shortcuts import model_to_dict

import json
import uuid
import time

10
from apps.webui.internal.db import DB
Timothy J. Baek's avatar
Timothy J. Baek committed
11
12
13
14
15
16
17
18

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


class Chat(Model):
    id = CharField(unique=True)
Timothy J. Baek's avatar
Timothy J. Baek committed
19
    user_id = CharField()
20
    title = TextField()
Timothy J. Baek's avatar
Timothy J. Baek committed
21
    chat = TextField()  # Save Chat JSON as Text
22

23
24
    created_at = BigIntegerField()
    updated_at = BigIntegerField()
25

26
    share_id = CharField(null=True, unique=True)
Timothy J. Baek's avatar
Timothy J. Baek committed
27
    archived = BooleanField(default=False)
Timothy J. Baek's avatar
Timothy J. Baek committed
28
29
30
31
32
33
34
35
36

    class Meta:
        database = DB


class ChatModel(BaseModel):
    id: str
    user_id: str
    title: str
Timothy J. Baek's avatar
Timothy J. Baek committed
37
    chat: str
38
39
40
41

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

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


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


class ChatForm(BaseModel):
    chat: dict


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


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


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


class ChatTable:
    def __init__(self, db):
        self.db = db
        db.create_tables([Chat])

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

        result = Chat.create(**chat.model_dump())
        return chat if result else None

    def update_chat_by_id(self, id: str, chat: dict) -> Optional[ChatModel]:
        try:
102
103
104
            query = Chat.update(
                chat=json.dumps(chat),
                title=chat["title"] if "title" in chat else "New Chat",
105
                updated_at=int(time.time()),
106
            ).where(Chat.id == id)
Timothy J. Baek's avatar
Timothy J. Baek committed
107
108
109
110
111
112
113
            query.execute()

            chat = Chat.get(Chat.id == id)
            return ChatModel(**model_to_dict(chat))
        except:
            return None

Timothy J. Baek's avatar
Timothy J. Baek committed
114
    def insert_shared_chat_by_chat_id(self, chat_id: str) -> Optional[ChatModel]:
115
116
117
118
119
120
121
122
123
        # Get the existing chat to share
        chat = Chat.get(Chat.id == 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()),
Timothy J. Baek's avatar
Timothy J. Baek committed
124
                "user_id": f"shared-{chat_id}",
125
126
                "title": chat.title,
                "chat": chat.chat,
Timothy J. Baek's avatar
refac  
Timothy J. Baek committed
127
128
                "created_at": chat.created_at,
                "updated_at": int(time.time()),
129
130
131
132
133
134
135
136
137
138
            }
        )
        shared_result = Chat.create(**shared_chat.model_dump())
        # Update the original chat with the share_id
        result = (
            Chat.update(share_id=shared_chat.id).where(Chat.id == chat_id).execute()
        )

        return shared_chat if (shared_result and result) else None

Timothy J. Baek's avatar
Timothy J. Baek committed
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
    def update_shared_chat_by_chat_id(self, chat_id: str) -> Optional[ChatModel]:
        try:
            print("update_shared_chat_by_id")
            chat = Chat.get(Chat.id == chat_id)
            print(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))
        except:
            return None

Timothy J. Baek's avatar
Timothy J. Baek committed
157
158
159
160
161
162
163
164
165
    def delete_shared_chat_by_chat_id(self, chat_id: str) -> bool:
        try:
            query = Chat.delete().where(Chat.user_id == f"shared-{chat_id}")
            query.execute()  # Remove the rows, return number of rows removed.

            return True
        except:
            return False

166
    def update_chat_share_id_by_id(
Timothy J. Baek's avatar
Timothy J. Baek committed
167
        self, id: str, share_id: Optional[str]
168
169
170
171
172
173
174
175
176
177
178
179
    ) -> Optional[ChatModel]:
        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))
        except:
            return None

Timothy J. Baek's avatar
Timothy J. Baek committed
180
181
182
183
184
185
186
187
188
189
190
191
192
193
    def toggle_chat_archive_by_id(self, id: str) -> Optional[ChatModel]:
        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))
        except:
            return None

194
195
196
197
198
199
200
201
202
203
204
205
206
207
    def archive_all_chats_by_user_id(self, user_id: str) -> bool:
        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()

            return True
        except:
            return False

Timothy J. Baek's avatar
Timothy J. Baek committed
208
    def get_archived_chat_list_by_user_id(
209
210
211
212
213
214
215
216
217
218
219
220
        self, user_id: str, skip: int = 0, limit: int = 50
    ) -> List[ChatModel]:
        return [
            ChatModel(**model_to_dict(chat))
            for chat in Chat.select()
            .where(Chat.archived == True)
            .where(Chat.user_id == user_id)
            .order_by(Chat.updated_at.desc())
            # .limit(limit)
            # .offset(skip)
        ]

Timothy J. Baek's avatar
Timothy J. Baek committed
221
    def get_chat_list_by_user_id(
222
223
224
225
226
        self,
        user_id: str,
        include_archived: bool = False,
        skip: int = 0,
        limit: int = 50,
Timothy J. Baek's avatar
Timothy J. Baek committed
227
    ) -> List[ChatModel]:
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
        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)
            ]
Timothy J. Baek's avatar
Timothy J. Baek committed
247

Timothy J. Baek's avatar
Timothy J. Baek committed
248
    def get_chat_list_by_chat_ids(
Timothy J. Baek's avatar
Timothy J. Baek committed
249
250
251
252
253
        self, chat_ids: List[str], skip: int = 0, limit: int = 50
    ) -> List[ChatModel]:
        return [
            ChatModel(**model_to_dict(chat))
            for chat in Chat.select()
Timothy J. Baek's avatar
Timothy J. Baek committed
254
            .where(Chat.archived == False)
Timothy J. Baek's avatar
Timothy J. Baek committed
255
            .where(Chat.id.in_(chat_ids))
256
            .order_by(Chat.updated_at.desc())
Timothy J. Baek's avatar
Timothy J. Baek committed
257
258
        ]

Timothy J. Baek's avatar
Timothy J. Baek committed
259
260
261
262
263
264
265
    def get_chat_by_id(self, id: str) -> Optional[ChatModel]:
        try:
            chat = Chat.get(Chat.id == id)
            return ChatModel(**model_to_dict(chat))
        except:
            return None

266
267
268
269
270
271
272
273
274
275
276
277
    def get_chat_by_share_id(self, id: str) -> Optional[ChatModel]:
        try:
            chat = Chat.get(Chat.share_id == id)

            if chat:
                chat = Chat.get(Chat.id == id)
                return ChatModel(**model_to_dict(chat))
            else:
                return None
        except:
            return None

Timothy J. Baek's avatar
Timothy J. Baek committed
278
    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
279
280
281
282
283
284
285
286
287
        try:
            chat = Chat.get(Chat.id == id, Chat.user_id == user_id)
            return ChatModel(**model_to_dict(chat))
        except:
            return None

    def get_chats(self, skip: int = 0, limit: int = 50) -> List[ChatModel]:
        return [
            ChatModel(**model_to_dict(chat))
Timothy J. Baek's avatar
Timothy J. Baek committed
288
289
290
291
292
293
294
295
296
297
298
            for chat in Chat.select().order_by(Chat.updated_at.desc())
            # .limit(limit).offset(skip)
        ]

    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)
            .order_by(Chat.updated_at.desc())
            # .limit(limit).offset(skip)
Timothy J. Baek's avatar
Timothy J. Baek committed
299
300
        ]

301
302
303
304
305
306
307
308
309
    def delete_chat_by_id(self, id: str) -> bool:
        try:
            query = Chat.delete().where((Chat.id == id))
            query.execute()  # Remove the rows, return number of rows removed.

            return True and self.delete_shared_chat_by_chat_id(id)
        except:
            return False

310
311
    def delete_chat_by_id_and_user_id(self, id: str, user_id: str) -> bool:
        try:
Timothy J. Baek's avatar
Timothy J. Baek committed
312
            query = Chat.delete().where((Chat.id == id) & (Chat.user_id == user_id))
313
314
            query.execute()  # Remove the rows, return number of rows removed.

Timothy J. Baek's avatar
Timothy J. Baek committed
315
            return True and self.delete_shared_chat_by_chat_id(id)
316
317
318
        except:
            return False

319
320
    def delete_chats_by_user_id(self, user_id: str) -> bool:
        try:
321
322
323

            self.delete_shared_chats_by_user_id(user_id)

324
325
326
            query = Chat.delete().where(Chat.user_id == user_id)
            query.execute()  # Remove the rows, return number of rows removed.

327
            return True
Timothy J. Baek's avatar
Timothy J. Baek committed
328
329
330
331
332
333
334
335
336
337
338
339
340
        except:
            return False

    def delete_shared_chats_by_user_id(self, user_id: str) -> bool:
        try:
            shared_chat_ids = [
                f"shared-{chat.id}"
                for chat in Chat.select().where(Chat.user_id == user_id)
            ]

            query = Chat.delete().where(Chat.user_id << shared_chat_ids)
            query.execute()  # Remove the rows, return number of rows removed.

341
342
343
344
            return True
        except:
            return False

Timothy J. Baek's avatar
Timothy J. Baek committed
345
346

Chats = ChatTable(DB)