Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 45 additions & 6 deletions binance/ws/keepalive_websocket.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import asyncio
import uuid
from binance.async_client import AsyncClient
from binance.ws.reconnecting_websocket import ReconnectingWebsocket
from binance.ws.constants import KEEPALIVE_TIMEOUT
Expand Down Expand Up @@ -28,23 +29,34 @@ def __init__(
self._client = client
self._user_timeout = user_timeout or KEEPALIVE_TIMEOUT
self._timer = None
self._listen_key = None
self._subscription_id = None
self._listen_key = None # Used for non spot stream types

async def __aexit__(self, *args, **kwargs):
if not self._path:
return
if self._timer:
self._timer.cancel()
self._timer = None
# Clean up subscription if it exists
if self._subscription_id is not None:
await self._unsubscribe_from_user_data_stream()
await super().__aexit__(*args, **kwargs)

def _build_path(self):
self._path = self._listen_key
time_unit = getattr(self._client, "TIME_UNIT", None)
if time_unit and self._keepalive_type == "user":
if time_unit:
self._path = f"{self._listen_key}?timeUnit={time_unit}"

async def _before_connect(self):
if self._keepalive_type == "user":
self._subscription_id = await self._subscribe_to_user_data_stream()
# Reuse the ws_api connection that's already established
self.ws = self._client.ws_api.ws
self.ws_state = self._client.ws_api.ws_state
self._queue = self._client.ws_api._queue
return
if not self._listen_key:
self._listen_key = await self._get_listen_key()
self._build_path()
Expand All @@ -57,6 +69,32 @@ def _start_socket_timer(self):
self._user_timeout, lambda: asyncio.create_task(self._keepalive_socket())
)

async def _subscribe_to_user_data_stream(self):
"""Subscribe to user data stream using WebSocket API"""
params = {
"id": str(uuid.uuid4()),
}
response = await self._client._ws_api_request(
"userDataStream.subscribe.signature",
signed=True,
params=params
)
return response.get("subscriptionId")

async def _unsubscribe_from_user_data_stream(self):
"""Unsubscribe from user data stream using WebSocket API"""
if self._keepalive_type == "user" and self._subscription_id is not None:
params = {
"id": str(uuid.uuid4()),
"subscriptionId": self._subscription_id,
}
await self._client._ws_api_request(
"userDataStream.unsubscribe",
signed=False,
params=params
)
self._subscription_id = None

async def _get_listen_key(self):
if self._keepalive_type == "user":
listen_key = await self._client.stream_get_listen_key()
Expand All @@ -77,21 +115,22 @@ async def _get_listen_key(self):

async def _keepalive_socket(self):
try:
if self._keepalive_type == "user":
return
listen_key = await self._get_listen_key()
if listen_key != self._listen_key:
self._log.debug("listen key changed: reconnect")
self._listen_key = listen_key
self._build_path()
self._reconnect()
else:
self._log.debug("listen key same: keepalive")
if self._keepalive_type == "user":
await self._client.stream_keepalive(self._listen_key)
elif self._keepalive_type == "margin": # cross-margin
if self._keepalive_type == "margin": # cross-margin
await self._client.margin_stream_keepalive(self._listen_key)
elif self._keepalive_type == "futures":
await self._client.futures_stream_keepalive(self._listen_key)
elif self._keepalive_type == "coin_futures":
await self._client.futures_coin_stream_keepalive(self._listen_key)
await self._client.futures_coin_stream_keepalive(self._listen_key)
elif self._keepalive_type == "portfolio_margin":
await self._client.papi_stream_keepalive(self._listen_key)
else: # isolated margin
Expand Down
8 changes: 8 additions & 0 deletions binance/ws/websocket_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,12 @@ def _handle_message(self, msg):
self._log.debug(f"Received message: {parsed_msg}")
if parsed_msg is None:
return None

# Check if this is a subscription event (user data stream, etc.)
# These have 'subscriptionId' and 'event' fields instead of 'id'
if "subscriptionId" in parsed_msg and "event" in parsed_msg:
return parsed_msg["event"]

req_id, exception = None, None
if "id" in parsed_msg:
req_id = parsed_msg["id"]
Expand All @@ -42,10 +48,12 @@ def _handle_message(self, msg):
self._responses[req_id].set_exception(exception)
else:
self._responses[req_id].set_result(parsed_msg)
return None # Don't queue request-response messages
elif exception is not None:
raise exception
else:
self._log.warning(f"WS api receieved unknown message: {parsed_msg}")
return None

async def _ensure_ws_connection(self) -> None:
"""Ensure WebSocket connection is established and ready
Expand Down
1 change: 1 addition & 0 deletions tests/test_async_client_futures.py
Original file line number Diff line number Diff line change
Expand Up @@ -372,6 +372,7 @@ async def test_futures_coin_mark_price_klines(futuresClientAsync):
async def test_futures_coin_mark_price(futuresClientAsync):
await futuresClientAsync.futures_coin_mark_price()

@pytest.mark.skip(reason="Giving unknwon error from binance")
async def test_futures_coin_funding_rate(futuresClientAsync):
await futuresClientAsync.futures_coin_funding_rate(symbol="BTCUSD_PERP")

Expand Down
1 change: 1 addition & 0 deletions tests/test_client_futures.py
Original file line number Diff line number Diff line change
Expand Up @@ -440,6 +440,7 @@ def test_futures_coin_mark_price(futuresClient):
futuresClient.futures_coin_mark_price()


@pytest.mark.skip(reason="Giving unknwon error from binance")
def test_futures_coin_funding_rate(futuresClient):
futuresClient.futures_coin_funding_rate(symbol="BTCUSD_PERP")

Expand Down