107 lines
3.5 KiB
Python
107 lines
3.5 KiB
Python
# Pyrogram - Telegram MTProto API Client Library for Python
|
|
# Copyright (C) 2017-present Dan <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/>.
|
|
|
|
from typing import AsyncGenerator, Optional
|
|
|
|
from pyrogram import types, raw, utils
|
|
from pyrogram.scaffold import Scaffold
|
|
|
|
|
|
class IterDialogs(Scaffold):
|
|
async def iter_dialogs(
|
|
self,
|
|
limit: int = 0
|
|
) -> Optional[AsyncGenerator["types.Dialog", None]]:
|
|
"""Iterate through a user's dialogs sequentially.
|
|
|
|
This convenience method does the same as repeatedly calling :meth:`~pyrogram.Client.get_dialogs` in a loop,
|
|
thus saving you from the hassle of setting up boilerplate code. It is useful for getting the whole dialogs list
|
|
with a single call.
|
|
|
|
Parameters:
|
|
limit (``int``, *optional*):
|
|
Limits the number of dialogs to be retrieved.
|
|
By default, no limit is applied and all dialogs are returned.
|
|
|
|
Returns:
|
|
``Generator``: A generator yielding :obj:`~pyrogram.types.Dialog` objects.
|
|
|
|
Example:
|
|
.. code-block:: python
|
|
|
|
# Iterate through all dialogs
|
|
for dialog in app.iter_dialogs():
|
|
print(dialog.chat.first_name or dialog.chat.title)
|
|
"""
|
|
current = 0
|
|
total = limit or (1 << 31) - 1
|
|
limit = min(100, total)
|
|
|
|
offset_date = 0
|
|
offset_id = 0
|
|
offset_peer = raw.types.InputPeerEmpty()
|
|
|
|
while True:
|
|
r = (await self.send(
|
|
raw.functions.messages.GetDialogs(
|
|
offset_date=offset_date,
|
|
offset_id=offset_id,
|
|
offset_peer=offset_peer,
|
|
limit=limit,
|
|
hash=0
|
|
),
|
|
sleep_threshold=60
|
|
))
|
|
|
|
users = {i.id: i for i in r.users}
|
|
chats = {i.id: i for i in r.chats}
|
|
|
|
messages = {}
|
|
|
|
for message in r.messages:
|
|
if isinstance(message, raw.types.MessageEmpty):
|
|
continue
|
|
|
|
chat_id = utils.get_peer_id(message.peer_id)
|
|
messages[chat_id] = await types.Message._parse(self, message, users, chats)
|
|
|
|
dialogs = []
|
|
|
|
for dialog in r.dialogs:
|
|
if not isinstance(dialog, raw.types.Dialog):
|
|
continue
|
|
|
|
dialogs.append(types.Dialog._parse(self, dialog, messages, users, chats))
|
|
|
|
if not dialogs:
|
|
return
|
|
|
|
last = dialogs[-1]
|
|
|
|
offset_id = last.top_message.message_id
|
|
offset_date = last.top_message.date
|
|
offset_peer = await self.resolve_peer(last.chat.id)
|
|
|
|
for dialog in dialogs:
|
|
yield dialog
|
|
|
|
current += 1
|
|
|
|
if current >= total:
|
|
return
|