Browse Source

Fix voice websocket connections

pull/5164/head
Rapptz 5 years ago
parent
commit
058a1e608b
  1. 9
      discord/gateway.py
  2. 10
      discord/http.py

9
discord/gateway.py

@ -503,7 +503,7 @@ class DiscordWebSocket:
raise msg.data raise msg.data
elif msg.type in (aiohttp.WSMsgType.CLOSED, aiohttp.WSMsgType.CLOSE): elif msg.type in (aiohttp.WSMsgType.CLOSED, aiohttp.WSMsgType.CLOSE):
log.debug('Received %s', msg) log.debug('Received %s', msg)
raise WebSocketClosure('Unexpected WebSocket closure.') raise WebSocketClosure
except WebSocketClosure as e: except WebSocketClosure as e:
if self._can_handle_close(): if self._can_handle_close():
log.info('Websocket closed with %s, attempting a reconnect.', self.socket.close_code) log.info('Websocket closed with %s, attempting a reconnect.', self.socket.close_code)
@ -638,8 +638,9 @@ class DiscordVoiceWebSocket:
CLIENT_CONNECT = 12 CLIENT_CONNECT = 12
CLIENT_DISCONNECT = 13 CLIENT_DISCONNECT = 13
def __init__(self, socket): def __init__(self, socket, loop):
self.ws = socket self.ws = socket
self.loop = loop
self._keep_alive = None self._keep_alive = None
async def send_as_json(self, data): async def send_as_json(self, data):
@ -676,8 +677,8 @@ class DiscordVoiceWebSocket:
"""Creates a voice websocket for the :class:`VoiceClient`.""" """Creates a voice websocket for the :class:`VoiceClient`."""
gateway = 'wss://' + client.endpoint + '/?v=4' gateway = 'wss://' + client.endpoint + '/?v=4'
http = client._state.http http = client._state.http
socket = await http.ws_connect(gateway) socket = await http.ws_connect(gateway, compress=15)
ws = cls(socket) ws = cls(socket, loop=client.loop)
ws.gateway = gateway ws.gateway = gateway
ws._connection = client ws._connection = client
ws._max_heartbeat_timeout = 60.0 ws._max_heartbeat_timeout = 60.0

10
discord/http.py

@ -85,6 +85,10 @@ class MaybeUnlock:
if self._unlock: if self._unlock:
self.lock.release() self.lock.release()
# For some reason, the Discord voice websocket expects this header to be
# completely lowercase while aiohttp respects spec and does it as case-insensitive
aiohttp.hdrs.WEBSOCKET = 'websocket'
class HTTPClient: class HTTPClient:
"""Represents an HTTP client sending HTTP requests to the Discord API.""" """Represents an HTTP client sending HTTP requests to the Discord API."""
@ -111,13 +115,17 @@ class HTTPClient:
if self.__session.closed: if self.__session.closed:
self.__session = aiohttp.ClientSession(connector=self.connector) self.__session = aiohttp.ClientSession(connector=self.connector)
async def ws_connect(self, url): async def ws_connect(self, url, *, compress=0):
kwargs = { kwargs = {
'proxy_auth': self.proxy_auth, 'proxy_auth': self.proxy_auth,
'proxy': self.proxy, 'proxy': self.proxy,
'max_msg_size': 0, 'max_msg_size': 0,
'timeout': 30.0, 'timeout': 30.0,
'autoclose': False, 'autoclose': False,
'headers': {
'User-Agent': self.user_agent,
},
'compress': compress
} }
return await self.__session.ws_connect(url, **kwargs) return await self.__session.ws_connect(url, **kwargs)

Loading…
Cancel
Save