mirror of
https://github.com/eternnoir/pyTelegramBotAPI.git
synced 2023-08-10 21:12:57 +03:00
Merge pull request #1266 from coder2020official/master
New set of register_xxx_handler functions for dynamic handlers registering.
This commit is contained in:
commit
e818e3875d
@ -594,7 +594,7 @@ class TeleBot:
|
|||||||
This allows the bot to retrieve Updates automagically and notify listeners and message handlers accordingly.
|
This allows the bot to retrieve Updates automagically and notify listeners and message handlers accordingly.
|
||||||
|
|
||||||
Warning: Do not call this function more than once!
|
Warning: Do not call this function more than once!
|
||||||
|
|
||||||
Always get updates.
|
Always get updates.
|
||||||
:param interval: Delay between two update retrivals
|
:param interval: Delay between two update retrivals
|
||||||
:param none_stop: Do not stop polling when an ApiException occurs.
|
:param none_stop: Do not stop polling when an ApiException occurs.
|
||||||
@ -2520,6 +2520,23 @@ class TeleBot:
|
|||||||
"""
|
"""
|
||||||
self.message_handlers.append(handler_dict)
|
self.message_handlers.append(handler_dict)
|
||||||
|
|
||||||
|
def register_message_handler(self, callback, content_types=None, commands=None, regexp=None, func=None, **kwargs):
|
||||||
|
"""
|
||||||
|
Registers message handler.
|
||||||
|
:param callback: function to be called
|
||||||
|
:param content_types: list of content_types
|
||||||
|
:param commands: list of commands
|
||||||
|
:param regexp:
|
||||||
|
:param func:
|
||||||
|
:return: decorated function
|
||||||
|
"""
|
||||||
|
handler_dict = self._build_handler_dict(callback,
|
||||||
|
content_types=content_types,
|
||||||
|
commands=commands,
|
||||||
|
regexp=regexp,
|
||||||
|
func=func,
|
||||||
|
**kwargs)
|
||||||
|
self.add_message_handler(handler_dict)
|
||||||
def edited_message_handler(self, commands=None, regexp=None, func=None, content_types=None, **kwargs):
|
def edited_message_handler(self, commands=None, regexp=None, func=None, content_types=None, **kwargs):
|
||||||
"""
|
"""
|
||||||
Edit message handler decorator
|
Edit message handler decorator
|
||||||
@ -2554,6 +2571,23 @@ class TeleBot:
|
|||||||
"""
|
"""
|
||||||
self.edited_message_handlers.append(handler_dict)
|
self.edited_message_handlers.append(handler_dict)
|
||||||
|
|
||||||
|
def register_edited_message_handler(self, callback, content_types=None, commands=None, regexp=None, func=None, **kwargs):
|
||||||
|
"""
|
||||||
|
Registers edited message handler.
|
||||||
|
:param callback: function to be called
|
||||||
|
:param content_types: list of content_types
|
||||||
|
:param commands: list of commands
|
||||||
|
:param regexp:
|
||||||
|
:param func:
|
||||||
|
:return: decorated function
|
||||||
|
"""
|
||||||
|
handler_dict = self._build_handler_dict(callback,
|
||||||
|
content_types=content_types,
|
||||||
|
commands=commands,
|
||||||
|
regexp=regexp,
|
||||||
|
func=func,
|
||||||
|
**kwargs)
|
||||||
|
self.add_edited_message_handler(handler_dict)
|
||||||
def channel_post_handler(self, commands=None, regexp=None, func=None, content_types=None, **kwargs):
|
def channel_post_handler(self, commands=None, regexp=None, func=None, content_types=None, **kwargs):
|
||||||
"""
|
"""
|
||||||
Channel post handler decorator
|
Channel post handler decorator
|
||||||
@ -2587,7 +2621,24 @@ class TeleBot:
|
|||||||
:return:
|
:return:
|
||||||
"""
|
"""
|
||||||
self.channel_post_handlers.append(handler_dict)
|
self.channel_post_handlers.append(handler_dict)
|
||||||
|
|
||||||
|
def register_channel_post_handler(self, callback, content_types=None, commands=None, regexp=None, func=None, **kwargs):
|
||||||
|
"""
|
||||||
|
Registers channel post message handler.
|
||||||
|
:param callback: function to be called
|
||||||
|
:param content_types: list of content_types
|
||||||
|
:param commands: list of commands
|
||||||
|
:param regexp:
|
||||||
|
:param func:
|
||||||
|
:return: decorated function
|
||||||
|
"""
|
||||||
|
handler_dict = self._build_handler_dict(callback,
|
||||||
|
content_types=content_types,
|
||||||
|
commands=commands,
|
||||||
|
regexp=regexp,
|
||||||
|
func=func,
|
||||||
|
**kwargs)
|
||||||
|
self.add_channel_post_handler(handler_dict)
|
||||||
def edited_channel_post_handler(self, commands=None, regexp=None, func=None, content_types=None, **kwargs):
|
def edited_channel_post_handler(self, commands=None, regexp=None, func=None, content_types=None, **kwargs):
|
||||||
"""
|
"""
|
||||||
Edit channel post handler decorator
|
Edit channel post handler decorator
|
||||||
@ -2622,6 +2673,24 @@ class TeleBot:
|
|||||||
"""
|
"""
|
||||||
self.edited_channel_post_handlers.append(handler_dict)
|
self.edited_channel_post_handlers.append(handler_dict)
|
||||||
|
|
||||||
|
def register_edited_channel_post_handler(self, callback, content_types=None, commands=None, regexp=None, func=None, **kwargs):
|
||||||
|
"""
|
||||||
|
Registers edited channel post message handler.
|
||||||
|
:param callback: function to be called
|
||||||
|
:param content_types: list of content_types
|
||||||
|
:param commands: list of commands
|
||||||
|
:param regexp:
|
||||||
|
:param func:
|
||||||
|
:return: decorated function
|
||||||
|
"""
|
||||||
|
handler_dict = self._build_handler_dict(callback,
|
||||||
|
content_types=content_types,
|
||||||
|
commands=commands,
|
||||||
|
regexp=regexp,
|
||||||
|
func=func,
|
||||||
|
**kwargs)
|
||||||
|
self.add_edited_channel_post_handler(handler_dict)
|
||||||
|
|
||||||
def inline_handler(self, func, **kwargs):
|
def inline_handler(self, func, **kwargs):
|
||||||
"""
|
"""
|
||||||
Inline call handler decorator
|
Inline call handler decorator
|
||||||
@ -2645,6 +2714,18 @@ class TeleBot:
|
|||||||
"""
|
"""
|
||||||
self.inline_handlers.append(handler_dict)
|
self.inline_handlers.append(handler_dict)
|
||||||
|
|
||||||
|
def register_inline_handler(self, callback, func, **kwargs):
|
||||||
|
"""
|
||||||
|
Registers inline handler.
|
||||||
|
:param callback: function to be called
|
||||||
|
:param func:
|
||||||
|
:return: decorated function
|
||||||
|
"""
|
||||||
|
handler_dict = self._build_handler_dict(callback,
|
||||||
|
func=func,
|
||||||
|
**kwargs)
|
||||||
|
self.add_inline_handler(handler_dict)
|
||||||
|
|
||||||
def chosen_inline_handler(self, func, **kwargs):
|
def chosen_inline_handler(self, func, **kwargs):
|
||||||
"""
|
"""
|
||||||
Description: TBD
|
Description: TBD
|
||||||
@ -2668,6 +2749,19 @@ class TeleBot:
|
|||||||
"""
|
"""
|
||||||
self.chosen_inline_handlers.append(handler_dict)
|
self.chosen_inline_handlers.append(handler_dict)
|
||||||
|
|
||||||
|
def register_chosen_inline_handler(self, callback, func, **kwargs):
|
||||||
|
"""
|
||||||
|
Registers chosen inline handler.
|
||||||
|
:param callback: function to be called
|
||||||
|
:param func:
|
||||||
|
:return: decorated function
|
||||||
|
"""
|
||||||
|
handler_dict = self._build_handler_dict(callback,
|
||||||
|
func=func,
|
||||||
|
**kwargs)
|
||||||
|
self.add_chosen_inline_handler(handler_dict)
|
||||||
|
|
||||||
|
|
||||||
def callback_query_handler(self, func, **kwargs):
|
def callback_query_handler(self, func, **kwargs):
|
||||||
"""
|
"""
|
||||||
Callback request handler decorator
|
Callback request handler decorator
|
||||||
@ -2691,6 +2785,18 @@ class TeleBot:
|
|||||||
"""
|
"""
|
||||||
self.callback_query_handlers.append(handler_dict)
|
self.callback_query_handlers.append(handler_dict)
|
||||||
|
|
||||||
|
def register_callback_query_handler(self, callback, func, **kwargs):
|
||||||
|
"""
|
||||||
|
Registers callback query handler..
|
||||||
|
:param callback: function to be called
|
||||||
|
:param func:
|
||||||
|
:return: decorated function
|
||||||
|
"""
|
||||||
|
handler_dict = self._build_handler_dict(callback,
|
||||||
|
func=func,
|
||||||
|
**kwargs)
|
||||||
|
self.add_callback_query_handler(handler_dict)
|
||||||
|
|
||||||
def shipping_query_handler(self, func, **kwargs):
|
def shipping_query_handler(self, func, **kwargs):
|
||||||
"""
|
"""
|
||||||
Shipping request handler
|
Shipping request handler
|
||||||
@ -2714,6 +2820,18 @@ class TeleBot:
|
|||||||
"""
|
"""
|
||||||
self.shipping_query_handlers.append(handler_dict)
|
self.shipping_query_handlers.append(handler_dict)
|
||||||
|
|
||||||
|
def register_shipping_query_handler(self, callback, func, **kwargs):
|
||||||
|
"""
|
||||||
|
Registers shipping query handler.
|
||||||
|
:param callback: function to be called
|
||||||
|
:param func:
|
||||||
|
:return: decorated function
|
||||||
|
"""
|
||||||
|
handler_dict = self._build_handler_dict(callback,
|
||||||
|
func=func,
|
||||||
|
**kwargs)
|
||||||
|
self.add_shipping_query_handler(handler_dict)
|
||||||
|
|
||||||
def pre_checkout_query_handler(self, func, **kwargs):
|
def pre_checkout_query_handler(self, func, **kwargs):
|
||||||
"""
|
"""
|
||||||
Pre-checkout request handler
|
Pre-checkout request handler
|
||||||
@ -2736,6 +2854,18 @@ class TeleBot:
|
|||||||
:return:
|
:return:
|
||||||
"""
|
"""
|
||||||
self.pre_checkout_query_handlers.append(handler_dict)
|
self.pre_checkout_query_handlers.append(handler_dict)
|
||||||
|
|
||||||
|
def register_pre_checkout_query_handler(self, callback, func, **kwargs):
|
||||||
|
"""
|
||||||
|
Registers pre-checkout request handler.
|
||||||
|
:param callback: function to be called
|
||||||
|
:param func:
|
||||||
|
:return: decorated function
|
||||||
|
"""
|
||||||
|
handler_dict = self._build_handler_dict(callback,
|
||||||
|
func=func,
|
||||||
|
**kwargs)
|
||||||
|
self.add_pre_checkout_query_handler(handler_dict)
|
||||||
|
|
||||||
def poll_handler(self, func, **kwargs):
|
def poll_handler(self, func, **kwargs):
|
||||||
"""
|
"""
|
||||||
@ -2760,6 +2890,18 @@ class TeleBot:
|
|||||||
"""
|
"""
|
||||||
self.poll_handlers.append(handler_dict)
|
self.poll_handlers.append(handler_dict)
|
||||||
|
|
||||||
|
def register_poll_handler(self, callback, func, **kwargs):
|
||||||
|
"""
|
||||||
|
Registers poll handler.
|
||||||
|
:param callback: function to be called
|
||||||
|
:param func:
|
||||||
|
:return: decorated function
|
||||||
|
"""
|
||||||
|
handler_dict = self._build_handler_dict(callback,
|
||||||
|
func=func,
|
||||||
|
**kwargs)
|
||||||
|
self.add_poll_handler(handler_dict)
|
||||||
|
|
||||||
def poll_answer_handler(self, func=None, **kwargs):
|
def poll_answer_handler(self, func=None, **kwargs):
|
||||||
"""
|
"""
|
||||||
Poll_answer request handler
|
Poll_answer request handler
|
||||||
@ -2782,7 +2924,19 @@ class TeleBot:
|
|||||||
:return:
|
:return:
|
||||||
"""
|
"""
|
||||||
self.poll_answer_handlers.append(handler_dict)
|
self.poll_answer_handlers.append(handler_dict)
|
||||||
|
|
||||||
|
def register_poll_answer_handler(self, callback, func, **kwargs):
|
||||||
|
"""
|
||||||
|
Registers poll answer handler.
|
||||||
|
:param callback: function to be called
|
||||||
|
:param func:
|
||||||
|
:return: decorated function
|
||||||
|
"""
|
||||||
|
handler_dict = self._build_handler_dict(callback,
|
||||||
|
func=func,
|
||||||
|
**kwargs)
|
||||||
|
self.add_poll_answer_handler(handler_dict)
|
||||||
|
|
||||||
def my_chat_member_handler(self, func=None, **kwargs):
|
def my_chat_member_handler(self, func=None, **kwargs):
|
||||||
"""
|
"""
|
||||||
my_chat_member handler
|
my_chat_member handler
|
||||||
@ -2806,6 +2960,18 @@ class TeleBot:
|
|||||||
"""
|
"""
|
||||||
self.my_chat_member_handlers.append(handler_dict)
|
self.my_chat_member_handlers.append(handler_dict)
|
||||||
|
|
||||||
|
def register_my_chat_member_handler(self, callback, func=None, **kwargs):
|
||||||
|
"""
|
||||||
|
Registers my chat member handler.
|
||||||
|
:param callback: function to be called
|
||||||
|
:param func:
|
||||||
|
:return: decorated function
|
||||||
|
"""
|
||||||
|
handler_dict = self._build_handler_dict(callback,
|
||||||
|
func=func,
|
||||||
|
**kwargs)
|
||||||
|
self.add_my_chat_member_handler(handler_dict)
|
||||||
|
|
||||||
def chat_member_handler(self, func=None, **kwargs):
|
def chat_member_handler(self, func=None, **kwargs):
|
||||||
"""
|
"""
|
||||||
chat_member handler
|
chat_member handler
|
||||||
@ -2829,6 +2995,17 @@ class TeleBot:
|
|||||||
"""
|
"""
|
||||||
self.chat_member_handlers.append(handler_dict)
|
self.chat_member_handlers.append(handler_dict)
|
||||||
|
|
||||||
|
def register_chat_member_handler(self, callback, func=None, **kwargs):
|
||||||
|
"""
|
||||||
|
Registers chat member handler.
|
||||||
|
:param callback: function to be called
|
||||||
|
:param func:
|
||||||
|
:return: decorated function
|
||||||
|
"""
|
||||||
|
handler_dict = self._build_handler_dict(callback,
|
||||||
|
func=func,
|
||||||
|
**kwargs)
|
||||||
|
self.add_chat_member_handler(handler_dict)
|
||||||
|
|
||||||
def _test_message_handler(self, message_handler, message):
|
def _test_message_handler(self, message_handler, message):
|
||||||
"""
|
"""
|
||||||
|
Loading…
Reference in New Issue
Block a user