Browse Source

Replace Message.get_reactors w/ Message.get_reactors_iter

Ideally this is the only implementation that makes sense. Users wishing
to only load some reactors should use the actual HTTP client routes.
pull/11/merge
Andrei 8 years ago
parent
commit
4ef91c8b15
  1. 24
      disco/types/message.py

24
disco/types/message.py

@ -301,34 +301,20 @@ class Message(SlottedModel):
"""
return self.client.api.channels_messages_delete(self.channel_id, self.id)
def get_reactors_iter(self, emoji, *args, **kwargs):
"""
Returns an iterator which paginates the reactors for the given emoji.
"""
if isinstance(emoji, Emoji):
emoji = emoji.to_string()
return Paginator(
self.client.api.channels_messages_reactions_get,
self.channel_id,
self.id,
emoji,
*args,
**kwargs)
def get_reactors(self, emoji, *args, **kwargs):
"""
Returns an list of users who reacted to this message with the given emoji.
Returns an iterator which paginates the reactors for the given emoji.
Returns
-------
list(:class:`User`)
The users who reacted.
Paginator(`User`)
An iterator which handles pagination of reactors.
"""
if isinstance(emoji, Emoji):
emoji = emoji.to_string()
return self.client.api.channels_messages_reactions_get(
return Paginator(
self.client.api.channels_messages_reactions_get,
self.channel_id,
self.id,
emoji,

Loading…
Cancel
Save