Browse Source

Local Fixes & Client UserUpdate Gateway Event (#147)

* Local Fixes & Client UserUpdate Gateway Event

- Changed 'READ_MESSAGES' to 'VIEW_CHANNEL' to keep with Discord's API Docs
- Defaulted Guild.premium_subscription_count to 0 to stop error
- max_presences to 5,000 as Discord's API Suggest
- Added UserUpdate event for when the Client user is updated.

* Flake8 Spacing

* Update state.py
pull/158/head
Justin 6 years ago
committed by Andrei Zbikowski
parent
commit
6f4d982aca
  1. 12
      disco/gateway/events.py
  2. 3
      disco/state.py
  3. 2
      disco/types/guild.py
  4. 2
      disco/types/permissions.py

12
disco/gateway/events.py

@ -714,3 +714,15 @@ class MessageReactionRemoveAll(GatewayEvent):
@property @property
def guild(self): def guild(self):
return self.channel.guild return self.channel.guild
@wraps_model(User)
class UserUpdate(GatewayEvent):
"""
Sent when the client user is updated.
Attributes
-----
user : :class:`disco.types.user.User`
The updated user object.
"""

3
disco/state.py

@ -153,6 +153,9 @@ class State(object):
self.dms[dm.id] = dm self.dms[dm.id] = dm
self.channels[dm.id] = dm self.channels[dm.id] = dm
def on_user_update(self, event):
self.me.inplace_update(event.user)
def on_message_create(self, event): def on_message_create(self, event):
if self.config.track_messages: if self.config.track_messages:
self.messages[event.message.channel_id].append( self.messages[event.message.channel_id].append(

2
disco/types/guild.py

@ -340,7 +340,7 @@ class Guild(SlottedModel, Permissible):
premium_tier = Field(int) premium_tier = Field(int)
premium_subscription_count = Field(int, default=0) premium_subscription_count = Field(int, default=0)
vanity_url_code = Field(text) vanity_url_code = Field(text)
max_presences = Field(int) max_presences = Field(int, default=5000)
max_members = Field(int) max_members = Field(int)
description = Field(text) description = Field(text)

2
disco/types/permissions.py

@ -11,7 +11,7 @@ class Permissions(object):
ADD_REACTIONS = 1 << 6 ADD_REACTIONS = 1 << 6
VIEW_AUDIT_LOG = 1 << 7 VIEW_AUDIT_LOG = 1 << 7
PRIORITY_SPEAKER = 1 << 8 PRIORITY_SPEAKER = 1 << 8
READ_MESSAGES = 1 << 10 VIEW_CHANNEL = 1 << 10
SEND_MESSAGES = 1 << 11 SEND_MESSAGES = 1 << 11
SEND_TSS_MESSAGES = 1 << 12 SEND_TSS_MESSAGES = 1 << 12
MANAGE_MESSAGES = 1 << 13 MANAGE_MESSAGES = 1 << 13

Loading…
Cancel
Save