2024-01-03 04:41:37 +00:00
|
|
|
import time
|
2024-08-27 22:10:27 +00:00
|
|
|
from typing import Optional
|
2024-01-03 04:41:37 +00:00
|
|
|
|
2024-09-04 14:54:48 +00:00
|
|
|
from open_webui.apps.webui.internal.db import Base, get_db
|
2024-11-18 14:19:34 +00:00
|
|
|
from open_webui.apps.webui.models.users import Users, UserResponse
|
2024-11-15 09:29:07 +00:00
|
|
|
|
2024-08-27 22:10:27 +00:00
|
|
|
from pydantic import BaseModel, ConfigDict
|
2024-11-15 02:57:25 +00:00
|
|
|
from sqlalchemy import BigInteger, Column, String, Text, JSON
|
2024-01-03 04:41:37 +00:00
|
|
|
|
2024-11-17 01:09:15 +00:00
|
|
|
from open_webui.utils.access_control import has_access
|
|
|
|
|
2024-01-03 04:41:37 +00:00
|
|
|
####################
|
|
|
|
# Prompts DB Schema
|
|
|
|
####################
|
|
|
|
|
|
|
|
|
2024-06-18 13:03:31 +00:00
|
|
|
class Prompt(Base):
|
|
|
|
__tablename__ = "prompt"
|
2024-01-03 04:41:37 +00:00
|
|
|
|
2024-06-18 13:03:31 +00:00
|
|
|
command = Column(String, primary_key=True)
|
|
|
|
user_id = Column(String)
|
2024-06-24 11:21:51 +00:00
|
|
|
title = Column(Text)
|
|
|
|
content = Column(Text)
|
2024-06-18 13:03:31 +00:00
|
|
|
timestamp = Column(BigInteger)
|
2024-01-03 04:41:37 +00:00
|
|
|
|
2024-11-15 02:57:25 +00:00
|
|
|
access_control = Column(JSON, nullable=True) # Controls data access levels.
|
2024-11-15 04:13:43 +00:00
|
|
|
# Defines access control rules for this entry.
|
|
|
|
# - `None`: Public access, available to all users with the "user" role.
|
|
|
|
# - `{}`: Private access, restricted exclusively to the owner.
|
|
|
|
# - Custom permissions: Specific access control for reading and writing;
|
|
|
|
# Can specify group or user-level restrictions:
|
|
|
|
# {
|
|
|
|
# "read": {
|
|
|
|
# "group_ids": ["group_id1", "group_id2"],
|
|
|
|
# "user_ids": ["user_id1", "user_id2"]
|
|
|
|
# },
|
|
|
|
# "write": {
|
|
|
|
# "group_ids": ["group_id1", "group_id2"],
|
|
|
|
# "user_ids": ["user_id1", "user_id2"]
|
|
|
|
# }
|
|
|
|
# }
|
2024-11-15 02:57:25 +00:00
|
|
|
|
2024-01-03 04:41:37 +00:00
|
|
|
|
|
|
|
class PromptModel(BaseModel):
|
|
|
|
command: str
|
|
|
|
user_id: str
|
|
|
|
title: str
|
|
|
|
content: str
|
|
|
|
timestamp: int # timestamp in epoch
|
|
|
|
|
2024-11-15 04:13:43 +00:00
|
|
|
access_control: Optional[dict] = None
|
2024-06-18 13:03:31 +00:00
|
|
|
model_config = ConfigDict(from_attributes=True)
|
|
|
|
|
2024-01-03 04:41:37 +00:00
|
|
|
|
|
|
|
####################
|
|
|
|
# Forms
|
|
|
|
####################
|
|
|
|
|
|
|
|
|
2024-11-18 14:19:34 +00:00
|
|
|
class PromptUserResponse(PromptModel):
|
|
|
|
user: Optional[UserResponse] = None
|
|
|
|
|
|
|
|
|
2024-01-03 04:41:37 +00:00
|
|
|
class PromptForm(BaseModel):
|
|
|
|
command: str
|
|
|
|
title: str
|
|
|
|
content: str
|
2024-11-17 01:49:13 +00:00
|
|
|
access_control: Optional[dict] = None
|
2024-01-03 04:41:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
class PromptsTable:
|
2024-03-31 08:13:39 +00:00
|
|
|
def insert_new_prompt(
|
2024-06-21 12:58:57 +00:00
|
|
|
self, user_id: str, form_data: PromptForm
|
2024-03-31 08:13:39 +00:00
|
|
|
) -> Optional[PromptModel]:
|
2024-06-24 11:06:15 +00:00
|
|
|
prompt = PromptModel(
|
|
|
|
**{
|
|
|
|
"user_id": user_id,
|
2024-11-17 04:52:57 +00:00
|
|
|
**form_data.model_dump(),
|
2024-06-24 11:06:15 +00:00
|
|
|
"timestamp": int(time.time()),
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
try:
|
2024-07-04 06:32:39 +00:00
|
|
|
with get_db() as db:
|
2024-11-17 04:52:57 +00:00
|
|
|
result = Prompt(**prompt.model_dump())
|
2024-07-04 06:32:39 +00:00
|
|
|
db.add(result)
|
|
|
|
db.commit()
|
|
|
|
db.refresh(result)
|
|
|
|
if result:
|
|
|
|
return PromptModel.model_validate(result)
|
|
|
|
else:
|
|
|
|
return None
|
2024-08-27 22:10:27 +00:00
|
|
|
except Exception:
|
2024-06-24 11:06:15 +00:00
|
|
|
return None
|
2024-01-03 04:41:37 +00:00
|
|
|
|
2024-06-21 12:58:57 +00:00
|
|
|
def get_prompt_by_command(self, command: str) -> Optional[PromptModel]:
|
2024-06-24 11:06:15 +00:00
|
|
|
try:
|
2024-07-04 06:32:39 +00:00
|
|
|
with get_db() as db:
|
|
|
|
prompt = db.query(Prompt).filter_by(command=command).first()
|
|
|
|
return PromptModel.model_validate(prompt)
|
2024-08-14 12:38:19 +00:00
|
|
|
except Exception:
|
2024-06-24 11:06:15 +00:00
|
|
|
return None
|
2024-01-03 04:41:37 +00:00
|
|
|
|
2024-11-18 14:19:34 +00:00
|
|
|
def get_prompts(self) -> list[PromptUserResponse]:
|
2024-07-04 06:32:39 +00:00
|
|
|
with get_db() as db:
|
2024-11-20 00:47:35 +00:00
|
|
|
prompts = []
|
|
|
|
|
|
|
|
for prompt in db.query(Prompt).order_by(Prompt.timestamp.desc()).all():
|
|
|
|
user = Users.get_user_by_id(prompt.user_id)
|
|
|
|
prompts.append(
|
|
|
|
PromptUserResponse.model_validate(
|
|
|
|
{
|
|
|
|
**PromptModel.model_validate(prompt).model_dump(),
|
|
|
|
"user": user.model_dump() if user else None,
|
|
|
|
}
|
|
|
|
)
|
2024-11-18 14:19:34 +00:00
|
|
|
)
|
2024-11-20 00:47:35 +00:00
|
|
|
|
|
|
|
return prompts
|
2024-01-03 04:41:37 +00:00
|
|
|
|
2024-11-15 09:29:07 +00:00
|
|
|
def get_prompts_by_user_id(
|
|
|
|
self, user_id: str, permission: str = "write"
|
2024-11-18 14:19:34 +00:00
|
|
|
) -> list[PromptUserResponse]:
|
2024-11-15 09:29:07 +00:00
|
|
|
prompts = self.get_prompts()
|
|
|
|
|
2024-11-17 01:09:15 +00:00
|
|
|
return [
|
|
|
|
prompt
|
|
|
|
for prompt in prompts
|
|
|
|
if prompt.user_id == user_id
|
|
|
|
or has_access(user_id, permission, prompt.access_control)
|
|
|
|
]
|
2024-11-15 09:29:07 +00:00
|
|
|
|
2024-01-03 04:41:37 +00:00
|
|
|
def update_prompt_by_command(
|
2024-06-21 12:58:57 +00:00
|
|
|
self, command: str, form_data: PromptForm
|
2024-03-31 08:13:39 +00:00
|
|
|
) -> Optional[PromptModel]:
|
2024-06-24 11:06:15 +00:00
|
|
|
try:
|
2024-07-04 06:32:39 +00:00
|
|
|
with get_db() as db:
|
|
|
|
prompt = db.query(Prompt).filter_by(command=command).first()
|
|
|
|
prompt.title = form_data.title
|
|
|
|
prompt.content = form_data.content
|
2024-11-17 01:49:13 +00:00
|
|
|
prompt.access_control = form_data.access_control
|
2024-07-04 06:32:39 +00:00
|
|
|
prompt.timestamp = int(time.time())
|
|
|
|
db.commit()
|
|
|
|
return PromptModel.model_validate(prompt)
|
2024-08-14 12:38:19 +00:00
|
|
|
except Exception:
|
2024-06-24 11:06:15 +00:00
|
|
|
return None
|
2024-06-21 12:58:57 +00:00
|
|
|
|
|
|
|
def delete_prompt_by_command(self, command: str) -> bool:
|
2024-06-24 11:06:15 +00:00
|
|
|
try:
|
2024-07-04 06:32:39 +00:00
|
|
|
with get_db() as db:
|
|
|
|
db.query(Prompt).filter_by(command=command).delete()
|
2024-07-06 15:10:58 +00:00
|
|
|
db.commit()
|
|
|
|
|
2024-07-04 06:32:39 +00:00
|
|
|
return True
|
2024-08-14 12:38:19 +00:00
|
|
|
except Exception:
|
2024-06-24 11:06:15 +00:00
|
|
|
return False
|
2024-01-03 04:41:37 +00:00
|
|
|
|
|
|
|
|
2024-06-18 13:03:31 +00:00
|
|
|
Prompts = PromptsTable()
|