Spaces:
Build error
Build error
| import black | |
| import logging | |
| import markdown | |
| from open_webui.models.chats import ChatTitleMessagesForm | |
| from open_webui.config import DATA_DIR, ENABLE_ADMIN_EXPORT | |
| from open_webui.constants import ERROR_MESSAGES | |
| from fastapi import APIRouter, Depends, HTTPException, Request, Response, status | |
| from pydantic import BaseModel | |
| from starlette.responses import FileResponse | |
| from open_webui.utils.misc import get_gravatar_url | |
| from open_webui.utils.pdf_generator import PDFGenerator | |
| from open_webui.utils.auth import get_admin_user, get_verified_user | |
| from open_webui.utils.code_interpreter import execute_code_jupyter | |
| log = logging.getLogger(__name__) | |
| router = APIRouter() | |
| async def get_gravatar(email: str, user=Depends(get_verified_user)): | |
| return get_gravatar_url(email) | |
| class CodeForm(BaseModel): | |
| code: str | |
| async def format_code(form_data: CodeForm, user=Depends(get_admin_user)): | |
| try: | |
| formatted_code = black.format_str(form_data.code, mode=black.Mode()) | |
| return {'code': formatted_code} | |
| except black.NothingChanged: | |
| return {'code': form_data.code} | |
| except Exception as e: | |
| raise HTTPException(status_code=400, detail=str(e)) | |
| async def execute_code(request: Request, form_data: CodeForm, user=Depends(get_verified_user)): | |
| if not request.app.state.config.ENABLE_CODE_EXECUTION: | |
| raise HTTPException( | |
| status_code=403, | |
| detail=ERROR_MESSAGES.FEATURE_DISABLED('Code execution'), | |
| ) | |
| if request.app.state.config.CODE_EXECUTION_ENGINE == 'jupyter': | |
| output = await execute_code_jupyter( | |
| request.app.state.config.CODE_EXECUTION_JUPYTER_URL, | |
| form_data.code, | |
| ( | |
| request.app.state.config.CODE_EXECUTION_JUPYTER_AUTH_TOKEN | |
| if request.app.state.config.CODE_EXECUTION_JUPYTER_AUTH == 'token' | |
| else None | |
| ), | |
| ( | |
| request.app.state.config.CODE_EXECUTION_JUPYTER_AUTH_PASSWORD | |
| if request.app.state.config.CODE_EXECUTION_JUPYTER_AUTH == 'password' | |
| else None | |
| ), | |
| request.app.state.config.CODE_EXECUTION_JUPYTER_TIMEOUT, | |
| ) | |
| return output | |
| else: | |
| raise HTTPException( | |
| status_code=400, | |
| detail=ERROR_MESSAGES.DEFAULT('Code execution engine not supported'), | |
| ) | |
| class MarkdownForm(BaseModel): | |
| md: str | |
| async def get_html_from_markdown(form_data: MarkdownForm, user=Depends(get_verified_user)): | |
| return {'html': markdown.markdown(form_data.md)} | |
| class ChatForm(BaseModel): | |
| title: str | |
| messages: list[dict] | |
| async def download_chat_as_pdf(form_data: ChatTitleMessagesForm, user=Depends(get_verified_user)): | |
| try: | |
| pdf_bytes = PDFGenerator(form_data).generate_chat_pdf() | |
| return Response( | |
| content=pdf_bytes, | |
| media_type='application/pdf', | |
| headers={'Content-Disposition': 'attachment;filename=chat.pdf'}, | |
| ) | |
| except Exception as e: | |
| log.exception(f'Error generating PDF: {e}') | |
| raise HTTPException(status_code=400, detail=str(e)) | |
| async def download_db(user=Depends(get_admin_user)): | |
| if not ENABLE_ADMIN_EXPORT: | |
| raise HTTPException( | |
| status_code=status.HTTP_401_UNAUTHORIZED, | |
| detail=ERROR_MESSAGES.ACCESS_PROHIBITED, | |
| ) | |
| from open_webui.internal.db import engine | |
| if engine.name != 'sqlite': | |
| raise HTTPException( | |
| status_code=status.HTTP_400_BAD_REQUEST, | |
| detail=ERROR_MESSAGES.DB_NOT_SQLITE, | |
| ) | |
| return FileResponse( | |
| engine.url.database, | |
| media_type='application/octet-stream', | |
| filename='webui.db', | |
| ) | |