mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2024-11-25 10:53:44 +03:00
Update ChatAction to include MessageActionGameScore (#1651)
This commit is contained in:
parent
8c56f95252
commit
022c1db33f
|
@ -11,6 +11,7 @@ class ChatAction(EventBuilder):
|
||||||
* Whenever a new chat is created.
|
* Whenever a new chat is created.
|
||||||
* Whenever a chat's title or photo is changed or removed.
|
* Whenever a chat's title or photo is changed or removed.
|
||||||
* Whenever a new message is pinned.
|
* Whenever a new message is pinned.
|
||||||
|
* Whenever a user scores in a game.
|
||||||
* Whenever a user joins or is added to the group.
|
* Whenever a user joins or is added to the group.
|
||||||
* Whenever a user is removed or leaves a group if it has
|
* Whenever a user is removed or leaves a group if it has
|
||||||
less than 50 members or the removed user was a bot.
|
less than 50 members or the removed user was a bot.
|
||||||
|
@ -29,6 +30,7 @@ class ChatAction(EventBuilder):
|
||||||
if event.user_joined:
|
if event.user_joined:
|
||||||
await event.reply('Welcome to the group!')
|
await event.reply('Welcome to the group!')
|
||||||
"""
|
"""
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def build(cls, update, others=None, self_id=None):
|
def build(cls, update, others=None, self_id=None):
|
||||||
# Rely on specific pin updates for unpins, but otherwise ignore them
|
# Rely on specific pin updates for unpins, but otherwise ignore them
|
||||||
|
@ -102,6 +104,9 @@ class ChatAction(EventBuilder):
|
||||||
elif isinstance(action, types.MessageActionPinMessage) and msg.reply_to:
|
elif isinstance(action, types.MessageActionPinMessage) and msg.reply_to:
|
||||||
return cls.Event(msg,
|
return cls.Event(msg,
|
||||||
pin_ids=[msg.reply_to_msg_id])
|
pin_ids=[msg.reply_to_msg_id])
|
||||||
|
elif isinstance(action, types.MessageActionGameScore):
|
||||||
|
return cls.Event(msg,
|
||||||
|
new_score=action.score)
|
||||||
|
|
||||||
class Event(EventCommon):
|
class Event(EventCommon):
|
||||||
"""
|
"""
|
||||||
|
@ -138,12 +143,16 @@ class ChatAction(EventBuilder):
|
||||||
new_title (`str`, optional):
|
new_title (`str`, optional):
|
||||||
The new title string for the chat, if applicable.
|
The new title string for the chat, if applicable.
|
||||||
|
|
||||||
|
new_score (`str`, optional):
|
||||||
|
The new score string for the game, if applicable.
|
||||||
|
|
||||||
unpin (`bool`):
|
unpin (`bool`):
|
||||||
`True` if the existing pin gets unpinned.
|
`True` if the existing pin gets unpinned.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(self, where, new_photo=None,
|
def __init__(self, where, new_photo=None,
|
||||||
added_by=None, kicked_by=None, created=None,
|
added_by=None, kicked_by=None, created=None,
|
||||||
users=None, new_title=None, pin_ids=None, pin=None):
|
users=None, new_title=None, pin_ids=None, pin=None, new_score=None):
|
||||||
if isinstance(where, types.MessageService):
|
if isinstance(where, types.MessageService):
|
||||||
self.action_message = where
|
self.action_message = where
|
||||||
where = where.peer_id
|
where = where.peer_id
|
||||||
|
@ -193,6 +202,7 @@ class ChatAction(EventBuilder):
|
||||||
self._users = None
|
self._users = None
|
||||||
self._input_users = None
|
self._input_users = None
|
||||||
self.new_title = new_title
|
self.new_title = new_title
|
||||||
|
self.new_score = new_score
|
||||||
self.unpin = not pin
|
self.unpin = not pin
|
||||||
|
|
||||||
def _set_client(self, client):
|
def _set_client(self, client):
|
||||||
|
|
Loading…
Reference in New Issue
Block a user