2020-03-21 14:43:32 +00:00
|
|
|
# Pyrogram - Telegram MTProto API Client Library for Python
|
|
|
|
# Copyright (C) 2017-2020 Dan <https://github.com/delivrance>
|
2018-05-09 11:06:32 +00:00
|
|
|
#
|
2020-03-21 14:43:32 +00:00
|
|
|
# This file is part of Pyrogram.
|
2018-05-09 11:06:32 +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-05-09 11:06:32 +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-05-09 11:06:32 +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-05-09 11:06:32 +00:00
|
|
|
|
2019-01-27 10:13:10 +00:00
|
|
|
import logging
|
2019-06-08 13:13:52 +00:00
|
|
|
from typing import Union, List
|
2018-12-19 13:50:23 +00:00
|
|
|
|
2018-05-11 16:00:16 +00:00
|
|
|
import pyrogram
|
2018-05-09 18:27:29 +00:00
|
|
|
from pyrogram.api import functions
|
2019-06-08 13:13:52 +00:00
|
|
|
from pyrogram.client.ext import utils
|
2018-12-17 13:18:41 +00:00
|
|
|
from ...ext import BaseClient
|
2018-05-09 11:06:32 +00:00
|
|
|
|
2019-09-08 17:24:06 +00:00
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
2018-05-09 11:06:32 +00:00
|
|
|
|
|
|
|
class GetHistory(BaseClient):
|
2019-03-16 18:23:23 +00:00
|
|
|
def get_history(
|
|
|
|
self,
|
|
|
|
chat_id: Union[int, str],
|
|
|
|
limit: int = 100,
|
|
|
|
offset: int = 0,
|
|
|
|
offset_id: int = 0,
|
|
|
|
offset_date: int = 0,
|
|
|
|
reverse: bool = False
|
2019-06-08 13:13:52 +00:00
|
|
|
) -> List["pyrogram.Message"]:
|
2019-05-12 17:49:06 +00:00
|
|
|
"""Retrieve a chunk of the history of a chat.
|
2018-05-09 17:29:23 +00:00
|
|
|
|
|
|
|
You can get up to 100 messages at once.
|
2019-05-30 13:23:43 +00:00
|
|
|
For a more convenient way of getting a chat history see :meth:`~Client.iter_history`.
|
2018-05-09 17:29:23 +00:00
|
|
|
|
2019-05-09 02:28:46 +00:00
|
|
|
Parameters:
|
2018-05-09 17:29:23 +00:00
|
|
|
chat_id (``int`` | ``str``):
|
|
|
|
Unique identifier (int) or username (str) of the target chat.
|
|
|
|
For your personal cloud (Saved Messages) you can simply use "me" or "self".
|
|
|
|
For a contact that exists in your Telegram address book you can use his phone number (str).
|
|
|
|
|
|
|
|
limit (``int``, *optional*):
|
|
|
|
Limits the number of messages to be retrieved.
|
|
|
|
By default, the first 100 messages are returned.
|
|
|
|
|
2019-01-02 16:27:40 +00:00
|
|
|
offset (``int``, *optional*):
|
2018-12-27 22:55:56 +00:00
|
|
|
Sequential number of the first message to be returned. Defaults to 0 (most recent message).
|
|
|
|
Negative values are also accepted and become useful in case you set offset_id or offset_date.
|
|
|
|
|
2018-05-09 17:29:23 +00:00
|
|
|
offset_id (``int``, *optional*):
|
|
|
|
Pass a message identifier as offset to retrieve only older messages starting from that message.
|
|
|
|
|
|
|
|
offset_date (``int``, *optional*):
|
|
|
|
Pass a date in Unix time as offset to retrieve only older messages starting from that date.
|
2018-05-11 16:00:16 +00:00
|
|
|
|
2019-01-04 13:36:42 +00:00
|
|
|
reverse (``bool``, *optional*):
|
2018-12-27 22:55:56 +00:00
|
|
|
Pass True to retrieve the messages in reversed order (from older to most recent).
|
|
|
|
|
2018-05-11 16:00:16 +00:00
|
|
|
Returns:
|
2019-06-08 13:13:52 +00:00
|
|
|
List of :obj:`Message` - On success, a list of the retrieved messages is returned.
|
2018-05-11 16:00:16 +00:00
|
|
|
|
2019-07-25 09:22:14 +00:00
|
|
|
Example:
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
# Get the last 100 messages of a chat
|
|
|
|
app.get_history("pyrogramchat")
|
|
|
|
|
|
|
|
# Get the last 3 messages of a chat
|
|
|
|
app.get_history("pyrogramchat", limit=3)
|
|
|
|
|
|
|
|
# Get 3 messages after skipping the first 5
|
|
|
|
app.get_history("pyrogramchat", offset=5, limit=3)
|
2018-05-09 17:29:23 +00:00
|
|
|
"""
|
2018-12-27 22:55:56 +00:00
|
|
|
|
2019-06-08 13:13:52 +00:00
|
|
|
offset_id = offset_id or (1 if reverse else 0)
|
|
|
|
|
2020-05-07 10:53:45 +00:00
|
|
|
messages = utils.parse_messages(
|
|
|
|
self,
|
|
|
|
self.send(
|
|
|
|
functions.messages.GetHistory(
|
|
|
|
peer=self.resolve_peer(chat_id),
|
|
|
|
offset_id=offset_id,
|
|
|
|
offset_date=offset_date,
|
|
|
|
add_offset=offset * (-1 if reverse else 1) - (limit if reverse else 0),
|
|
|
|
limit=limit,
|
|
|
|
max_id=0,
|
|
|
|
min_id=0,
|
|
|
|
hash=0
|
2018-12-17 13:18:41 +00:00
|
|
|
)
|
2020-05-07 10:53:45 +00:00
|
|
|
)
|
|
|
|
)
|
2018-12-27 22:55:56 +00:00
|
|
|
|
2019-01-04 13:36:42 +00:00
|
|
|
if reverse:
|
2019-06-08 13:13:52 +00:00
|
|
|
messages.reverse()
|
2018-12-27 22:55:56 +00:00
|
|
|
|
|
|
|
return messages
|