2024-01-03 04:51:19 +00:00
|
|
|
from fastapi import Depends, FastAPI, HTTPException, status
|
|
|
|
from datetime import datetime, timedelta
|
|
|
|
from typing import List, Union, Optional
|
|
|
|
|
|
|
|
from fastapi import APIRouter
|
|
|
|
from pydantic import BaseModel
|
|
|
|
import json
|
|
|
|
|
|
|
|
from apps.web.models.prompts import Prompts, PromptForm, PromptModel
|
|
|
|
|
|
|
|
from utils.utils import get_current_user
|
|
|
|
from constants import ERROR_MESSAGES
|
|
|
|
|
|
|
|
router = APIRouter()
|
|
|
|
|
|
|
|
############################
|
|
|
|
# GetPrompts
|
|
|
|
############################
|
|
|
|
|
|
|
|
|
|
|
|
@router.get("/", response_model=List[PromptModel])
|
|
|
|
async def get_prompts(user=Depends(get_current_user)):
|
|
|
|
return Prompts.get_prompts()
|
|
|
|
|
|
|
|
|
|
|
|
############################
|
|
|
|
# CreateNewPrompt
|
|
|
|
############################
|
|
|
|
|
|
|
|
|
|
|
|
@router.post("/create", response_model=Optional[PromptModel])
|
2024-01-03 22:33:57 +00:00
|
|
|
async def create_new_prompt(form_data: PromptForm,
|
|
|
|
user=Depends(get_current_user)):
|
2024-01-03 04:51:19 +00:00
|
|
|
if user.role != "admin":
|
|
|
|
raise HTTPException(
|
|
|
|
status_code=status.HTTP_401_UNAUTHORIZED,
|
|
|
|
detail=ERROR_MESSAGES.ACCESS_PROHIBITED,
|
|
|
|
)
|
|
|
|
|
2024-01-03 05:35:47 +00:00
|
|
|
prompt = Prompts.get_prompt_by_command(form_data.command)
|
|
|
|
if prompt == None:
|
|
|
|
prompt = Prompts.insert_new_prompt(user.id, form_data)
|
|
|
|
|
|
|
|
if prompt:
|
|
|
|
return prompt
|
|
|
|
else:
|
|
|
|
raise HTTPException(
|
|
|
|
status_code=status.HTTP_401_UNAUTHORIZED,
|
|
|
|
detail=ERROR_MESSAGES.DEFAULT(),
|
|
|
|
)
|
2024-01-03 04:51:19 +00:00
|
|
|
else:
|
|
|
|
raise HTTPException(
|
2024-01-03 05:35:47 +00:00
|
|
|
status_code=status.HTTP_400_BAD_REQUEST,
|
|
|
|
detail=ERROR_MESSAGES.COMMAND_TAKEN,
|
2024-01-03 04:51:19 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
############################
|
|
|
|
# GetPromptByCommand
|
|
|
|
############################
|
|
|
|
|
|
|
|
|
|
|
|
@router.get("/{command}", response_model=Optional[PromptModel])
|
|
|
|
async def get_prompt_by_command(command: str, user=Depends(get_current_user)):
|
2024-01-03 05:35:47 +00:00
|
|
|
prompt = Prompts.get_prompt_by_command(f"/{command}")
|
2024-01-03 04:51:19 +00:00
|
|
|
|
|
|
|
if prompt:
|
|
|
|
return prompt
|
|
|
|
else:
|
|
|
|
raise HTTPException(
|
|
|
|
status_code=status.HTTP_401_UNAUTHORIZED,
|
|
|
|
detail=ERROR_MESSAGES.NOT_FOUND,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
############################
|
|
|
|
# UpdatePromptByCommand
|
|
|
|
############################
|
|
|
|
|
|
|
|
|
|
|
|
@router.post("/{command}/update", response_model=Optional[PromptModel])
|
2024-01-03 22:33:57 +00:00
|
|
|
async def update_prompt_by_command(command: str,
|
|
|
|
form_data: PromptForm,
|
|
|
|
user=Depends(get_current_user)):
|
2024-01-03 04:51:19 +00:00
|
|
|
if user.role != "admin":
|
|
|
|
raise HTTPException(
|
|
|
|
status_code=status.HTTP_401_UNAUTHORIZED,
|
|
|
|
detail=ERROR_MESSAGES.ACCESS_PROHIBITED,
|
|
|
|
)
|
|
|
|
|
2024-01-03 05:35:47 +00:00
|
|
|
prompt = Prompts.update_prompt_by_command(f"/{command}", form_data)
|
2024-01-03 04:51:19 +00:00
|
|
|
if prompt:
|
|
|
|
return prompt
|
|
|
|
else:
|
|
|
|
raise HTTPException(
|
|
|
|
status_code=status.HTTP_401_UNAUTHORIZED,
|
|
|
|
detail=ERROR_MESSAGES.ACCESS_PROHIBITED,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
############################
|
|
|
|
# DeletePromptByCommand
|
|
|
|
############################
|
|
|
|
|
|
|
|
|
|
|
|
@router.delete("/{command}/delete", response_model=bool)
|
2024-01-03 22:33:57 +00:00
|
|
|
async def delete_prompt_by_command(command: str,
|
|
|
|
user=Depends(get_current_user)):
|
2024-01-03 04:51:19 +00:00
|
|
|
if user.role != "admin":
|
|
|
|
raise HTTPException(
|
|
|
|
status_code=status.HTTP_401_UNAUTHORIZED,
|
|
|
|
detail=ERROR_MESSAGES.ACCESS_PROHIBITED,
|
|
|
|
)
|
|
|
|
|
2024-01-03 05:35:47 +00:00
|
|
|
result = Prompts.delete_prompt_by_command(f"/{command}")
|
2024-01-03 04:51:19 +00:00
|
|
|
return result
|