open-webui/backend/apps/ollama/main.py

92 lines
3 KiB
Python
Raw Normal View History

2023-11-19 01:47:12 +01:00
from flask import Flask, request, Response, jsonify
2023-11-15 01:28:51 +01:00
from flask_cors import CORS
import requests
import json
2023-11-19 01:47:12 +01:00
from apps.web.models.users import Users
from constants import ERROR_MESSAGES
2023-11-19 06:41:43 +01:00
from utils.utils import extract_token_from_auth_header
from config import OLLAMA_API_BASE_URL, WEBUI_AUTH
2023-11-15 01:28:51 +01:00
app = Flask(__name__)
CORS(
app
) # Enable Cross-Origin Resource Sharing (CORS) to allow requests from different domains
# Define the target server URL
TARGET_SERVER_URL = OLLAMA_API_BASE_URL
@app.route("/", defaults={"path": ""}, methods=["GET", "POST", "PUT", "DELETE"])
@app.route("/<path:path>", methods=["GET", "POST", "PUT", "DELETE"])
def proxy(path):
# Combine the base URL of the target server with the requested path
target_url = f"{TARGET_SERVER_URL}/{path}"
2023-11-19 06:41:43 +01:00
print(path)
2023-11-15 01:28:51 +01:00
# Get data from the original request
data = request.get_data()
headers = dict(request.headers)
2023-11-19 06:41:43 +01:00
# Basic RBAC support
if WEBUI_AUTH:
2023-11-19 01:47:12 +01:00
if "Authorization" in headers:
token = extract_token_from_auth_header(headers["Authorization"])
user = Users.get_user_by_token(token)
if user:
2023-11-19 06:41:43 +01:00
# Only user and admin roles can access
if user.role in ["user", "admin"]:
if path in ["pull", "delete", "push", "copy", "create"]:
# Only admin role can perform actions above
if user.role == "admin":
pass
else:
return (
jsonify({"detail": ERROR_MESSAGES.ACCESS_PROHIBITED}),
401,
)
else:
pass
else:
return jsonify({"detail": ERROR_MESSAGES.ACCESS_PROHIBITED}), 401
2023-11-19 01:47:12 +01:00
else:
return jsonify({"detail": ERROR_MESSAGES.UNAUTHORIZED}), 401
else:
return jsonify({"detail": ERROR_MESSAGES.UNAUTHORIZED}), 401
else:
pass
try:
# Make a request to the target server
target_response = requests.request(
method=request.method,
url=target_url,
data=data,
headers=headers,
stream=True, # Enable streaming for server-sent events
)
target_response.raise_for_status()
# Proxy the target server's response to the client
def generate():
for chunk in target_response.iter_content(chunk_size=8192):
yield chunk
response = Response(generate(), status=target_response.status_code)
# Copy headers from the target server's response to the client's response
for key, value in target_response.headers.items():
response.headers[key] = value
return response
except Exception as e:
return jsonify({"detail": "Server Connection Error", "message": str(e)}), 400
2023-11-15 01:28:51 +01:00
if __name__ == "__main__":
app.run(debug=True)