123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492 |
- import logging
- from fastapi import APIRouter, Depends, Request, HTTPException
- from pydantic import BaseModel, ConfigDict
- import aiohttp
- from typing import Optional
- from open_webui.utils.auth import get_admin_user, get_verified_user
- from open_webui.config import get_config, save_config
- from open_webui.config import BannerModel
- from open_webui.utils.tools import (
- get_tool_server_data,
- get_tool_server_url,
- set_tool_servers,
- )
- from open_webui.utils.mcp.client import MCPClient
- from open_webui.env import SRC_LOG_LEVELS
- from open_webui.utils.oauth import (
- get_discovery_urls,
- get_oauth_client_info_with_dynamic_client_registration,
- encrypt_data,
- decrypt_data,
- OAuthClientInformationFull,
- )
- from mcp.shared.auth import OAuthMetadata
- router = APIRouter()
- log = logging.getLogger(__name__)
- log.setLevel(SRC_LOG_LEVELS["MAIN"])
- ############################
- # ImportConfig
- ############################
- class ImportConfigForm(BaseModel):
- config: dict
- @router.post("/import", response_model=dict)
- async def import_config(form_data: ImportConfigForm, user=Depends(get_admin_user)):
- save_config(form_data.config)
- return get_config()
- ############################
- # ExportConfig
- ############################
- @router.get("/export", response_model=dict)
- async def export_config(user=Depends(get_admin_user)):
- return get_config()
- ############################
- # Connections Config
- ############################
- class ConnectionsConfigForm(BaseModel):
- ENABLE_DIRECT_CONNECTIONS: bool
- ENABLE_BASE_MODELS_CACHE: bool
- @router.get("/connections", response_model=ConnectionsConfigForm)
- async def get_connections_config(request: Request, user=Depends(get_admin_user)):
- return {
- "ENABLE_DIRECT_CONNECTIONS": request.app.state.config.ENABLE_DIRECT_CONNECTIONS,
- "ENABLE_BASE_MODELS_CACHE": request.app.state.config.ENABLE_BASE_MODELS_CACHE,
- }
- @router.post("/connections", response_model=ConnectionsConfigForm)
- async def set_connections_config(
- request: Request,
- form_data: ConnectionsConfigForm,
- user=Depends(get_admin_user),
- ):
- request.app.state.config.ENABLE_DIRECT_CONNECTIONS = (
- form_data.ENABLE_DIRECT_CONNECTIONS
- )
- request.app.state.config.ENABLE_BASE_MODELS_CACHE = (
- form_data.ENABLE_BASE_MODELS_CACHE
- )
- return {
- "ENABLE_DIRECT_CONNECTIONS": request.app.state.config.ENABLE_DIRECT_CONNECTIONS,
- "ENABLE_BASE_MODELS_CACHE": request.app.state.config.ENABLE_BASE_MODELS_CACHE,
- }
- class OAuthClientRegistrationForm(BaseModel):
- url: str
- client_id: str
- client_name: Optional[str] = None
- @router.post("/oauth/clients/register")
- async def register_oauth_client(
- request: Request,
- form_data: OAuthClientRegistrationForm,
- type: Optional[str] = None,
- user=Depends(get_admin_user),
- ):
- try:
- oauth_client_id = form_data.client_id
- if type:
- oauth_client_id = f"{type}:{form_data.client_id}"
- oauth_client_info = (
- await get_oauth_client_info_with_dynamic_client_registration(
- request, oauth_client_id, form_data.url
- )
- )
- return {
- "status": True,
- "oauth_client_info": encrypt_data(
- oauth_client_info.model_dump(mode="json")
- ),
- }
- except Exception as e:
- log.debug(f"Failed to register OAuth client: {e}")
- raise HTTPException(
- status_code=400,
- detail=f"Failed to register OAuth client",
- )
- ############################
- # ToolServers Config
- ############################
- class ToolServerConnection(BaseModel):
- url: str
- path: str
- type: Optional[str] = "openapi" # openapi, mcp
- auth_type: Optional[str]
- key: Optional[str]
- config: Optional[dict]
- model_config = ConfigDict(extra="allow")
- class ToolServersConfigForm(BaseModel):
- TOOL_SERVER_CONNECTIONS: list[ToolServerConnection]
- @router.get("/tool_servers", response_model=ToolServersConfigForm)
- async def get_tool_servers_config(request: Request, user=Depends(get_admin_user)):
- return {
- "TOOL_SERVER_CONNECTIONS": request.app.state.config.TOOL_SERVER_CONNECTIONS,
- }
- @router.post("/tool_servers", response_model=ToolServersConfigForm)
- async def set_tool_servers_config(
- request: Request,
- form_data: ToolServersConfigForm,
- user=Depends(get_admin_user),
- ):
- request.app.state.config.TOOL_SERVER_CONNECTIONS = [
- connection.model_dump() for connection in form_data.TOOL_SERVER_CONNECTIONS
- ]
- await set_tool_servers(request)
- for connection in request.app.state.config.TOOL_SERVER_CONNECTIONS:
- server_type = connection.get("type", "openapi")
- if server_type == "mcp":
- server_id = connection.get("info", {}).get("id")
- auth_type = connection.get("auth_type", "none")
- if auth_type == "oauth_2.1" and server_id:
- try:
- oauth_client_info = connection.get("info", {}).get(
- "oauth_client_info", ""
- )
- oauth_client_info = decrypt_data(oauth_client_info)
- await request.app.state.oauth_client_manager.add_client(
- f"{server_type}:{server_id}",
- OAuthClientInformationFull(**oauth_client_info),
- )
- except Exception as e:
- log.debug(f"Failed to add OAuth client for MCP tool server: {e}")
- continue
- return {
- "TOOL_SERVER_CONNECTIONS": request.app.state.config.TOOL_SERVER_CONNECTIONS,
- }
- @router.post("/tool_servers/verify")
- async def verify_tool_servers_config(
- request: Request, form_data: ToolServerConnection, user=Depends(get_admin_user)
- ):
- """
- Verify the connection to the tool server.
- """
- try:
- if form_data.type == "mcp":
- if form_data.auth_type == "oauth_2.1":
- discovery_urls = get_discovery_urls(form_data.url)
- for discovery_url in discovery_urls:
- log.debug(
- f"Trying to fetch OAuth 2.1 discovery document from {discovery_url}"
- )
- async with aiohttp.ClientSession() as session:
- async with session.get(
- discovery_url
- ) as oauth_server_metadata_response:
- if oauth_server_metadata_response.status == 200:
- try:
- oauth_server_metadata = (
- OAuthMetadata.model_validate(
- await oauth_server_metadata_response.json()
- )
- )
- return {
- "status": True,
- "oauth_server_metadata": oauth_server_metadata.model_dump(
- mode="json"
- ),
- }
- except Exception as e:
- log.info(
- f"Failed to parse OAuth 2.1 discovery document: {e}"
- )
- raise HTTPException(
- status_code=400,
- detail=f"Failed to parse OAuth 2.1 discovery document from {discovery_url}",
- )
- raise HTTPException(
- status_code=400,
- detail=f"Failed to fetch OAuth 2.1 discovery document from {discovery_urls}",
- )
- else:
- try:
- client = MCPClient()
- headers = None
- token = None
- if form_data.auth_type == "bearer":
- token = form_data.key
- elif form_data.auth_type == "session":
- token = request.state.token.credentials
- elif form_data.auth_type == "system_oauth":
- try:
- if request.cookies.get("oauth_session_id", None):
- token = await request.app.state.oauth_manager.get_oauth_token(
- user.id,
- request.cookies.get("oauth_session_id", None),
- )
- except Exception as e:
- pass
- if token:
- headers = {"Authorization": f"Bearer {token}"}
- await client.connect(form_data.url, headers=headers)
- specs = await client.list_tool_specs()
- return {
- "status": True,
- "specs": specs,
- }
- except Exception as e:
- log.debug(f"Failed to create MCP client: {e}")
- raise HTTPException(
- status_code=400,
- detail=f"Failed to create MCP client",
- )
- finally:
- if client:
- await client.disconnect()
- else: # openapi
- token = None
- if form_data.auth_type == "bearer":
- token = form_data.key
- elif form_data.auth_type == "session":
- token = request.state.token.credentials
- elif form_data.auth_type == "system_oauth":
- try:
- if request.cookies.get("oauth_session_id", None):
- token = await request.app.state.oauth_manager.get_oauth_token(
- user.id,
- request.cookies.get("oauth_session_id", None),
- )
- except Exception as e:
- pass
- url = get_tool_server_url(form_data.url, form_data.path)
- return await get_tool_server_data(token, url)
- except HTTPException as e:
- raise e
- except Exception as e:
- log.debug(f"Failed to connect to the tool server: {e}")
- raise HTTPException(
- status_code=400,
- detail=f"Failed to connect to the tool server",
- )
- ############################
- # CodeInterpreterConfig
- ############################
- class CodeInterpreterConfigForm(BaseModel):
- ENABLE_CODE_EXECUTION: bool
- CODE_EXECUTION_ENGINE: str
- CODE_EXECUTION_JUPYTER_URL: Optional[str]
- CODE_EXECUTION_JUPYTER_AUTH: Optional[str]
- CODE_EXECUTION_JUPYTER_AUTH_TOKEN: Optional[str]
- CODE_EXECUTION_JUPYTER_AUTH_PASSWORD: Optional[str]
- CODE_EXECUTION_JUPYTER_TIMEOUT: Optional[int]
- ENABLE_CODE_INTERPRETER: bool
- CODE_INTERPRETER_ENGINE: str
- CODE_INTERPRETER_PROMPT_TEMPLATE: Optional[str]
- CODE_INTERPRETER_JUPYTER_URL: Optional[str]
- CODE_INTERPRETER_JUPYTER_AUTH: Optional[str]
- CODE_INTERPRETER_JUPYTER_AUTH_TOKEN: Optional[str]
- CODE_INTERPRETER_JUPYTER_AUTH_PASSWORD: Optional[str]
- CODE_INTERPRETER_JUPYTER_TIMEOUT: Optional[int]
- @router.get("/code_execution", response_model=CodeInterpreterConfigForm)
- async def get_code_execution_config(request: Request, user=Depends(get_admin_user)):
- return {
- "ENABLE_CODE_EXECUTION": request.app.state.config.ENABLE_CODE_EXECUTION,
- "CODE_EXECUTION_ENGINE": request.app.state.config.CODE_EXECUTION_ENGINE,
- "CODE_EXECUTION_JUPYTER_URL": request.app.state.config.CODE_EXECUTION_JUPYTER_URL,
- "CODE_EXECUTION_JUPYTER_AUTH": request.app.state.config.CODE_EXECUTION_JUPYTER_AUTH,
- "CODE_EXECUTION_JUPYTER_AUTH_TOKEN": request.app.state.config.CODE_EXECUTION_JUPYTER_AUTH_TOKEN,
- "CODE_EXECUTION_JUPYTER_AUTH_PASSWORD": request.app.state.config.CODE_EXECUTION_JUPYTER_AUTH_PASSWORD,
- "CODE_EXECUTION_JUPYTER_TIMEOUT": request.app.state.config.CODE_EXECUTION_JUPYTER_TIMEOUT,
- "ENABLE_CODE_INTERPRETER": request.app.state.config.ENABLE_CODE_INTERPRETER,
- "CODE_INTERPRETER_ENGINE": request.app.state.config.CODE_INTERPRETER_ENGINE,
- "CODE_INTERPRETER_PROMPT_TEMPLATE": request.app.state.config.CODE_INTERPRETER_PROMPT_TEMPLATE,
- "CODE_INTERPRETER_JUPYTER_URL": request.app.state.config.CODE_INTERPRETER_JUPYTER_URL,
- "CODE_INTERPRETER_JUPYTER_AUTH": request.app.state.config.CODE_INTERPRETER_JUPYTER_AUTH,
- "CODE_INTERPRETER_JUPYTER_AUTH_TOKEN": request.app.state.config.CODE_INTERPRETER_JUPYTER_AUTH_TOKEN,
- "CODE_INTERPRETER_JUPYTER_AUTH_PASSWORD": request.app.state.config.CODE_INTERPRETER_JUPYTER_AUTH_PASSWORD,
- "CODE_INTERPRETER_JUPYTER_TIMEOUT": request.app.state.config.CODE_INTERPRETER_JUPYTER_TIMEOUT,
- }
- @router.post("/code_execution", response_model=CodeInterpreterConfigForm)
- async def set_code_execution_config(
- request: Request, form_data: CodeInterpreterConfigForm, user=Depends(get_admin_user)
- ):
- request.app.state.config.ENABLE_CODE_EXECUTION = form_data.ENABLE_CODE_EXECUTION
- request.app.state.config.CODE_EXECUTION_ENGINE = form_data.CODE_EXECUTION_ENGINE
- request.app.state.config.CODE_EXECUTION_JUPYTER_URL = (
- form_data.CODE_EXECUTION_JUPYTER_URL
- )
- request.app.state.config.CODE_EXECUTION_JUPYTER_AUTH = (
- form_data.CODE_EXECUTION_JUPYTER_AUTH
- )
- request.app.state.config.CODE_EXECUTION_JUPYTER_AUTH_TOKEN = (
- form_data.CODE_EXECUTION_JUPYTER_AUTH_TOKEN
- )
- request.app.state.config.CODE_EXECUTION_JUPYTER_AUTH_PASSWORD = (
- form_data.CODE_EXECUTION_JUPYTER_AUTH_PASSWORD
- )
- request.app.state.config.CODE_EXECUTION_JUPYTER_TIMEOUT = (
- form_data.CODE_EXECUTION_JUPYTER_TIMEOUT
- )
- request.app.state.config.ENABLE_CODE_INTERPRETER = form_data.ENABLE_CODE_INTERPRETER
- request.app.state.config.CODE_INTERPRETER_ENGINE = form_data.CODE_INTERPRETER_ENGINE
- request.app.state.config.CODE_INTERPRETER_PROMPT_TEMPLATE = (
- form_data.CODE_INTERPRETER_PROMPT_TEMPLATE
- )
- request.app.state.config.CODE_INTERPRETER_JUPYTER_URL = (
- form_data.CODE_INTERPRETER_JUPYTER_URL
- )
- request.app.state.config.CODE_INTERPRETER_JUPYTER_AUTH = (
- form_data.CODE_INTERPRETER_JUPYTER_AUTH
- )
- request.app.state.config.CODE_INTERPRETER_JUPYTER_AUTH_TOKEN = (
- form_data.CODE_INTERPRETER_JUPYTER_AUTH_TOKEN
- )
- request.app.state.config.CODE_INTERPRETER_JUPYTER_AUTH_PASSWORD = (
- form_data.CODE_INTERPRETER_JUPYTER_AUTH_PASSWORD
- )
- request.app.state.config.CODE_INTERPRETER_JUPYTER_TIMEOUT = (
- form_data.CODE_INTERPRETER_JUPYTER_TIMEOUT
- )
- return {
- "ENABLE_CODE_EXECUTION": request.app.state.config.ENABLE_CODE_EXECUTION,
- "CODE_EXECUTION_ENGINE": request.app.state.config.CODE_EXECUTION_ENGINE,
- "CODE_EXECUTION_JUPYTER_URL": request.app.state.config.CODE_EXECUTION_JUPYTER_URL,
- "CODE_EXECUTION_JUPYTER_AUTH": request.app.state.config.CODE_EXECUTION_JUPYTER_AUTH,
- "CODE_EXECUTION_JUPYTER_AUTH_TOKEN": request.app.state.config.CODE_EXECUTION_JUPYTER_AUTH_TOKEN,
- "CODE_EXECUTION_JUPYTER_AUTH_PASSWORD": request.app.state.config.CODE_EXECUTION_JUPYTER_AUTH_PASSWORD,
- "CODE_EXECUTION_JUPYTER_TIMEOUT": request.app.state.config.CODE_EXECUTION_JUPYTER_TIMEOUT,
- "ENABLE_CODE_INTERPRETER": request.app.state.config.ENABLE_CODE_INTERPRETER,
- "CODE_INTERPRETER_ENGINE": request.app.state.config.CODE_INTERPRETER_ENGINE,
- "CODE_INTERPRETER_PROMPT_TEMPLATE": request.app.state.config.CODE_INTERPRETER_PROMPT_TEMPLATE,
- "CODE_INTERPRETER_JUPYTER_URL": request.app.state.config.CODE_INTERPRETER_JUPYTER_URL,
- "CODE_INTERPRETER_JUPYTER_AUTH": request.app.state.config.CODE_INTERPRETER_JUPYTER_AUTH,
- "CODE_INTERPRETER_JUPYTER_AUTH_TOKEN": request.app.state.config.CODE_INTERPRETER_JUPYTER_AUTH_TOKEN,
- "CODE_INTERPRETER_JUPYTER_AUTH_PASSWORD": request.app.state.config.CODE_INTERPRETER_JUPYTER_AUTH_PASSWORD,
- "CODE_INTERPRETER_JUPYTER_TIMEOUT": request.app.state.config.CODE_INTERPRETER_JUPYTER_TIMEOUT,
- }
- ############################
- # SetDefaultModels
- ############################
- class ModelsConfigForm(BaseModel):
- DEFAULT_MODELS: Optional[str]
- MODEL_ORDER_LIST: Optional[list[str]]
- @router.get("/models", response_model=ModelsConfigForm)
- async def get_models_config(request: Request, user=Depends(get_admin_user)):
- return {
- "DEFAULT_MODELS": request.app.state.config.DEFAULT_MODELS,
- "MODEL_ORDER_LIST": request.app.state.config.MODEL_ORDER_LIST,
- }
- @router.post("/models", response_model=ModelsConfigForm)
- async def set_models_config(
- request: Request, form_data: ModelsConfigForm, user=Depends(get_admin_user)
- ):
- request.app.state.config.DEFAULT_MODELS = form_data.DEFAULT_MODELS
- request.app.state.config.MODEL_ORDER_LIST = form_data.MODEL_ORDER_LIST
- return {
- "DEFAULT_MODELS": request.app.state.config.DEFAULT_MODELS,
- "MODEL_ORDER_LIST": request.app.state.config.MODEL_ORDER_LIST,
- }
- class PromptSuggestion(BaseModel):
- title: list[str]
- content: str
- class SetDefaultSuggestionsForm(BaseModel):
- suggestions: list[PromptSuggestion]
- @router.post("/suggestions", response_model=list[PromptSuggestion])
- async def set_default_suggestions(
- request: Request,
- form_data: SetDefaultSuggestionsForm,
- user=Depends(get_admin_user),
- ):
- data = form_data.model_dump()
- request.app.state.config.DEFAULT_PROMPT_SUGGESTIONS = data["suggestions"]
- return request.app.state.config.DEFAULT_PROMPT_SUGGESTIONS
- ############################
- # SetBanners
- ############################
- class SetBannersForm(BaseModel):
- banners: list[BannerModel]
- @router.post("/banners", response_model=list[BannerModel])
- async def set_banners(
- request: Request,
- form_data: SetBannersForm,
- user=Depends(get_admin_user),
- ):
- data = form_data.model_dump()
- request.app.state.config.BANNERS = data["banners"]
- return request.app.state.config.BANNERS
- @router.get("/banners", response_model=list[BannerModel])
- async def get_banners(
- request: Request,
- user=Depends(get_verified_user),
- ):
- return request.app.state.config.BANNERS
|