| | import asyncio |
| | import socketio |
| | import logging |
| | import sys |
| | import time |
| | from redis import asyncio as aioredis |
| |
|
| | from open_webui.models.users import Users, UserNameResponse |
| | from open_webui.models.channels import Channels |
| | from open_webui.models.chats import Chats |
| | from open_webui.utils.redis import ( |
| | get_sentinels_from_env, |
| | get_sentinel_url_from_env, |
| | ) |
| |
|
| | from open_webui.env import ( |
| | ENABLE_WEBSOCKET_SUPPORT, |
| | WEBSOCKET_MANAGER, |
| | WEBSOCKET_REDIS_URL, |
| | WEBSOCKET_REDIS_LOCK_TIMEOUT, |
| | WEBSOCKET_SENTINEL_PORT, |
| | WEBSOCKET_SENTINEL_HOSTS, |
| | ) |
| | from open_webui.utils.auth import decode_token |
| | from open_webui.socket.utils import RedisDict, RedisLock |
| |
|
| | from open_webui.env import ( |
| | GLOBAL_LOG_LEVEL, |
| | SRC_LOG_LEVELS, |
| | ) |
| |
|
| |
|
| | logging.basicConfig(stream=sys.stdout, level=GLOBAL_LOG_LEVEL) |
| | log = logging.getLogger(__name__) |
| | log.setLevel(SRC_LOG_LEVELS["SOCKET"]) |
| |
|
| |
|
| | if WEBSOCKET_MANAGER == "redis": |
| | if WEBSOCKET_SENTINEL_HOSTS: |
| | mgr = socketio.AsyncRedisManager( |
| | get_sentinel_url_from_env( |
| | WEBSOCKET_REDIS_URL, WEBSOCKET_SENTINEL_HOSTS, WEBSOCKET_SENTINEL_PORT |
| | ) |
| | ) |
| | else: |
| | mgr = socketio.AsyncRedisManager(WEBSOCKET_REDIS_URL) |
| | sio = socketio.AsyncServer( |
| | cors_allowed_origins=[], |
| | async_mode="asgi", |
| | transports=(["websocket"] if ENABLE_WEBSOCKET_SUPPORT else ["polling"]), |
| | allow_upgrades=ENABLE_WEBSOCKET_SUPPORT, |
| | always_connect=True, |
| | client_manager=mgr, |
| | ) |
| | else: |
| | sio = socketio.AsyncServer( |
| | cors_allowed_origins=[], |
| | async_mode="asgi", |
| | transports=(["websocket"] if ENABLE_WEBSOCKET_SUPPORT else ["polling"]), |
| | allow_upgrades=ENABLE_WEBSOCKET_SUPPORT, |
| | always_connect=True, |
| | ) |
| |
|
| |
|
| | |
| | TIMEOUT_DURATION = 3 |
| |
|
| | |
| |
|
| | if WEBSOCKET_MANAGER == "redis": |
| | log.debug("Using Redis to manage websockets.") |
| | redis_sentinels = get_sentinels_from_env( |
| | WEBSOCKET_SENTINEL_HOSTS, WEBSOCKET_SENTINEL_PORT |
| | ) |
| | SESSION_POOL = RedisDict( |
| | "open-webui:session_pool", |
| | redis_url=WEBSOCKET_REDIS_URL, |
| | redis_sentinels=redis_sentinels, |
| | ) |
| | USER_POOL = RedisDict( |
| | "open-webui:user_pool", |
| | redis_url=WEBSOCKET_REDIS_URL, |
| | redis_sentinels=redis_sentinels, |
| | ) |
| | USAGE_POOL = RedisDict( |
| | "open-webui:usage_pool", |
| | redis_url=WEBSOCKET_REDIS_URL, |
| | redis_sentinels=redis_sentinels, |
| | ) |
| |
|
| | clean_up_lock = RedisLock( |
| | redis_url=WEBSOCKET_REDIS_URL, |
| | lock_name="usage_cleanup_lock", |
| | timeout_secs=WEBSOCKET_REDIS_LOCK_TIMEOUT, |
| | redis_sentinels=redis_sentinels, |
| | ) |
| | aquire_func = clean_up_lock.aquire_lock |
| | renew_func = clean_up_lock.renew_lock |
| | release_func = clean_up_lock.release_lock |
| | else: |
| | SESSION_POOL = {} |
| | USER_POOL = {} |
| | USAGE_POOL = {} |
| | aquire_func = release_func = renew_func = lambda: True |
| |
|
| |
|
| | async def periodic_usage_pool_cleanup(): |
| | if not aquire_func(): |
| | log.debug("Usage pool cleanup lock already exists. Not running it.") |
| | return |
| | log.debug("Running periodic_usage_pool_cleanup") |
| | try: |
| | while True: |
| | if not renew_func(): |
| | log.error(f"Unable to renew cleanup lock. Exiting usage pool cleanup.") |
| | raise Exception("Unable to renew usage pool cleanup lock.") |
| |
|
| | now = int(time.time()) |
| | send_usage = False |
| | for model_id, connections in list(USAGE_POOL.items()): |
| | |
| | expired_sids = [ |
| | sid |
| | for sid, details in connections.items() |
| | if now - details["updated_at"] > TIMEOUT_DURATION |
| | ] |
| |
|
| | for sid in expired_sids: |
| | del connections[sid] |
| |
|
| | if not connections: |
| | log.debug(f"Cleaning up model {model_id} from usage pool") |
| | del USAGE_POOL[model_id] |
| | else: |
| | USAGE_POOL[model_id] = connections |
| |
|
| | send_usage = True |
| |
|
| | if send_usage: |
| | |
| | await sio.emit("usage", {"models": get_models_in_use()}) |
| |
|
| | await asyncio.sleep(TIMEOUT_DURATION) |
| | finally: |
| | release_func() |
| |
|
| |
|
| | app = socketio.ASGIApp( |
| | sio, |
| | socketio_path="/ws/socket.io", |
| | ) |
| |
|
| |
|
| | def get_models_in_use(): |
| | |
| | models_in_use = list(USAGE_POOL.keys()) |
| | return models_in_use |
| |
|
| |
|
| | @sio.on("usage") |
| | async def usage(sid, data): |
| | model_id = data["model"] |
| | |
| | current_time = int(time.time()) |
| |
|
| | |
| | USAGE_POOL[model_id] = { |
| | **(USAGE_POOL[model_id] if model_id in USAGE_POOL else {}), |
| | sid: {"updated_at": current_time}, |
| | } |
| |
|
| | |
| | await sio.emit("usage", {"models": get_models_in_use()}) |
| |
|
| |
|
| | @sio.event |
| | async def connect(sid, environ, auth): |
| | user = None |
| | if auth and "token" in auth: |
| | data = decode_token(auth["token"]) |
| |
|
| | if data is not None and "id" in data: |
| | user = Users.get_user_by_id(data["id"]) |
| |
|
| | if user: |
| | SESSION_POOL[sid] = user.model_dump() |
| | if user.id in USER_POOL: |
| | USER_POOL[user.id] = USER_POOL[user.id] + [sid] |
| | else: |
| | USER_POOL[user.id] = [sid] |
| |
|
| | |
| | await sio.emit("user-list", {"user_ids": list(USER_POOL.keys())}) |
| | await sio.emit("usage", {"models": get_models_in_use()}) |
| |
|
| |
|
| | @sio.on("user-join") |
| | async def user_join(sid, data): |
| |
|
| | auth = data["auth"] if "auth" in data else None |
| | if not auth or "token" not in auth: |
| | return |
| |
|
| | data = decode_token(auth["token"]) |
| | if data is None or "id" not in data: |
| | return |
| |
|
| | user = Users.get_user_by_id(data["id"]) |
| | if not user: |
| | return |
| |
|
| | SESSION_POOL[sid] = user.model_dump() |
| | if user.id in USER_POOL: |
| | USER_POOL[user.id] = USER_POOL[user.id] + [sid] |
| | else: |
| | USER_POOL[user.id] = [sid] |
| |
|
| | |
| | channels = Channels.get_channels_by_user_id(user.id) |
| | log.debug(f"{channels=}") |
| | for channel in channels: |
| | await sio.enter_room(sid, f"channel:{channel.id}") |
| |
|
| | |
| |
|
| | await sio.emit("user-list", {"user_ids": list(USER_POOL.keys())}) |
| | return {"id": user.id, "name": user.name} |
| |
|
| |
|
| | @sio.on("join-channels") |
| | async def join_channel(sid, data): |
| | auth = data["auth"] if "auth" in data else None |
| | if not auth or "token" not in auth: |
| | return |
| |
|
| | data = decode_token(auth["token"]) |
| | if data is None or "id" not in data: |
| | return |
| |
|
| | user = Users.get_user_by_id(data["id"]) |
| | if not user: |
| | return |
| |
|
| | |
| | channels = Channels.get_channels_by_user_id(user.id) |
| | log.debug(f"{channels=}") |
| | for channel in channels: |
| | await sio.enter_room(sid, f"channel:{channel.id}") |
| |
|
| |
|
| | @sio.on("channel-events") |
| | async def channel_events(sid, data): |
| | room = f"channel:{data['channel_id']}" |
| | participants = sio.manager.get_participants( |
| | namespace="/", |
| | room=room, |
| | ) |
| |
|
| | sids = [sid for sid, _ in participants] |
| | if sid not in sids: |
| | return |
| |
|
| | event_data = data["data"] |
| | event_type = event_data["type"] |
| |
|
| | if event_type == "typing": |
| | await sio.emit( |
| | "channel-events", |
| | { |
| | "channel_id": data["channel_id"], |
| | "message_id": data.get("message_id", None), |
| | "data": event_data, |
| | "user": UserNameResponse(**SESSION_POOL[sid]).model_dump(), |
| | }, |
| | room=room, |
| | ) |
| |
|
| |
|
| | @sio.on("user-list") |
| | async def user_list(sid): |
| | await sio.emit("user-list", {"user_ids": list(USER_POOL.keys())}) |
| |
|
| |
|
| | @sio.event |
| | async def disconnect(sid): |
| | if sid in SESSION_POOL: |
| | user = SESSION_POOL[sid] |
| | del SESSION_POOL[sid] |
| |
|
| | user_id = user["id"] |
| | USER_POOL[user_id] = [_sid for _sid in USER_POOL[user_id] if _sid != sid] |
| |
|
| | if len(USER_POOL[user_id]) == 0: |
| | del USER_POOL[user_id] |
| |
|
| | await sio.emit("user-list", {"user_ids": list(USER_POOL.keys())}) |
| | else: |
| | pass |
| | |
| |
|
| |
|
| | def get_event_emitter(request_info, update_db=True): |
| | async def __event_emitter__(event_data): |
| | user_id = request_info["user_id"] |
| |
|
| | session_ids = list( |
| | set( |
| | USER_POOL.get(user_id, []) |
| | + ( |
| | [request_info.get("session_id")] |
| | if request_info.get("session_id") |
| | else [] |
| | ) |
| | ) |
| | ) |
| |
|
| | for session_id in session_ids: |
| | await sio.emit( |
| | "chat-events", |
| | { |
| | "chat_id": request_info.get("chat_id", None), |
| | "message_id": request_info.get("message_id", None), |
| | "data": event_data, |
| | }, |
| | to=session_id, |
| | ) |
| |
|
| | if update_db: |
| | if "type" in event_data and event_data["type"] == "status": |
| | Chats.add_message_status_to_chat_by_id_and_message_id( |
| | request_info["chat_id"], |
| | request_info["message_id"], |
| | event_data.get("data", {}), |
| | ) |
| |
|
| | if "type" in event_data and event_data["type"] == "message": |
| | message = Chats.get_message_by_id_and_message_id( |
| | request_info["chat_id"], |
| | request_info["message_id"], |
| | ) |
| |
|
| | if message: |
| | content = message.get("content", "") |
| | content += event_data.get("data", {}).get("content", "") |
| |
|
| | Chats.upsert_message_to_chat_by_id_and_message_id( |
| | request_info["chat_id"], |
| | request_info["message_id"], |
| | { |
| | "content": content, |
| | }, |
| | ) |
| |
|
| | if "type" in event_data and event_data["type"] == "replace": |
| | content = event_data.get("data", {}).get("content", "") |
| |
|
| | Chats.upsert_message_to_chat_by_id_and_message_id( |
| | request_info["chat_id"], |
| | request_info["message_id"], |
| | { |
| | "content": content, |
| | }, |
| | ) |
| |
|
| | return __event_emitter__ |
| |
|
| |
|
| | def get_event_call(request_info): |
| | async def __event_caller__(event_data): |
| | response = await sio.call( |
| | "chat-events", |
| | { |
| | "chat_id": request_info.get("chat_id", None), |
| | "message_id": request_info.get("message_id", None), |
| | "data": event_data, |
| | }, |
| | to=request_info["session_id"], |
| | ) |
| | return response |
| |
|
| | return __event_caller__ |
| |
|
| |
|
| | get_event_caller = get_event_call |
| |
|
| |
|
| | def get_user_id_from_session_pool(sid): |
| | user = SESSION_POOL.get(sid) |
| | if user: |
| | return user["id"] |
| | return None |
| |
|
| |
|
| | def get_user_ids_from_room(room): |
| | active_session_ids = sio.manager.get_participants( |
| | namespace="/", |
| | room=room, |
| | ) |
| |
|
| | active_user_ids = list( |
| | set( |
| | [SESSION_POOL.get(session_id[0])["id"] for session_id in active_session_ids] |
| | ) |
| | ) |
| | return active_user_ids |
| |
|
| |
|
| | def get_active_status_by_user_id(user_id): |
| | if user_id in USER_POOL: |
| | return True |
| | return False |
| |
|