2024-08-28 00:10:27 +02:00
|
|
|
from typing import Optional
|
2024-01-02 20:51:19 -08:00
|
|
|
|
2024-12-10 00:54:13 -08:00
|
|
|
from open_webui.models.prompts import (
|
2024-11-18 06:19:34 -08:00
|
|
|
PromptForm,
|
|
|
|
|
PromptUserResponse,
|
|
|
|
|
PromptModel,
|
|
|
|
|
Prompts,
|
|
|
|
|
)
|
2024-09-04 16:54:48 +02:00
|
|
|
from open_webui.constants import ERROR_MESSAGES
|
2024-11-17 03:04:31 -08:00
|
|
|
from fastapi import APIRouter, Depends, HTTPException, status, Request
|
2024-12-08 16:01:56 -08:00
|
|
|
from open_webui.utils.auth import get_admin_user, get_verified_user
|
2024-11-17 03:04:31 -08:00
|
|
|
from open_webui.utils.access_control import has_access, has_permission
|
2024-01-02 20:51:19 -08:00
|
|
|
|
|
|
|
|
router = APIRouter()
|
|
|
|
|
|
|
|
|
|
############################
|
|
|
|
|
# GetPrompts
|
|
|
|
|
############################
|
|
|
|
|
|
|
|
|
|
|
2024-08-14 13:46:31 +01:00
|
|
|
@router.get("/", response_model=list[PromptModel])
|
2024-06-27 11:29:59 -07:00
|
|
|
async def get_prompts(user=Depends(get_verified_user)):
|
2024-11-16 17:09:15 -08:00
|
|
|
if user.role == "admin":
|
|
|
|
|
prompts = Prompts.get_prompts()
|
|
|
|
|
else:
|
|
|
|
|
prompts = Prompts.get_prompts_by_user_id(user.id, "read")
|
|
|
|
|
|
|
|
|
|
return prompts
|
|
|
|
|
|
|
|
|
|
|
2024-11-18 06:19:34 -08:00
|
|
|
@router.get("/list", response_model=list[PromptUserResponse])
|
2024-11-16 17:09:15 -08:00
|
|
|
async def get_prompt_list(user=Depends(get_verified_user)):
|
|
|
|
|
if user.role == "admin":
|
|
|
|
|
prompts = Prompts.get_prompts()
|
|
|
|
|
else:
|
|
|
|
|
prompts = Prompts.get_prompts_by_user_id(user.id, "write")
|
|
|
|
|
|
|
|
|
|
return prompts
|
2024-01-02 20:51:19 -08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
############################
|
|
|
|
|
# CreateNewPrompt
|
|
|
|
|
############################
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@router.post("/create", response_model=Optional[PromptModel])
|
2024-11-17 03:04:31 -08:00
|
|
|
async def create_new_prompt(
|
|
|
|
|
request: Request, form_data: PromptForm, user=Depends(get_verified_user)
|
|
|
|
|
):
|
|
|
|
|
if user.role != "admin" and not has_permission(
|
|
|
|
|
user.id, "workspace.prompts", request.app.state.config.USER_PERMISSIONS
|
|
|
|
|
):
|
|
|
|
|
raise HTTPException(
|
|
|
|
|
status_code=status.HTTP_401_UNAUTHORIZED,
|
|
|
|
|
detail=ERROR_MESSAGES.UNAUTHORIZED,
|
|
|
|
|
)
|
|
|
|
|
|
2024-06-21 14:58:57 +02:00
|
|
|
prompt = Prompts.get_prompt_by_command(form_data.command)
|
2024-08-14 13:39:53 +01:00
|
|
|
if prompt is None:
|
2024-06-21 14:58:57 +02:00
|
|
|
prompt = Prompts.insert_new_prompt(user.id, form_data)
|
2024-01-02 21:35:47 -08:00
|
|
|
|
|
|
|
|
if prompt:
|
|
|
|
|
return prompt
|
2024-01-02 20:51:19 -08:00
|
|
|
raise HTTPException(
|
2024-01-02 21:35:47 -08:00
|
|
|
status_code=status.HTTP_400_BAD_REQUEST,
|
2024-02-08 18:05:01 -06:00
|
|
|
detail=ERROR_MESSAGES.DEFAULT(),
|
2024-01-02 20:51:19 -08:00
|
|
|
)
|
2024-02-08 18:05:01 -06:00
|
|
|
raise HTTPException(
|
|
|
|
|
status_code=status.HTTP_400_BAD_REQUEST,
|
|
|
|
|
detail=ERROR_MESSAGES.COMMAND_TAKEN,
|
|
|
|
|
)
|
2024-01-02 20:51:19 -08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
############################
|
|
|
|
|
# GetPromptByCommand
|
|
|
|
|
############################
|
|
|
|
|
|
|
|
|
|
|
2024-01-06 17:55:41 -08:00
|
|
|
@router.get("/command/{command}", response_model=Optional[PromptModel])
|
2024-06-27 11:29:59 -07:00
|
|
|
async def get_prompt_by_command(command: str, user=Depends(get_verified_user)):
|
2024-06-21 14:58:57 +02:00
|
|
|
prompt = Prompts.get_prompt_by_command(f"/{command}")
|
2024-01-02 20:51:19 -08:00
|
|
|
|
|
|
|
|
if prompt:
|
2024-11-16 18:00:49 -08:00
|
|
|
if (
|
|
|
|
|
user.role == "admin"
|
|
|
|
|
or prompt.user_id == user.id
|
|
|
|
|
or has_access(user.id, "read", prompt.access_control)
|
|
|
|
|
):
|
|
|
|
|
return prompt
|
2024-01-02 20:51:19 -08:00
|
|
|
else:
|
|
|
|
|
raise HTTPException(
|
|
|
|
|
status_code=status.HTTP_401_UNAUTHORIZED,
|
|
|
|
|
detail=ERROR_MESSAGES.NOT_FOUND,
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
############################
|
|
|
|
|
# UpdatePromptByCommand
|
|
|
|
|
############################
|
|
|
|
|
|
|
|
|
|
|
2024-01-06 17:55:41 -08:00
|
|
|
@router.post("/command/{command}/update", response_model=Optional[PromptModel])
|
|
|
|
|
async def update_prompt_by_command(
|
2024-06-18 15:03:31 +02:00
|
|
|
command: str,
|
|
|
|
|
form_data: PromptForm,
|
2024-11-16 17:09:15 -08:00
|
|
|
user=Depends(get_verified_user),
|
2024-01-06 17:55:41 -08:00
|
|
|
):
|
2024-11-16 18:00:49 -08:00
|
|
|
prompt = Prompts.get_prompt_by_command(f"/{command}")
|
|
|
|
|
if not prompt:
|
|
|
|
|
raise HTTPException(
|
|
|
|
|
status_code=status.HTTP_401_UNAUTHORIZED,
|
|
|
|
|
detail=ERROR_MESSAGES.NOT_FOUND,
|
|
|
|
|
)
|
2025-01-19 11:59:07 -08:00
|
|
|
|
2025-01-10 18:44:26 +00:00
|
|
|
# Is the user the original creator, in a group with write access, or an admin
|
2025-01-19 11:59:07 -08:00
|
|
|
if (
|
|
|
|
|
prompt.user_id != user.id
|
|
|
|
|
and not has_access(user.id, "write", prompt.access_control)
|
|
|
|
|
and user.role != "admin"
|
|
|
|
|
):
|
2024-11-16 18:00:49 -08:00
|
|
|
raise HTTPException(
|
|
|
|
|
status_code=status.HTTP_401_UNAUTHORIZED,
|
|
|
|
|
detail=ERROR_MESSAGES.ACCESS_PROHIBITED,
|
|
|
|
|
)
|
|
|
|
|
|
2024-06-21 14:58:57 +02:00
|
|
|
prompt = Prompts.update_prompt_by_command(f"/{command}", form_data)
|
2024-01-02 20:51:19 -08:00
|
|
|
if prompt:
|
|
|
|
|
return prompt
|
|
|
|
|
else:
|
|
|
|
|
raise HTTPException(
|
|
|
|
|
status_code=status.HTTP_401_UNAUTHORIZED,
|
|
|
|
|
detail=ERROR_MESSAGES.ACCESS_PROHIBITED,
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
############################
|
|
|
|
|
# DeletePromptByCommand
|
|
|
|
|
############################
|
|
|
|
|
|
|
|
|
|
|
2024-01-06 17:55:41 -08:00
|
|
|
@router.delete("/command/{command}/delete", response_model=bool)
|
2024-11-16 17:09:15 -08:00
|
|
|
async def delete_prompt_by_command(command: str, user=Depends(get_verified_user)):
|
2024-11-16 18:00:49 -08:00
|
|
|
prompt = Prompts.get_prompt_by_command(f"/{command}")
|
|
|
|
|
if not prompt:
|
|
|
|
|
raise HTTPException(
|
|
|
|
|
status_code=status.HTTP_401_UNAUTHORIZED,
|
|
|
|
|
detail=ERROR_MESSAGES.NOT_FOUND,
|
|
|
|
|
)
|
|
|
|
|
|
2025-01-27 18:11:52 +00:00
|
|
|
if (
|
|
|
|
|
prompt.user_id != user.id
|
|
|
|
|
and not has_access(user.id, "write", prompt.access_control)
|
|
|
|
|
and user.role != "admin"
|
|
|
|
|
):
|
2024-11-16 18:00:49 -08:00
|
|
|
raise HTTPException(
|
|
|
|
|
status_code=status.HTTP_401_UNAUTHORIZED,
|
|
|
|
|
detail=ERROR_MESSAGES.ACCESS_PROHIBITED,
|
|
|
|
|
)
|
|
|
|
|
|
2024-06-21 14:58:57 +02:00
|
|
|
result = Prompts.delete_prompt_by_command(f"/{command}")
|
2024-01-02 20:51:19 -08:00
|
|
|
return result
|