2018-07-10 18:58:40 +03:00
|
|
|
import re
|
2018-09-19 17:40:35 +03:00
|
|
|
import struct
|
2018-07-10 18:58:40 +03:00
|
|
|
|
2018-07-10 17:03:30 +03:00
|
|
|
from .common import EventBuilder, EventCommon, name_inner_event
|
|
|
|
from .. import utils
|
|
|
|
from ..tl import types, functions
|
|
|
|
from ..tl.custom.sendergetter import SenderGetter
|
|
|
|
|
|
|
|
|
|
|
|
@name_inner_event
|
|
|
|
class CallbackQuery(EventBuilder):
|
|
|
|
"""
|
2019-06-11 12:09:22 +03:00
|
|
|
Occurs whenever you sign in as a bot and a user
|
|
|
|
clicks one of the inline buttons on your messages.
|
2018-07-10 18:58:40 +03:00
|
|
|
|
|
|
|
Note that the `chats` parameter will **not** work with normal
|
|
|
|
IDs or peers if the clicked inline button comes from a "via bot"
|
|
|
|
message. The `chats` parameter also supports checking against the
|
|
|
|
`chat_instance` which should be used for inline callbacks.
|
|
|
|
|
|
|
|
Args:
|
2019-07-05 22:03:07 +03:00
|
|
|
data (`bytes`, `str`, `callable`, optional):
|
2018-07-10 18:58:40 +03:00
|
|
|
If set, the inline button payload data must match this data.
|
|
|
|
A UTF-8 string can also be given, a regex or a callable. For
|
|
|
|
instance, to check against ``'data_1'`` and ``'data_2'`` you
|
|
|
|
can use ``re.compile(b'data_')``.
|
2019-07-05 22:03:07 +03:00
|
|
|
|
|
|
|
pattern (`bytes`, `str`, `callable`, `Pattern`, optional):
|
|
|
|
If set, only buttons with payload matching this pattern will be handled.
|
|
|
|
You can specify a regex-like string which will be matched
|
2019-07-06 13:10:25 +03:00
|
|
|
against the payload data, a callable function that returns `True`
|
2019-07-05 22:03:07 +03:00
|
|
|
if a the payload data is acceptable, or a compiled regex pattern.
|
|
|
|
|
2020-02-20 12:18:26 +03:00
|
|
|
Example
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
from telethon import events, Button
|
|
|
|
|
|
|
|
# Handle all callback queries and check data inside the handler
|
|
|
|
@client.on(events.CallbackQuery)
|
|
|
|
async def handler(event):
|
|
|
|
if event.data == b'yes':
|
|
|
|
await event.answer('Correct answer!')
|
|
|
|
|
|
|
|
# Handle only callback queries with data being b'no'
|
|
|
|
@client.on(events.CallbackQuery(data=b'no'))
|
|
|
|
async def handler(event):
|
|
|
|
# Pop-up message with alert
|
|
|
|
await event.answer('Wrong answer!', alert=True)
|
|
|
|
|
|
|
|
# Send a message with buttons users can click
|
|
|
|
async def main():
|
|
|
|
await client.send_message(user, 'Yes or no?', buttons=[
|
2020-03-11 12:02:19 +03:00
|
|
|
Button.inline('Yes!', b'yes'),
|
2020-02-20 12:18:26 +03:00
|
|
|
Button.inline('Nope', b'no')
|
|
|
|
])
|
2018-07-10 17:03:30 +03:00
|
|
|
"""
|
2018-09-09 16:48:54 +03:00
|
|
|
def __init__(
|
2019-07-05 22:03:07 +03:00
|
|
|
self, chats=None, *, blacklist_chats=False, func=None, data=None, pattern=None):
|
2018-09-09 16:48:54 +03:00
|
|
|
super().__init__(chats, blacklist_chats=blacklist_chats, func=func)
|
2018-07-10 18:58:40 +03:00
|
|
|
|
2019-07-05 22:03:07 +03:00
|
|
|
if data and pattern:
|
|
|
|
raise ValueError("Only pass either data or pattern not both.")
|
|
|
|
|
|
|
|
if isinstance(data, str):
|
|
|
|
data = data.encode('utf-8')
|
|
|
|
if isinstance(pattern, str):
|
2019-07-10 18:37:36 +03:00
|
|
|
pattern = pattern.encode('utf-8')
|
2019-07-05 22:03:07 +03:00
|
|
|
|
|
|
|
match = data if data else pattern
|
|
|
|
|
|
|
|
if isinstance(match, bytes):
|
|
|
|
self.match = data if data else re.compile(pattern).match
|
|
|
|
elif not match or callable(match):
|
|
|
|
self.match = match
|
|
|
|
elif hasattr(match, 'match') and callable(match.match):
|
|
|
|
if not isinstance(getattr(match, 'pattern', b''), bytes):
|
|
|
|
match = re.compile(match.pattern.encode('utf-8'),
|
|
|
|
match.flags & (~re.UNICODE))
|
|
|
|
|
|
|
|
self.match = match.match
|
2018-07-10 18:58:40 +03:00
|
|
|
else:
|
2019-07-05 22:03:07 +03:00
|
|
|
raise TypeError('Invalid data or pattern type given')
|
|
|
|
|
|
|
|
self._no_check = all(x is None for x in (
|
|
|
|
self.chats, self.func, self.match,
|
|
|
|
))
|
2018-07-10 18:58:40 +03:00
|
|
|
|
2018-07-19 02:47:32 +03:00
|
|
|
@classmethod
|
2019-08-07 01:46:19 +03:00
|
|
|
def build(cls, update, others=None, self_id=None):
|
2018-09-19 17:40:35 +03:00
|
|
|
if isinstance(update, types.UpdateBotCallbackQuery):
|
2019-06-30 14:23:18 +03:00
|
|
|
return cls.Event(update, update.peer, update.msg_id)
|
2018-09-19 17:40:35 +03:00
|
|
|
elif isinstance(update, types.UpdateInlineBotCallbackQuery):
|
|
|
|
# See https://github.com/LonamiWebs/Telethon/pull/1005
|
|
|
|
# The long message ID is actually just msg_id + peer_id
|
|
|
|
mid, pid = struct.unpack('<ii', struct.pack('<q', update.msg_id.id))
|
|
|
|
peer = types.PeerChannel(-pid) if pid < 0 else types.PeerUser(pid)
|
2019-06-30 14:23:18 +03:00
|
|
|
return cls.Event(update, peer, mid)
|
2018-07-10 17:03:30 +03:00
|
|
|
|
2018-07-11 12:22:43 +03:00
|
|
|
def filter(self, event):
|
2019-04-13 17:42:53 +03:00
|
|
|
# We can't call super().filter(...) because it ignores chat_instance
|
2019-07-05 22:03:07 +03:00
|
|
|
if self._no_check:
|
|
|
|
return event
|
|
|
|
|
2018-07-10 18:58:40 +03:00
|
|
|
if self.chats is not None:
|
|
|
|
inside = event.query.chat_instance in self.chats
|
|
|
|
if event.chat_id:
|
|
|
|
inside |= event.chat_id in self.chats
|
|
|
|
|
|
|
|
if inside == self.blacklist_chats:
|
2019-07-05 22:03:07 +03:00
|
|
|
return
|
2018-07-10 18:58:40 +03:00
|
|
|
|
2019-07-05 22:03:07 +03:00
|
|
|
if self.match:
|
|
|
|
if callable(self.match):
|
|
|
|
event.data_match = event.pattern_match = self.match(event.query.data)
|
2018-07-10 18:58:40 +03:00
|
|
|
if not event.data_match:
|
2019-07-05 22:03:07 +03:00
|
|
|
return
|
|
|
|
elif event.query.data != self.match:
|
|
|
|
return
|
2018-07-10 18:58:40 +03:00
|
|
|
|
2020-05-16 10:58:37 +03:00
|
|
|
if self.func:
|
|
|
|
# Return the result of func directly as it may need to be awaited
|
|
|
|
return self.func(event)
|
|
|
|
return True
|
2018-07-10 18:58:40 +03:00
|
|
|
|
2018-07-10 17:03:30 +03:00
|
|
|
class Event(EventCommon, SenderGetter):
|
|
|
|
"""
|
|
|
|
Represents the event of a new callback query.
|
|
|
|
|
|
|
|
Members:
|
|
|
|
query (:tl:`UpdateBotCallbackQuery`):
|
|
|
|
The original :tl:`UpdateBotCallbackQuery`.
|
2018-07-10 18:58:40 +03:00
|
|
|
|
|
|
|
data_match (`obj`, optional):
|
|
|
|
The object returned by the ``data=`` parameter
|
|
|
|
when creating the event builder, if any. Similar
|
|
|
|
to ``pattern_match`` for the new message event.
|
2021-08-22 14:38:54 +03:00
|
|
|
|
2019-07-05 22:03:07 +03:00
|
|
|
pattern_match (`obj`, optional):
|
|
|
|
Alias for ``data_match``.
|
2018-07-10 17:03:30 +03:00
|
|
|
"""
|
2018-09-19 17:40:35 +03:00
|
|
|
def __init__(self, query, peer, msg_id):
|
|
|
|
super().__init__(peer, msg_id=msg_id)
|
2019-05-12 15:00:12 +03:00
|
|
|
SenderGetter.__init__(self, query.user_id)
|
2018-07-10 17:03:30 +03:00
|
|
|
self.query = query
|
2018-07-10 18:58:40 +03:00
|
|
|
self.data_match = None
|
2019-07-05 22:03:07 +03:00
|
|
|
self.pattern_match = None
|
2018-07-10 17:03:30 +03:00
|
|
|
self._message = None
|
|
|
|
self._answered = False
|
|
|
|
|
2019-05-01 18:07:12 +03:00
|
|
|
def _set_client(self, client):
|
|
|
|
super()._set_client(client)
|
2019-05-01 18:52:32 +03:00
|
|
|
self._sender, self._input_sender = utils._get_entity_pair(
|
|
|
|
self.sender_id, self._entities, client._entity_cache)
|
2019-03-28 12:47:15 +03:00
|
|
|
|
2018-07-10 17:03:30 +03:00
|
|
|
@property
|
|
|
|
def id(self):
|
|
|
|
"""
|
|
|
|
Returns the query ID. The user clicking the inline
|
|
|
|
button is the one who generated this random ID.
|
|
|
|
"""
|
|
|
|
return self.query.query_id
|
|
|
|
|
|
|
|
@property
|
|
|
|
def message_id(self):
|
|
|
|
"""
|
|
|
|
Returns the message ID to which the clicked inline button belongs.
|
|
|
|
"""
|
2018-09-19 17:40:35 +03:00
|
|
|
return self._message_id
|
2018-07-10 17:03:30 +03:00
|
|
|
|
|
|
|
@property
|
|
|
|
def data(self):
|
|
|
|
"""
|
|
|
|
Returns the data payload from the original inline button.
|
|
|
|
"""
|
|
|
|
return self.query.data
|
|
|
|
|
2018-07-10 18:58:40 +03:00
|
|
|
@property
|
|
|
|
def chat_instance(self):
|
|
|
|
"""
|
|
|
|
Unique identifier for the chat where the callback occurred.
|
|
|
|
Useful for high scores in games.
|
|
|
|
"""
|
|
|
|
return self.query.chat_instance
|
|
|
|
|
2018-07-10 17:03:30 +03:00
|
|
|
async def get_message(self):
|
|
|
|
"""
|
|
|
|
Returns the message to which the clicked inline button belongs.
|
|
|
|
"""
|
|
|
|
if self._message is not None:
|
|
|
|
return self._message
|
|
|
|
|
|
|
|
try:
|
|
|
|
chat = await self.get_input_chat() if self.is_channel else None
|
|
|
|
self._message = await self._client.get_messages(
|
2018-09-19 17:42:22 +03:00
|
|
|
chat, ids=self._message_id)
|
2018-07-10 17:03:30 +03:00
|
|
|
except ValueError:
|
|
|
|
return
|
|
|
|
|
|
|
|
return self._message
|
|
|
|
|
|
|
|
async def _refetch_sender(self):
|
|
|
|
self._sender = self._entities.get(self.sender_id)
|
|
|
|
if not self._sender:
|
|
|
|
return
|
|
|
|
|
|
|
|
self._input_sender = utils.get_input_peer(self._chat)
|
|
|
|
if not getattr(self._input_sender, 'access_hash', True):
|
|
|
|
# getattr with True to handle the InputPeerSelf() case
|
|
|
|
try:
|
2019-03-26 13:39:25 +03:00
|
|
|
self._input_sender = self._client._entity_cache[self._sender_id]
|
|
|
|
except KeyError:
|
2018-07-10 17:03:30 +03:00
|
|
|
m = await self.get_message()
|
|
|
|
if m:
|
|
|
|
self._sender = m._sender
|
|
|
|
self._input_sender = m._input_sender
|
|
|
|
|
|
|
|
async def answer(
|
|
|
|
self, message=None, cache_time=0, *, url=None, alert=False):
|
|
|
|
"""
|
|
|
|
Answers the callback query (and stops the loading circle).
|
|
|
|
|
|
|
|
Args:
|
|
|
|
message (`str`, optional):
|
|
|
|
The toast message to show feedback to the user.
|
|
|
|
|
|
|
|
cache_time (`int`, optional):
|
|
|
|
For how long this result should be cached on
|
|
|
|
the user's client. Defaults to 0 for no cache.
|
|
|
|
|
|
|
|
url (`str`, optional):
|
|
|
|
The URL to be opened in the user's client. Note that
|
|
|
|
the only valid URLs are those of games your bot has,
|
|
|
|
or alternatively a 't.me/your_bot?start=xyz' parameter.
|
|
|
|
|
|
|
|
alert (`bool`, optional):
|
|
|
|
Whether an alert (a pop-up dialog) should be used
|
2019-07-06 13:10:25 +03:00
|
|
|
instead of showing a toast. Defaults to `False`.
|
2018-07-10 17:03:30 +03:00
|
|
|
"""
|
|
|
|
if self._answered:
|
|
|
|
return
|
|
|
|
|
|
|
|
self._answered = True
|
|
|
|
return await self._client(
|
|
|
|
functions.messages.SetBotCallbackAnswerRequest(
|
|
|
|
query_id=self.query.query_id,
|
|
|
|
cache_time=cache_time,
|
|
|
|
alert=alert,
|
|
|
|
message=message,
|
|
|
|
url=url
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2019-03-23 21:25:45 +03:00
|
|
|
@property
|
|
|
|
def via_inline(self):
|
|
|
|
"""
|
|
|
|
Whether this callback was generated from an inline button sent
|
|
|
|
via an inline query or not. If the bot sent the message itself
|
2019-07-06 13:10:25 +03:00
|
|
|
with buttons, and one of those is clicked, this will be `False`.
|
2019-03-23 21:25:45 +03:00
|
|
|
If a user sent the message coming from an inline query to the
|
2019-07-06 13:10:25 +03:00
|
|
|
bot, and one of those is clicked, this will be `True`.
|
2019-03-23 21:25:45 +03:00
|
|
|
|
2019-07-06 13:10:25 +03:00
|
|
|
If it's `True`, it's likely that the bot is **not** in the
|
2019-03-23 21:25:45 +03:00
|
|
|
chat, so methods like `respond` or `delete` won't work (but
|
|
|
|
`edit` will always work).
|
|
|
|
"""
|
|
|
|
return isinstance(self.query, types.UpdateInlineBotCallbackQuery)
|
|
|
|
|
2018-07-10 17:03:30 +03:00
|
|
|
async def respond(self, *args, **kwargs):
|
|
|
|
"""
|
|
|
|
Responds to the message (not as a reply). Shorthand for
|
2018-10-17 12:47:51 +03:00
|
|
|
`telethon.client.messages.MessageMethods.send_message` with
|
2018-07-10 17:03:30 +03:00
|
|
|
``entity`` already set.
|
|
|
|
|
|
|
|
This method also creates a task to `answer` the callback.
|
2019-03-23 21:25:45 +03:00
|
|
|
|
2019-07-06 13:10:25 +03:00
|
|
|
This method will likely fail if `via_inline` is `True`.
|
2018-07-10 17:03:30 +03:00
|
|
|
"""
|
|
|
|
self._client.loop.create_task(self.answer())
|
|
|
|
return await self._client.send_message(
|
|
|
|
await self.get_input_chat(), *args, **kwargs)
|
|
|
|
|
|
|
|
async def reply(self, *args, **kwargs):
|
|
|
|
"""
|
|
|
|
Replies to the message (as a reply). Shorthand for
|
2018-10-17 12:47:51 +03:00
|
|
|
`telethon.client.messages.MessageMethods.send_message` with
|
2018-07-10 17:03:30 +03:00
|
|
|
both ``entity`` and ``reply_to`` already set.
|
|
|
|
|
|
|
|
This method also creates a task to `answer` the callback.
|
2019-03-23 21:25:45 +03:00
|
|
|
|
2019-07-06 13:10:25 +03:00
|
|
|
This method will likely fail if `via_inline` is `True`.
|
2018-07-10 17:03:30 +03:00
|
|
|
"""
|
|
|
|
self._client.loop.create_task(self.answer())
|
|
|
|
kwargs['reply_to'] = self.query.msg_id
|
|
|
|
return await self._client.send_message(
|
|
|
|
await self.get_input_chat(), *args, **kwargs)
|
|
|
|
|
|
|
|
async def edit(self, *args, **kwargs):
|
|
|
|
"""
|
2019-03-23 21:25:45 +03:00
|
|
|
Edits the message. Shorthand for
|
2018-10-17 12:47:51 +03:00
|
|
|
`telethon.client.messages.MessageMethods.edit_message` with
|
2019-03-23 21:25:45 +03:00
|
|
|
the ``entity`` set to the correct :tl:`InputBotInlineMessageID`.
|
2018-07-10 17:03:30 +03:00
|
|
|
|
2019-07-06 13:10:25 +03:00
|
|
|
Returns `True` if the edit was successful.
|
2018-07-10 17:03:30 +03:00
|
|
|
|
|
|
|
This method also creates a task to `answer` the callback.
|
2019-01-12 14:45:37 +03:00
|
|
|
|
|
|
|
.. note::
|
|
|
|
|
|
|
|
This method won't respect the previous message unlike
|
|
|
|
`Message.edit <telethon.tl.custom.message.Message.edit>`,
|
|
|
|
since the message object is normally not present.
|
2018-07-10 17:03:30 +03:00
|
|
|
"""
|
|
|
|
self._client.loop.create_task(self.answer())
|
2019-04-02 09:37:24 +03:00
|
|
|
if isinstance(self.query.msg_id, types.InputBotInlineMessageID):
|
|
|
|
return await self._client.edit_message(
|
|
|
|
self.query.msg_id, *args, **kwargs
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
return await self._client.edit_message(
|
|
|
|
await self.get_input_chat(), self.query.msg_id,
|
|
|
|
*args, **kwargs
|
|
|
|
)
|
2018-07-10 17:03:30 +03:00
|
|
|
|
|
|
|
async def delete(self, *args, **kwargs):
|
|
|
|
"""
|
|
|
|
Deletes the message. Shorthand for
|
2018-10-17 12:47:51 +03:00
|
|
|
`telethon.client.messages.MessageMethods.delete_messages` with
|
2018-07-10 17:03:30 +03:00
|
|
|
``entity`` and ``message_ids`` already set.
|
|
|
|
|
|
|
|
If you need to delete more than one message at once, don't use
|
|
|
|
this `delete` method. Use a
|
2018-10-17 12:47:51 +03:00
|
|
|
`telethon.client.telegramclient.TelegramClient` instance directly.
|
2018-07-10 17:03:30 +03:00
|
|
|
|
|
|
|
This method also creates a task to `answer` the callback.
|
2019-03-23 21:25:45 +03:00
|
|
|
|
2019-07-06 13:10:25 +03:00
|
|
|
This method will likely fail if `via_inline` is `True`.
|
2018-07-10 17:03:30 +03:00
|
|
|
"""
|
|
|
|
self._client.loop.create_task(self.answer())
|
|
|
|
return await self._client.delete_messages(
|
|
|
|
await self.get_input_chat(), [self.query.msg_id],
|
|
|
|
*args, **kwargs
|
|
|
|
)
|