Browse Source

Track voice states, fix BaseType.update smashing state

pull/3/head
Andrei 9 years ago
parent
commit
c237baa9db
  1. 16
      disco/state.py
  2. 5
      disco/types/base.py

16
disco/state.py

@ -24,6 +24,7 @@ class State(object):
self.guilds = {} self.guilds = {}
self.channels = WeakValueDictionary() self.channels = WeakValueDictionary()
self.users = WeakValueDictionary() self.users = WeakValueDictionary()
self.voice_states = WeakValueDictionary()
self.client.events.on('Ready', self.on_ready) self.client.events.on('Ready', self.on_ready)
@ -42,6 +43,9 @@ class State(object):
self.client.events.on('ChannelUpdate', self.on_channel_update) self.client.events.on('ChannelUpdate', self.on_channel_update)
self.client.events.on('ChannelDelete', self.on_channel_delete) self.client.events.on('ChannelDelete', self.on_channel_delete)
# Voice states
self.client.events.on('VoiceStateUpdate', self.on_voice_state_update)
def on_ready(self, event): def on_ready(self, event):
self.me = event.user self.me = event.user
@ -101,3 +105,15 @@ class State(object):
del self.guilds[event.channel.id] del self.guilds[event.channel.id]
elif event.channel.is_dm: elif event.channel.is_dm:
del self.pms[event.channel.id] del self.pms[event.channel.id]
def on_voice_state_update(self, event):
# Happy path: we have the voice state and want to update/delete it
guild = self.guilds.get(event.state.guild_id)
if event.state.session_id in guild.voice_states:
if event.state.channel_id:
guild.voice_states[event.state.session_id].update(event.state)
else:
del guild.voice_states[event.state.session_id]
elif event.state.channel_id:
guild.voice_states[event.state.session_id] = event.state

5
disco/types/base.py

@ -9,7 +9,10 @@ class BaseType(skema.Model):
pass pass
def update(self, other): def update(self, other):
self.__dict__.update(other.__dict__) for name, field in other.__class__._fields.items():
value = getattr(other, name)
if value:
setattr(self, name, value)
@classmethod @classmethod
def create(cls, client, data): def create(cls, client, data):

Loading…
Cancel
Save