123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- import json
- from typing import Optional
- from open_webui.apps.webui.models.documents import (
- DocumentForm,
- DocumentResponse,
- Documents,
- DocumentUpdateForm,
- )
- from open_webui.constants import ERROR_MESSAGES
- from fastapi import APIRouter, Depends, HTTPException, status
- from pydantic import BaseModel
- from open_webui.utils.utils import get_admin_user, get_verified_user
- router = APIRouter()
- ############################
- # GetDocuments
- ############################
- @router.get("/", response_model=list[DocumentResponse])
- async def get_documents(user=Depends(get_verified_user)):
- docs = [
- DocumentResponse(
- **{
- **doc.model_dump(),
- "content": json.loads(doc.content if doc.content else "{}"),
- }
- )
- for doc in Documents.get_docs()
- ]
- return docs
- ############################
- # CreateNewDoc
- ############################
- @router.post("/create", response_model=Optional[DocumentResponse])
- async def create_new_doc(form_data: DocumentForm, user=Depends(get_admin_user)):
- doc = Documents.get_doc_by_name(form_data.name)
- if doc is None:
- doc = Documents.insert_new_doc(user.id, form_data)
- if doc:
- return DocumentResponse(
- **{
- **doc.model_dump(),
- "content": json.loads(doc.content if doc.content else "{}"),
- }
- )
- else:
- raise HTTPException(
- status_code=status.HTTP_400_BAD_REQUEST,
- detail=ERROR_MESSAGES.FILE_EXISTS,
- )
- else:
- raise HTTPException(
- status_code=status.HTTP_400_BAD_REQUEST,
- detail=ERROR_MESSAGES.NAME_TAG_TAKEN,
- )
- ############################
- # GetDocByName
- ############################
- @router.get("/doc", response_model=Optional[DocumentResponse])
- async def get_doc_by_name(name: str, user=Depends(get_verified_user)):
- doc = Documents.get_doc_by_name(name)
- if doc:
- return DocumentResponse(
- **{
- **doc.model_dump(),
- "content": json.loads(doc.content if doc.content else "{}"),
- }
- )
- else:
- raise HTTPException(
- status_code=status.HTTP_401_UNAUTHORIZED,
- detail=ERROR_MESSAGES.NOT_FOUND,
- )
- ############################
- # TagDocByName
- ############################
- class TagItem(BaseModel):
- name: str
- class TagDocumentForm(BaseModel):
- name: str
- tags: list[dict]
- @router.post("/doc/tags", response_model=Optional[DocumentResponse])
- async def tag_doc_by_name(form_data: TagDocumentForm, user=Depends(get_verified_user)):
- doc = Documents.update_doc_content_by_name(form_data.name, {"tags": form_data.tags})
- if doc:
- return DocumentResponse(
- **{
- **doc.model_dump(),
- "content": json.loads(doc.content if doc.content else "{}"),
- }
- )
- else:
- raise HTTPException(
- status_code=status.HTTP_401_UNAUTHORIZED,
- detail=ERROR_MESSAGES.NOT_FOUND,
- )
- ############################
- # UpdateDocByName
- ############################
- @router.post("/doc/update", response_model=Optional[DocumentResponse])
- async def update_doc_by_name(
- name: str,
- form_data: DocumentUpdateForm,
- user=Depends(get_admin_user),
- ):
- doc = Documents.update_doc_by_name(name, form_data)
- if doc:
- return DocumentResponse(
- **{
- **doc.model_dump(),
- "content": json.loads(doc.content if doc.content else "{}"),
- }
- )
- else:
- raise HTTPException(
- status_code=status.HTTP_400_BAD_REQUEST,
- detail=ERROR_MESSAGES.NAME_TAG_TAKEN,
- )
- ############################
- # DeleteDocByName
- ############################
- @router.delete("/doc/delete", response_model=bool)
- async def delete_doc_by_name(name: str, user=Depends(get_admin_user)):
- result = Documents.delete_doc_by_name(name)
- return result
|