File size: 7,125 Bytes
bde2f3a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 | """
DataBus WebSocket Stream β Real-time Data Push
================================================
WebSocket endpoint that pushes real-time data updates to connected clients.
Channels: prices, alerts, whales, smart_money, market_overview, all
Clients connect to: ws://host/api/v1/databus/ws/{channel}
Premium feature β requires x402 payment or subscription for access.
Free tier gets read-only access to 'prices' and 'market_overview' channels.
Author: RMI Development
Date: 2026-06-02
"""
import asyncio
import json
import logging
import time
from collections import defaultdict
from fastapi import APIRouter, WebSocket, WebSocketDisconnect
logger = logging.getLogger("databus.ws_stream")
router = APIRouter(tags=["databus-websocket"])
# ββ Connection Manager ββββββββββββββββββββββββββββββββββββββββββββββ
class WSConnectionManager:
"""Manages WebSocket connections by channel."""
def __init__(self):
# channel β set of (websocket, tier)
self._connections: dict[str, set[tuple]] = defaultdict(set)
self._total_messages = 0
self._total_connections = 0
async def connect(self, ws: WebSocket, channel: str, tier: str = "free"):
await ws.accept()
self._connections[channel].add((ws, tier))
self._total_connections += 1
logger.info(f"WS connected: channel={channel}, tier={tier}")
def disconnect(self, ws: WebSocket, channel: str):
self._connections[channel].discard((ws, _tier_for_ws(ws, channel)))
logger.info(f"WS disconnected: channel={channel}")
async def broadcast(self, channel: str, data: dict, min_tier: str = "free"):
"""Broadcast data to all connections on a channel.
Only sends to connections with tier >= min_tier.
"""
tier_order = {"free": 0, "basic": 1, "premium": 2, "enterprise": 3}
min_level = tier_order.get(min_tier, 0)
dead = []
for ws, tier in list(self._connections.get(channel, set())):
if tier_order.get(tier, 0) < min_level:
continue
try:
await ws.send_json(data)
self._total_messages += 1
except Exception:
dead.append((ws, tier))
for ws, tier in dead:
self._connections[channel].discard((ws, tier))
async def broadcast_all(self, data: dict, channel: str = ""):
"""Broadcast to 'all' channel (receives everything)."""
await self.broadcast("all", data)
if channel:
await self.broadcast(channel, data)
def stats(self) -> dict:
return {
"channels": {ch: len(conns) for ch, conns in self._connections.items()},
"total_connections": self._total_connections,
"total_messages_sent": self._total_messages,
}
def _tier_for_ws(ws: WebSocket, channel: str) -> str:
"""Extract tier from WS query params (fallback)."""
return "free"
# ββ Singleton ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
ws_manager = WSConnectionManager()
# ββ DataBus Integration Hook ββββββββββββββββββββββββββββββββββββββββ
# This function is called by DataBus core when it broadcasts data
# It pushes the data to websocket clients on the matching channel
CHANNEL_MAP = {
"token_price": "prices",
"alerts": "alerts",
"entity_intel": "whales",
"smart_money": "smart_money",
"market_overview": "market_overview",
"trending": "prices",
"market_movers": "prices",
}
async def databus_ws_broadcast(data_type: str, result: dict):
"""Hook called by DataBus core to push real-time updates to WS clients."""
channel = CHANNEL_MAP.get(data_type)
if channel:
payload = {
"channel": channel,
"data_type": data_type,
"data": result.get("data"),
"timestamp": result.get("latency_ms", 0),
}
await ws_manager.broadcast_all(payload, channel)
# ββ WebSocket Endpoint βββββββββββββββββββββββββββββββββββββββββββββββ
@router.websocket("/api/v1/databus/ws/{channel}")
async def databus_websocket(ws: WebSocket, channel: str):
"""
Connect to a real-time data stream.
Channels:
- prices: token price updates, trending, movers
- alerts: rug pull alerts, whale movements, new launches
- whales: whale tracking, large transactions
- smart_money: smart money moves, profitable traders
- market_overview: aggregate market stats
- all: everything (premium+ only)
Tier levels (via query param ?tier=basic):
- free: prices + market_overview only
- basic: + alerts
- premium: + whales + smart_money
- enterprise: all
"""
valid_channels = {"prices", "alerts", "whales", "smart_money", "market_overview", "all"}
if channel not in valid_channels:
await ws.close(code=4000, reason=f"Invalid channel. Use: {', '.join(valid_channels)}")
return
tier = ws.query_params.get("tier", "free").lower()
# Free tier can only access prices and market_overview
free_allowed = {"prices", "market_overview"}
if tier == "free" and channel not in free_allowed:
await ws.close(code=4001, reason=f"Channel '{channel}' requires basic+ tier")
return
await ws_manager.connect(ws, channel, tier)
try:
# Send initial confirmation
await ws.send_json(
{
"type": "connected",
"channel": channel,
"tier": tier,
"message": f"Subscribed to {channel} stream ({tier} tier)",
}
)
# Keep connection alive β listen for pings
while True:
try:
data = await asyncio.wait_for(ws.receive_text(), timeout=60)
# Client can send {"type": "ping"} for keepalive
if data.strip() == "ping" or json.loads(data).get("type") == "ping":
await ws.send_json({"type": "pong", "ts": int(time.time())})
except TimeoutError:
# No message for 60s β send keepalive ping
try:
await ws.send_json({"type": "ping", "ts": int(time.time())})
except Exception:
break
except WebSocketDisconnect:
break
except WebSocketDisconnect:
pass
finally:
ws_manager.disconnect(ws, channel)
# ββ Stats Endpoint βββββββββββββββββββββββββββββββββββββββββββββββββββ
@router.get("/api/v1/databus/ws/stats")
async def ws_stats():
"""WebSocket connection stats."""
return ws_manager.stats()
|