Browse Source

Split function

pull/162/head
Luke 5 years ago
parent
commit
2ea10b5d07
  1. 28
      disco/gateway/client.py
  2. 7
      disco/types/guild.py

28
disco/gateway/client.py

@ -267,21 +267,27 @@ class GatewayClient(LoggingClass):
gevent.spawn(self.connect_and_run) gevent.spawn(self.connect_and_run)
self.ws_event.wait() self.ws_event.wait()
def request_guild_members(self, guild_id_or_ids, query=None, limit=0, user_id_or_ids=None, presences=None): def request_guild_members(self, guild_id_or_ids, query=None, limit=0, presences=False):
""" """
Request a batch of Guild members from Discord. Generally this function Request a batch of Guild members from Discord. Generally this function
can be called when initially loading Guilds to fill the local member state. can be called when initially loading Guilds to fill the local member state.
When calling this function, if user_id_or_ids is passed then query will be ignored.
""" """
payload = { self.send(OPCode.REQUEST_GUILD_MEMBERS, {
# This is simply unfortunate naming on the part of Discord... # This is simply unfortunate naming on the part of Discord...
'guild_id': guild_id_or_ids, 'guild_id': guild_id_or_ids,
'limit': limit, 'limit': limit,
} 'presences': presences,
payload.update(optional( 'query': query or '',
# This is simply Discord sticking to an unfortunate naming scheme... })
user_ids=user_id_or_ids,
query=query or '' if user_id_or_ids is None else None, def request_guild_members_by_id(self, guild_id_or_ids, user_id_or_ids, limit=0, presences=False):
presences=presences, """
)) Request a batch of Guild members from Discord by their snowflake(s).
self.send(OPCode.REQUEST_GUILD_MEMBERS, payload) """
self.send(OPCode.REQUEST_GUILD_MEMBERS, {
'guild_id': guild_id_or_ids,
'limit': limit,
'presences': presences,
# This is simply even more unfortunate naming from Discord...
'user_ids': user_id_or_ids,
})

7
disco/types/guild.py

@ -450,8 +450,11 @@ class Guild(SlottedModel, Permissible):
return self.client.api.guilds_roles_modify(self.id, to_snowflake(role), **kwargs) return self.client.api.guilds_roles_modify(self.id, to_snowflake(role), **kwargs)
def request_guild_members(self, query=None, limit=0, user_id_or_ids=None, presences=None): def request_guild_members(self, query=None, limit=0, presences=False):
self.client.gw.request_guild_members(self.id, query, limit, user_id_or_ids, presences) self.client.gw.request_guild_members(self.id, query, limit, presences)
def request_guild_members_by_id(self, user_id_or_ids, limit=0, presences=False):
self.client.gw.request_guild_members_by_id(self.id, user_id_or_ids, limit, presences)
def sync(self): def sync(self):
warnings.warn( warnings.warn(

Loading…
Cancel
Save