chore: initial snapshot for gitea/github upload

This commit is contained in:
Your Name
2026-03-26 16:04:46 +08:00
commit a699a1ac98
3497 changed files with 1586237 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
from fastapi import Request
from fastapi_sso.sso.base import OpenID
from litellm._logging import verbose_logger
from litellm.integrations.custom_logger import CustomLogger
from litellm.proxy.common_utils.http_parsing_utils import _safe_get_request_headers
class CustomSSOLoginHandler(CustomLogger):
"""
Custom logger for the UI SSO sign in
Use this to parse the request headers and return a OpenID object
Useful when you have an OAuth proxy in front of LiteLLM
and you want to use the headers from the proxy to sign in the user
"""
async def handle_custom_ui_sso_sign_in(
self,
request: Request,
) -> OpenID:
request_headers_dict = _safe_get_request_headers(request)
verbose_logger.debug("inside custom ui sso sign in hook...")
return OpenID(
id=request_headers_dict.get("x-litellm-user-id") or "123",
email=request_headers_dict.get("x-litellm-user-email") or "test@test.com",
first_name="Test",
last_name="Test",
display_name="Test",
picture="https://test.com/test.png",
provider="test",
)
custom_ui_sso_sign_in_handler = CustomSSOLoginHandler()