2018-01-23 14:34:36 +00:00
|
|
|
# Pyrogram - Telegram MTProto API Client Library for Python
|
2019-01-01 11:36:16 +00:00
|
|
|
# Copyright (C) 2017-2019 Dan Tès <https://github.com/delivrance>
|
2018-01-23 14:34:36 +00:00
|
|
|
#
|
|
|
|
# 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-05-07 12:30:55 +00:00
|
|
|
import logging
|
|
|
|
import time
|
2019-05-09 02:28:46 +00:00
|
|
|
from typing import List
|
2018-01-23 14:34:36 +00:00
|
|
|
|
2019-02-06 10:28:57 +00:00
|
|
|
import pyrogram
|
|
|
|
from pyrogram.api import functions
|
2019-03-25 10:10:46 +00:00
|
|
|
from pyrogram.errors import FloodWait
|
2018-05-07 12:30:55 +00:00
|
|
|
from ...ext import BaseClient
|
2018-01-23 14:34:36 +00:00
|
|
|
|
2018-05-07 12:30:55 +00:00
|
|
|
log = logging.getLogger(__name__)
|
2018-01-23 14:34:36 +00:00
|
|
|
|
2018-05-07 12:30:55 +00:00
|
|
|
|
|
|
|
class GetContacts(BaseClient):
|
2019-05-09 02:28:46 +00:00
|
|
|
def get_contacts(self) -> List["pyrogram.User"]:
|
2019-05-17 11:44:44 +00:00
|
|
|
# TODO: Create a Users object and return that
|
2019-05-12 17:49:06 +00:00
|
|
|
"""Get contacts from your Telegram address book.
|
2018-05-12 09:31:09 +00:00
|
|
|
|
|
|
|
Returns:
|
2019-05-09 02:28:46 +00:00
|
|
|
List of :obj:`User`: On success, a list of users is returned.
|
2018-05-12 09:31:09 +00:00
|
|
|
|
|
|
|
Raises:
|
2019-05-09 02:28:46 +00:00
|
|
|
RPCError: In case of a Telegram RPC error.
|
2018-05-12 09:31:09 +00:00
|
|
|
"""
|
2018-05-07 12:30:55 +00:00
|
|
|
while True:
|
|
|
|
try:
|
2019-03-16 15:50:40 +00:00
|
|
|
contacts = self.send(functions.contacts.GetContacts(hash=0))
|
2018-05-07 12:30:55 +00:00
|
|
|
except FloodWait as e:
|
|
|
|
log.warning("get_contacts flood: waiting {} seconds".format(e.x))
|
|
|
|
time.sleep(e.x)
|
|
|
|
else:
|
2019-02-06 10:28:57 +00:00
|
|
|
log.info("Total contacts: {}".format(len(self.peers_by_phone)))
|
|
|
|
return [pyrogram.User._parse(self, user) for user in contacts.users]
|