From 6f4d982acac4412ffdd963b3a3e2fc49d60115ab Mon Sep 17 00:00:00 2001 From: Justin <14909116+ThatGuyJustin@users.noreply.github.com> Date: Sun, 6 Oct 2019 19:04:12 -0400 Subject: [PATCH] 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 --- disco/gateway/events.py | 12 ++++++++++++ disco/state.py | 3 +++ disco/types/guild.py | 2 +- disco/types/permissions.py | 2 +- 4 files changed, 17 insertions(+), 2 deletions(-) diff --git a/disco/gateway/events.py b/disco/gateway/events.py index ab45662..e187502 100644 --- a/disco/gateway/events.py +++ b/disco/gateway/events.py @@ -714,3 +714,15 @@ class MessageReactionRemoveAll(GatewayEvent): @property def guild(self): 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. + """ diff --git a/disco/state.py b/disco/state.py index b78e2ef..28a54ff 100644 --- a/disco/state.py +++ b/disco/state.py @@ -153,6 +153,9 @@ class State(object): self.dms[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): if self.config.track_messages: self.messages[event.message.channel_id].append( diff --git a/disco/types/guild.py b/disco/types/guild.py index db49430..55efdb5 100644 --- a/disco/types/guild.py +++ b/disco/types/guild.py @@ -340,7 +340,7 @@ class Guild(SlottedModel, Permissible): premium_tier = Field(int) premium_subscription_count = Field(int, default=0) vanity_url_code = Field(text) - max_presences = Field(int) + max_presences = Field(int, default=5000) max_members = Field(int) description = Field(text) diff --git a/disco/types/permissions.py b/disco/types/permissions.py index e60c120..f6ebe0f 100644 --- a/disco/types/permissions.py +++ b/disco/types/permissions.py @@ -11,7 +11,7 @@ class Permissions(object): ADD_REACTIONS = 1 << 6 VIEW_AUDIT_LOG = 1 << 7 PRIORITY_SPEAKER = 1 << 8 - READ_MESSAGES = 1 << 10 + VIEW_CHANNEL = 1 << 10 SEND_MESSAGES = 1 << 11 SEND_TSS_MESSAGES = 1 << 12 MANAGE_MESSAGES = 1 << 13