2018-07-04 19:05:43 +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 pyrogram
|
|
|
|
from pyrogram.api import functions, types
|
2018-12-17 15:13:57 +00:00
|
|
|
from ...ext import BaseClient
|
2018-07-04 19:05:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
class GetDialogs(BaseClient):
|
|
|
|
def get_dialogs(self,
|
2018-12-19 13:50:23 +00:00
|
|
|
offset_dialog: "pyrogram.Dialog" = None,
|
2018-07-05 12:57:45 +00:00
|
|
|
limit: int = 100,
|
2018-08-20 09:24:00 +00:00
|
|
|
pinned_only: bool = False):
|
|
|
|
"""Use this method to get the user's dialogs
|
|
|
|
|
|
|
|
You can get up to 100 dialogs at once.
|
|
|
|
|
|
|
|
Args:
|
2018-12-17 15:13:57 +00:00
|
|
|
offset_dialog (:obj:`Dialog`):
|
2018-12-19 09:27:47 +00:00
|
|
|
Sequential Dialog of the first dialog to be returned.
|
2018-12-17 15:13:57 +00:00
|
|
|
Defaults to None (start from the beginning).
|
|
|
|
|
2018-08-20 09:24:00 +00:00
|
|
|
limit (``str``, *optional*):
|
|
|
|
Limits the number of dialogs to be retrieved.
|
2018-12-17 15:13:57 +00:00
|
|
|
Defaults to 100.
|
2018-08-20 09:24:00 +00:00
|
|
|
|
|
|
|
pinned_only (``bool``, *optional*):
|
|
|
|
Pass True if you want to get only pinned dialogs.
|
|
|
|
Defaults to False.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
On success, a :obj:`Dialogs` object is returned.
|
|
|
|
|
|
|
|
Raises:
|
2018-11-03 09:49:11 +00:00
|
|
|
:class:`Error <pyrogram.Error>` in case of a Telegram RPC error.
|
2018-08-20 09:24:00 +00:00
|
|
|
"""
|
|
|
|
|
2018-07-05 12:57:45 +00:00
|
|
|
if pinned_only:
|
|
|
|
r = self.send(functions.messages.GetPinnedDialogs())
|
|
|
|
else:
|
|
|
|
r = self.send(
|
|
|
|
functions.messages.GetDialogs(
|
2018-12-17 15:13:57 +00:00
|
|
|
offset_date=offset_dialog.top_message.date if offset_dialog else 0,
|
2018-07-05 12:57:45 +00:00
|
|
|
offset_id=0,
|
|
|
|
offset_peer=types.InputPeerEmpty(),
|
|
|
|
limit=limit,
|
|
|
|
hash=0,
|
|
|
|
exclude_pinned=True
|
|
|
|
)
|
2018-07-04 19:05:43 +00:00
|
|
|
)
|
|
|
|
|
2018-12-19 13:50:23 +00:00
|
|
|
return pyrogram.Dialogs._parse(self, r)
|