2018-04-06 16:36:29 +00:00
|
|
|
# Pyrogram - Telegram MTProto API Client Library for Python
|
|
|
|
# Copyright (C) 2017-2018 Dan Tès <https://github.com/delivrance>
|
|
|
|
#
|
|
|
|
# This file is part of Pyrogram.
|
|
|
|
#
|
|
|
|
# Pyrogram is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Lesser General Public License as published
|
|
|
|
# by the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# Pyrogram is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Lesser General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser General Public License
|
|
|
|
# along with Pyrogram. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
import logging
|
|
|
|
import threading
|
|
|
|
from collections import OrderedDict
|
|
|
|
from queue import Queue
|
|
|
|
from threading import Thread
|
|
|
|
|
|
|
|
from pyrogram.api import types
|
2018-05-07 12:30:55 +00:00
|
|
|
from ..ext import utils
|
2018-11-09 12:08:28 +00:00
|
|
|
from ..handlers import (
|
|
|
|
CallbackQueryHandler, MessageHandler, DeletedMessagesHandler,
|
|
|
|
UserStatusHandler, RawUpdateHandler, InlineQueryHandler
|
|
|
|
)
|
2018-04-06 16:36:29 +00:00
|
|
|
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
class Dispatcher:
|
2018-04-28 21:48:38 +00:00
|
|
|
NEW_MESSAGE_UPDATES = (
|
2018-04-08 10:43:47 +00:00
|
|
|
types.UpdateNewMessage,
|
|
|
|
types.UpdateNewChannelMessage
|
|
|
|
)
|
|
|
|
|
2018-04-28 21:48:38 +00:00
|
|
|
EDIT_MESSAGE_UPDATES = (
|
2018-04-08 10:43:47 +00:00
|
|
|
types.UpdateEditMessage,
|
|
|
|
types.UpdateEditChannelMessage
|
|
|
|
)
|
|
|
|
|
2018-06-19 14:18:12 +00:00
|
|
|
DELETE_MESSAGE_UPDATES = (
|
|
|
|
types.UpdateDeleteMessages,
|
|
|
|
types.UpdateDeleteChannelMessages
|
|
|
|
)
|
|
|
|
|
2018-10-19 09:54:27 +00:00
|
|
|
CALLBACK_QUERY_UPDATES = (
|
|
|
|
types.UpdateBotCallbackQuery,
|
|
|
|
types.UpdateInlineBotCallbackQuery
|
|
|
|
)
|
|
|
|
|
2018-04-28 21:48:38 +00:00
|
|
|
MESSAGE_UPDATES = NEW_MESSAGE_UPDATES + EDIT_MESSAGE_UPDATES
|
2018-04-08 10:43:47 +00:00
|
|
|
|
2018-10-19 09:54:27 +00:00
|
|
|
UPDATES = None
|
|
|
|
|
|
|
|
def __init__(self, client, workers: int):
|
2018-04-06 16:36:29 +00:00
|
|
|
self.client = client
|
|
|
|
self.workers = workers
|
2018-10-18 19:18:22 +00:00
|
|
|
|
2018-04-13 17:09:00 +00:00
|
|
|
self.workers_list = []
|
2018-04-06 16:36:29 +00:00
|
|
|
self.updates = Queue()
|
2018-04-10 12:52:31 +00:00
|
|
|
self.groups = OrderedDict()
|
2018-04-06 16:36:29 +00:00
|
|
|
|
2018-10-19 09:54:27 +00:00
|
|
|
Dispatcher.UPDATES = {
|
|
|
|
Dispatcher.MESSAGE_UPDATES:
|
|
|
|
lambda upd, usr, cht: (utils.parse_messages(self.client, upd.message, usr, cht), MessageHandler),
|
|
|
|
|
|
|
|
Dispatcher.DELETE_MESSAGE_UPDATES:
|
|
|
|
lambda upd, usr, cht: (utils.parse_deleted_messages(upd), DeletedMessagesHandler),
|
|
|
|
|
|
|
|
Dispatcher.CALLBACK_QUERY_UPDATES:
|
|
|
|
lambda upd, usr, cht: (utils.parse_callback_query(self.client, upd, usr), CallbackQueryHandler),
|
|
|
|
|
|
|
|
(types.UpdateUserStatus,):
|
2018-11-09 12:08:28 +00:00
|
|
|
lambda upd, usr, cht: (utils.parse_user_status(upd.status, upd.user_id), UserStatusHandler),
|
|
|
|
|
|
|
|
(types.UpdateBotInlineQuery,):
|
|
|
|
lambda upd, usr, cht: (utils.parse_inline_query(self.client, upd, usr), InlineQueryHandler)
|
2018-10-19 09:54:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Dispatcher.UPDATES = {key: value for key_tuple, value in Dispatcher.UPDATES.items() for key in key_tuple}
|
|
|
|
|
2018-04-06 16:36:29 +00:00
|
|
|
def start(self):
|
|
|
|
for i in range(self.workers):
|
2018-04-13 17:09:00 +00:00
|
|
|
self.workers_list.append(
|
|
|
|
Thread(
|
|
|
|
target=self.update_worker,
|
|
|
|
name="UpdateWorker#{}".format(i + 1)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
self.workers_list[-1].start()
|
2018-04-06 16:36:29 +00:00
|
|
|
|
|
|
|
def stop(self):
|
|
|
|
for _ in range(self.workers):
|
|
|
|
self.updates.put(None)
|
|
|
|
|
2018-10-18 19:18:22 +00:00
|
|
|
for worker in self.workers_list:
|
|
|
|
worker.join()
|
2018-04-13 17:09:00 +00:00
|
|
|
|
2018-04-29 18:20:34 +00:00
|
|
|
self.workers_list.clear()
|
|
|
|
|
2018-04-11 01:16:48 +00:00
|
|
|
def add_handler(self, handler, group: int):
|
2018-05-26 16:04:17 +00:00
|
|
|
if group not in self.groups:
|
|
|
|
self.groups[group] = []
|
|
|
|
self.groups = OrderedDict(sorted(self.groups.items()))
|
2018-04-10 12:52:31 +00:00
|
|
|
|
2018-05-26 16:04:17 +00:00
|
|
|
self.groups[group].append(handler)
|
2018-04-06 16:36:29 +00:00
|
|
|
|
2018-04-29 22:15:24 +00:00
|
|
|
def remove_handler(self, handler, group: int):
|
2018-05-26 16:04:17 +00:00
|
|
|
if group not in self.groups:
|
2018-10-18 19:18:22 +00:00
|
|
|
raise ValueError("Group {} does not exist. Handler was not removed.".format(group))
|
|
|
|
|
2018-05-26 16:04:17 +00:00
|
|
|
self.groups[group].remove(handler)
|
2018-04-09 21:35:51 +00:00
|
|
|
|
2018-04-06 16:36:29 +00:00
|
|
|
def update_worker(self):
|
|
|
|
name = threading.current_thread().name
|
|
|
|
log.debug("{} started".format(name))
|
|
|
|
|
|
|
|
while True:
|
|
|
|
update = self.updates.get()
|
|
|
|
|
|
|
|
if update is None:
|
|
|
|
break
|
|
|
|
|
|
|
|
try:
|
|
|
|
users = {i.id: i for i in update[1]}
|
|
|
|
chats = {i.id: i for i in update[2]}
|
|
|
|
update = update[0]
|
|
|
|
|
2018-10-19 09:54:27 +00:00
|
|
|
parser = Dispatcher.UPDATES.get(type(update), None)
|
2018-06-19 14:18:12 +00:00
|
|
|
|
2018-10-19 09:54:27 +00:00
|
|
|
if parser is None:
|
2018-04-28 21:48:38 +00:00
|
|
|
continue
|
2018-10-17 18:37:53 +00:00
|
|
|
|
2018-10-19 09:54:27 +00:00
|
|
|
update, handler_type = parser(update, users, chats)
|
|
|
|
|
|
|
|
for group in self.groups.values():
|
|
|
|
for handler in group:
|
|
|
|
args = None
|
|
|
|
|
|
|
|
if isinstance(handler, RawUpdateHandler):
|
|
|
|
args = (update, users, chats)
|
|
|
|
elif isinstance(handler, handler_type):
|
|
|
|
if handler.check(update):
|
|
|
|
args = (update,)
|
|
|
|
|
2018-11-09 08:21:01 +00:00
|
|
|
if args is None:
|
|
|
|
continue
|
|
|
|
|
|
|
|
try:
|
|
|
|
handler.callback(self.client, *args)
|
|
|
|
except Exception as e:
|
|
|
|
log.error(e, exc_info=True)
|
|
|
|
finally:
|
|
|
|
break
|
2018-04-06 16:36:29 +00:00
|
|
|
except Exception as e:
|
|
|
|
log.error(e, exc_info=True)
|
|
|
|
|
|
|
|
log.debug("{} stopped".format(name))
|