2018-05-09 11:06:32 +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/>.
|
|
|
|
|
2018-12-19 13:50:23 +00:00
|
|
|
from typing import Union
|
|
|
|
|
2018-05-11 16:00:16 +00:00
|
|
|
import pyrogram
|
2018-05-09 18:27:29 +00:00
|
|
|
from pyrogram.api import functions
|
2018-12-17 13:18:41 +00:00
|
|
|
from ...ext import BaseClient
|
2018-05-09 11:06:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
class GetHistory(BaseClient):
|
2018-06-18 19:30:13 +00:00
|
|
|
async def get_history(self,
|
2018-12-22 11:23:08 +00:00
|
|
|
chat_id: Union[int, str],
|
2018-06-18 19:30:13 +00:00
|
|
|
offset: int = 0,
|
|
|
|
limit: int = 100,
|
|
|
|
offset_id: int = 0,
|
|
|
|
offset_date: int = 0):
|
2018-05-09 17:29:23 +00:00
|
|
|
"""Use this method to retrieve the history of a chat.
|
|
|
|
|
|
|
|
You can get up to 100 messages at once.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
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).
|
|
|
|
|
|
|
|
offset (``int``, *optional*)
|
|
|
|
Sequential number of the first message to be returned.
|
|
|
|
Defaults to 0 (most recent message).
|
|
|
|
|
|
|
|
limit (``int``, *optional*):
|
|
|
|
Limits the number of messages to be retrieved.
|
|
|
|
By default, the first 100 messages are returned.
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
Returns:
|
|
|
|
On success, a :obj:`Messages <pyrogram.Messages>` object is returned.
|
|
|
|
|
|
|
|
Raises:
|
2018-11-03 09:49:11 +00:00
|
|
|
:class:`Error <pyrogram.Error>` in case of a Telegram RPC error.
|
2018-05-09 17:29:23 +00:00
|
|
|
"""
|
2018-05-09 11:06:32 +00:00
|
|
|
|
2018-12-22 11:23:08 +00:00
|
|
|
return await pyrogram.Messages._parse(
|
2018-12-17 13:18:41 +00:00
|
|
|
self,
|
2018-12-22 11:23:08 +00:00
|
|
|
await self.send(
|
2018-12-17 13:18:41 +00:00
|
|
|
functions.messages.GetHistory(
|
2018-12-22 11:23:08 +00:00
|
|
|
peer=await self.resolve_peer(chat_id),
|
2018-12-17 13:18:41 +00:00
|
|
|
offset_id=offset_id,
|
|
|
|
offset_date=offset_date,
|
|
|
|
add_offset=offset,
|
|
|
|
limit=limit,
|
|
|
|
max_id=0,
|
|
|
|
min_id=0,
|
|
|
|
hash=0
|
|
|
|
)
|
2018-05-09 11:06:32 +00:00
|
|
|
)
|
|
|
|
)
|