MTPyroger/pyrogram/handlers/deleted_messages_handler.py

56 lines
2.2 KiB
Python
Raw Normal View History

2020-03-21 14:43:32 +00:00
# Pyrogram - Telegram MTProto API Client Library for Python
2021-01-01 21:58:48 +00:00
# Copyright (C) 2017-2021 Dan <https://github.com/delivrance>
2018-06-19 14:18:12 +00:00
#
2020-03-21 14:43:32 +00:00
# This file is part of Pyrogram.
2018-06-19 14:18:12 +00:00
#
2020-03-21 14:43:32 +00:00
# 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.
2018-06-19 14:18:12 +00:00
#
2020-03-21 14:43:32 +00:00
# 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.
2018-06-19 14:18:12 +00:00
#
2020-03-21 14:43:32 +00:00
# You should have received a copy of the GNU Lesser General Public License
# along with Pyrogram. If not, see <http://www.gnu.org/licenses/>.
2018-06-19 14:18:12 +00:00
from typing import List, Callable
import pyrogram
from pyrogram.filters import Filter
from pyrogram.types import Message
2018-06-19 14:18:12 +00:00
from .handler import Handler
class DeletedMessagesHandler(Handler):
2019-06-08 13:13:52 +00:00
"""The deleted messages handler class. Used to handle deleted messages coming from any chat
(private, group, channel). It is intended to be used with :meth:`~pyrogram.Client.add_handler`
2018-06-19 14:18:12 +00:00
For a nicer way to register this handler, have a look at the
:meth:`~pyrogram.Client.on_deleted_messages` decorator.
Parameters:
2018-06-19 14:18:12 +00:00
callback (``callable``):
2019-06-08 13:13:52 +00:00
Pass a function that will be called when one or more messages have been deleted.
2018-06-20 10:19:32 +00:00
It takes *(client, messages)* as positional arguments (look at the section below for a detailed description).
2018-06-19 14:18:12 +00:00
filters (:obj:`Filters`):
2018-06-19 14:18:12 +00:00
Pass one or more filters to allow only a subset of messages to be passed
in your callback function.
Other parameters:
client (:obj:`~pyrogram.Client`):
2018-06-19 14:18:12 +00:00
The Client itself, useful when you want to call other API methods inside the message handler.
messages (List of :obj:`~pyrogram.types.Message`):
2019-06-08 13:13:52 +00:00
The deleted messages, as list.
2018-06-19 14:18:12 +00:00
"""
def __init__(self, callback: Callable, filters: Filter = None):
2018-06-19 14:18:12 +00:00
super().__init__(callback, filters)
async def check(self, client: "pyrogram.Client", messages: List[Message]):
return await super().check(client, messages[0])