|
@ -293,6 +293,12 @@ class DiscordWebSocket: |
|
|
def is_ratelimited(self): |
|
|
def is_ratelimited(self): |
|
|
return self._rate_limiter.is_ratelimited() |
|
|
return self._rate_limiter.is_ratelimited() |
|
|
|
|
|
|
|
|
|
|
|
def log_receive(self, data, /): |
|
|
|
|
|
self._dispatch('socket_raw_receive', data) |
|
|
|
|
|
|
|
|
|
|
|
def empty_log_receive(self, _, /): |
|
|
|
|
|
pass |
|
|
|
|
|
|
|
|
@classmethod |
|
|
@classmethod |
|
|
async def from_client(cls, client, *, initial=False, gateway=None, shard_id=None, session=None, sequence=None, resume=False): |
|
|
async def from_client(cls, client, *, initial=False, gateway=None, shard_id=None, session=None, sequence=None, resume=False): |
|
|
"""Creates a main websocket for Discord from a :class:`Client`. |
|
|
"""Creates a main websocket for Discord from a :class:`Client`. |
|
@ -318,6 +324,10 @@ class DiscordWebSocket: |
|
|
ws.sequence = sequence |
|
|
ws.sequence = sequence |
|
|
ws._max_heartbeat_timeout = client._connection.heartbeat_timeout |
|
|
ws._max_heartbeat_timeout = client._connection.heartbeat_timeout |
|
|
|
|
|
|
|
|
|
|
|
if client._enable_debug_events: |
|
|
|
|
|
ws.send = ws.debug_send |
|
|
|
|
|
ws.log_receive = ws.empty_log_receive |
|
|
|
|
|
|
|
|
client._connection._update_references(ws) |
|
|
client._connection._update_references(ws) |
|
|
|
|
|
|
|
|
log.debug('Created websocket connected to %s', gateway) |
|
|
log.debug('Created websocket connected to %s', gateway) |
|
@ -409,8 +419,8 @@ class DiscordWebSocket: |
|
|
await self.send_as_json(payload) |
|
|
await self.send_as_json(payload) |
|
|
log.info('Shard ID %s has sent the RESUME payload.', self.shard_id) |
|
|
log.info('Shard ID %s has sent the RESUME payload.', self.shard_id) |
|
|
|
|
|
|
|
|
async def received_message(self, msg): |
|
|
async def received_message(self, msg, /): |
|
|
self._dispatch('socket_raw_receive', msg) |
|
|
self.log_receive(msg) |
|
|
|
|
|
|
|
|
if type(msg) is bytes: |
|
|
if type(msg) is bytes: |
|
|
self._buffer.extend(msg) |
|
|
self._buffer.extend(msg) |
|
@ -574,11 +584,15 @@ class DiscordWebSocket: |
|
|
log.info('Websocket closed with %s, cannot reconnect.', code) |
|
|
log.info('Websocket closed with %s, cannot reconnect.', code) |
|
|
raise ConnectionClosed(self.socket, shard_id=self.shard_id, code=code) from None |
|
|
raise ConnectionClosed(self.socket, shard_id=self.shard_id, code=code) from None |
|
|
|
|
|
|
|
|
async def send(self, data): |
|
|
async def debug_send(self, data, /): |
|
|
await self._rate_limiter.block() |
|
|
await self._rate_limiter.block() |
|
|
self._dispatch('socket_raw_send', data) |
|
|
self._dispatch('socket_raw_send', data) |
|
|
await self.socket.send_str(data) |
|
|
await self.socket.send_str(data) |
|
|
|
|
|
|
|
|
|
|
|
async def send(self, data, /): |
|
|
|
|
|
await self._rate_limiter.block() |
|
|
|
|
|
await self.socket.send_str(data) |
|
|
|
|
|
|
|
|
async def send_as_json(self, data): |
|
|
async def send_as_json(self, data): |
|
|
try: |
|
|
try: |
|
|
await self.send(utils.to_json(data)) |
|
|
await self.send(utils.to_json(data)) |
|
|