Rapptz
79a49f9145
Absolute import some circular dependencies to appease Python 3.4.
8 years ago
Rapptz
d1d54a468a
Rename Server to Guild everywhere.
9 years ago
Rapptz
6306fc08db
Discard null sequences in the gateway.
This was forbidding the Discord gateway from allowing us to RESUME
properly, causing an over-abundance of READY being called.
8 years ago
khazhyk
98d8c855d8
Fix typo in change_presence validation message
9 years ago
Rapptz
7272190e2d
Add support for "Do Not Disturb" and "Invisible" statuses.
This deprecates Client.change_status in favour of the newer and more
correct Client.change_presence.
9 years ago
Rapptz
fc1155c160
Remove unused endpoints.py file.
9 years ago
Rapptz
a23e51f6c4
Fix gateway code to work with websockets 3.2.
9 years ago
Rapptz
0b6e74ebec
Ensure that keep alive threads are closed when a websocket closes.
The library worked with the assumption that whenever the recv call for
the websocket would lead to a closure, the close method would be called
to signal closure and as a result our close method would be called.
This assumption turned out to be false as the websockets library would
instead call an internal function named close_connection instead. So to
solve our problem we need to override this function instead of close.
9 years ago
Rapptz
0c95edab8c
Handle receiving HEARTBEAT opcode.
9 years ago
Rapptz
ddd3fd0a3d
Begin working on gateway v6 changes.
The first batch of changes are related to channel types and group
direct messages. Support these first so READY begins parsing.
9 years ago
Rapptz
e600abbbab
Ignore HEARTBEAT_ACK for now to disable the noisy logging.
9 years ago
cookie
abf9be5f7d
Guild Sharding support
9 years ago
Rapptz
8b3617111a
Support for v5 Gateway.
9 years ago
Rapptz
92fe4daa86
Attempt resume when we receive a 1001.
9 years ago
Rapptz
aecf0daf33
Fix sed error involved in creation of voice websocket.
9 years ago
Rapptz
dbd3147059
Support more close codes for RESUME.
9 years ago
Rapptz
1fba1b06fa
Rewrite HTTP handling significantly.
This should have a more uniform approach to rate limit handling. Instead
of queueing every request, wait until we receive a 429 and then block
the requesting bucket until we're done being rate limited. This should
reduce the number of 429s done by the API significantly (about 66% avg).
This also consistently checks for 502 retries across all requests.
9 years ago
Jake
41a2b5ed73
Actually read from the voice websocket & fix heartbeat.
This change makes it so that the buffer doesn't fill and the voice server drops the socket.
Also, use correct interval for voice websocket heartbeat.
9 years ago
Rapptz
f6fa1e837a
Actually use v4 gateway and fixes thanks to Jake.
9 years ago
Rapptz
8638ff4414
Update voice client main ws references when reconnecting.
9 years ago
Rapptz
e0a91df32b
Add RESUME support.
9 years ago
Rapptz
e66b2dce88
Rename threading internal variable conflict.
9 years ago
Rapptz
0c8d5ee863
Force encoding of text retrieval functions to use utf-8.
Closes #207
9 years ago
Rapptz
3feba5d1bb
Add Game.type and Game.url attributes to change streaming status.
9 years ago
Rapptz
701720a0f8
Add a TimeoutError if VoiceClient.connect fails.
9 years ago
Rapptz
570ccbf753
Suppress ConnectionClosed on sending in the main websocket.
9 years ago
Rapptz
d9c780b8a8
Working multi-server voice support.
9 years ago
Rapptz
c1b5a52823
Refactor voice websocket into gateway.py
9 years ago
Rapptz
1c623ccf11
Begin working on gateway v4 support.
Bump websockets requirement to v3.1
Should be squashed...
9 years ago