Telethon/telethon/events/common.py

187 lines
6.2 KiB
Python
Raw Normal View History

2018-04-05 21:14:22 +03:00
import abc
2018-08-21 13:14:32 +03:00
import asyncio
2018-04-05 21:14:22 +03:00
import warnings
from .. import utils
2020-07-04 13:18:39 +03:00
from ..tl import TLObject, types
2018-07-10 16:15:22 +03:00
from ..tl.custom.chatgetter import ChatGetter
2018-04-05 21:14:22 +03:00
2018-06-13 17:20:15 +03:00
async def _into_id_set(client, chats):
2018-04-05 21:14:22 +03:00
"""Helper util to turn the input chat or chats into a set of IDs."""
if chats is None:
return None
if not utils.is_list_like(chats):
chats = (chats,)
result = set()
for chat in chats:
if isinstance(chat, int):
if chat < 0:
result.add(chat) # Explicitly marked IDs are negative
else:
result.update({ # Support all valid types of peers
utils.get_peer_id(types.PeerUser(chat)),
utils.get_peer_id(types.PeerChat(chat)),
utils.get_peer_id(types.PeerChannel(chat)),
})
elif isinstance(chat, TLObject) and chat.SUBCLASS_OF_ID == 0x2d45687:
# 0x2d45687 == crc32(b'Peer')
result.add(utils.get_peer_id(chat))
else:
2018-06-13 17:20:15 +03:00
chat = await client.get_input_entity(chat)
2018-04-05 21:14:22 +03:00
if isinstance(chat, types.InputPeerSelf):
2018-06-13 17:20:15 +03:00
chat = await client.get_me(input_peer=True)
2018-04-05 21:14:22 +03:00
result.add(utils.get_peer_id(chat))
return result
class EventBuilder(abc.ABC):
"""
The common event builder, with builtin support to filter per chat.
Args:
chats (`entity`, optional):
2018-07-15 12:31:14 +03:00
May be one or more entities (username/peer/etc.), preferably IDs.
By default, only matching chats will be handled.
2018-04-05 21:14:22 +03:00
blacklist_chats (`bool`, optional):
Whether to treat the chats as a blacklist instead of
as a whitelist (default). This means that every chat
will be handled *except* those specified in ``chats``
which will be ignored if ``blacklist_chats=True``.
func (`callable`, optional):
A callable (async or not) function that should accept the event as input
parameter, and return a value indicating whether the event
should be dispatched or not (any truthy value will do, it
does not need to be a `bool`). It works like a custom filter:
.. code-block:: python
@client.on(events.NewMessage(func=lambda e: e.is_private))
async def handler(event):
pass # code here
2018-04-05 21:14:22 +03:00
"""
def __init__(self, chats=None, *, blacklist_chats=False, func=None):
2018-04-05 21:14:22 +03:00
self.chats = chats
self.blacklist_chats = bool(blacklist_chats)
self.resolved = False
self.func = func
self._resolve_lock = None
2018-04-05 21:14:22 +03:00
2018-07-19 02:47:32 +03:00
@classmethod
2018-04-05 21:14:22 +03:00
@abc.abstractmethod
def build(cls, update, others=None, self_id=None):
2019-06-30 14:23:18 +03:00
"""
Builds an event for the given update if possible, or returns None.
`others` are the rest of updates that came in the same container
as the current `update`.
`self_id` should be the current user's ID, since it is required
for some events which lack this information but still need it.
2019-06-30 14:23:18 +03:00
"""
# TODO So many parameters specific to only some update types seems dirty
2018-04-05 21:14:22 +03:00
2018-06-13 17:20:15 +03:00
async def resolve(self, client):
2018-04-05 21:14:22 +03:00
"""Helper method to allow event builders to be resolved before usage"""
if self.resolved:
return
if not self._resolve_lock:
self._resolve_lock = asyncio.Lock()
async with self._resolve_lock:
if not self.resolved:
await self._resolve(client)
self.resolved = True
2018-04-05 21:14:22 +03:00
async def _resolve(self, client):
self.chats = await _into_id_set(client, self.chats)
2018-08-21 13:14:32 +03:00
2018-07-11 12:22:43 +03:00
def filter(self, event):
2018-04-05 21:14:22 +03:00
"""
Returns a truthy value if the event passed the filter and should be
used, or falsy otherwise. The return value may need to be awaited.
2018-08-21 13:14:32 +03:00
The events must have been resolved before this can be called.
2018-04-05 21:14:22 +03:00
"""
2018-08-21 13:14:32 +03:00
if not self.resolved:
return
2018-08-21 13:14:32 +03:00
2018-04-05 21:14:22 +03:00
if self.chats is not None:
# Note: the `event.chat_id` property checks if it's `None` for us
inside = event.chat_id in self.chats
2018-04-05 21:14:22 +03:00
if inside == self.blacklist_chats:
# If this chat matches but it's a blacklist ignore.
# If it doesn't match but it's a whitelist ignore.
return
if not self.func:
return True
# Return the result of func directly as it may need to be awaited
return self.func(event)
2018-04-05 21:14:22 +03:00
2018-07-10 16:15:22 +03:00
class EventCommon(ChatGetter, abc.ABC):
"""
Intermediate class with common things to all events.
2018-07-10 16:15:22 +03:00
Remember that this class implements `ChatGetter
<telethon.tl.custom.chatgetter.ChatGetter>` which
means you have access to all chat properties and methods.
In addition, you can access the `original_update`
field which contains the original :tl:`Update`.
"""
2018-04-05 21:14:22 +03:00
_event_name = 'Event'
def __init__(self, chat_peer=None, msg_id=None, broadcast=None):
super().__init__(chat_peer, broadcast=broadcast)
2018-04-05 21:14:22 +03:00
self._entities = {}
self._client = None
self._message_id = msg_id
2018-04-28 13:58:41 +03:00
self.original_update = None
2018-04-05 21:14:22 +03:00
2018-05-31 14:30:22 +03:00
def _set_client(self, client):
"""
Setter so subclasses can act accordingly when the client is set.
"""
self._client = client
2019-05-01 18:07:12 +03:00
if self._chat_peer:
self._chat, self._input_chat = utils._get_entity_pair(
self.chat_id, self._entities, client._mb_entity_cache)
2019-05-01 18:07:12 +03:00
else:
self._chat = self._input_chat = None
2018-05-31 14:30:22 +03:00
2018-04-05 21:14:22 +03:00
@property
def client(self):
"""
The `telethon.TelegramClient` that created this event.
"""
2018-04-05 21:14:22 +03:00
return self._client
def __str__(self):
return TLObject.pretty_format(self.to_dict())
def stringify(self):
return TLObject.pretty_format(self.to_dict(), indent=0)
def to_dict(self):
d = {k: v for k, v in self.__dict__.items() if k[0] != '_'}
d['_'] = self._event_name
return d
def name_inner_event(cls):
"""Decorator to rename cls.Event 'Event' as 'cls.Event'"""
if hasattr(cls, 'Event'):
cls.Event._event_name = '{}.Event'.format(cls.__name__)
else:
warnings.warn('Class {} does not have a inner Event'.format(cls))
return cls