7dda167c09
Year 2021
124 lines
4.4 KiB
Python
124 lines
4.4 KiB
Python
# Pyrogram - Telegram MTProto API Client Library for Python
|
|
# Copyright (C) 2017-2021 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/>.
|
|
|
|
import logging
|
|
import re
|
|
from typing import Union
|
|
|
|
from pyrogram import raw
|
|
from pyrogram import utils
|
|
from pyrogram.errors import PeerIdInvalid
|
|
from pyrogram.scaffold import Scaffold
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
|
class ResolvePeer(Scaffold):
|
|
async def resolve_peer(
|
|
self,
|
|
peer_id: Union[int, str]
|
|
) -> Union[raw.base.InputPeer, raw.base.InputUser, raw.base.InputChannel]:
|
|
"""Get the InputPeer of a known peer id.
|
|
Useful whenever an InputPeer type is required.
|
|
|
|
.. note::
|
|
|
|
This is a utility method intended to be used **only** when working with raw
|
|
:obj:`functions <pyrogram.api.functions>` (i.e: a Telegram API method you wish to use which is not
|
|
available yet in the Client class as an easy-to-use method).
|
|
|
|
Parameters:
|
|
peer_id (``int`` | ``str``):
|
|
The peer id you want to extract the InputPeer from.
|
|
Can be a direct id (int), a username (str) or a phone number (str).
|
|
|
|
Returns:
|
|
``InputPeer``: On success, the resolved peer id is returned in form of an InputPeer object.
|
|
|
|
Raises:
|
|
KeyError: In case the peer doesn't exist in the internal database.
|
|
"""
|
|
if not self.is_connected:
|
|
raise ConnectionError("Client has not been started yet")
|
|
|
|
try:
|
|
return await self.storage.get_peer_by_id(peer_id)
|
|
except KeyError:
|
|
if isinstance(peer_id, str):
|
|
if peer_id in ("self", "me"):
|
|
return raw.types.InputPeerSelf()
|
|
|
|
peer_id = re.sub(r"[@+\s]", "", peer_id.lower())
|
|
|
|
try:
|
|
int(peer_id)
|
|
except ValueError:
|
|
try:
|
|
return await self.storage.get_peer_by_username(peer_id)
|
|
except KeyError:
|
|
await self.send(
|
|
raw.functions.contacts.ResolveUsername(
|
|
username=peer_id
|
|
)
|
|
)
|
|
|
|
return await self.storage.get_peer_by_username(peer_id)
|
|
else:
|
|
try:
|
|
return await self.storage.get_peer_by_phone_number(peer_id)
|
|
except KeyError:
|
|
raise PeerIdInvalid
|
|
|
|
peer_type = utils.get_peer_type(peer_id)
|
|
|
|
if peer_type == "user":
|
|
await self.fetch_peers(
|
|
await self.send(
|
|
raw.functions.users.GetUsers(
|
|
id=[
|
|
raw.types.InputUser(
|
|
user_id=peer_id,
|
|
access_hash=0
|
|
)
|
|
]
|
|
)
|
|
)
|
|
)
|
|
elif peer_type == "chat":
|
|
await self.send(
|
|
raw.functions.messages.GetChats(
|
|
id=[-peer_id]
|
|
)
|
|
)
|
|
else:
|
|
await self.send(
|
|
raw.functions.channels.GetChannels(
|
|
id=[
|
|
raw.types.InputChannel(
|
|
channel_id=utils.get_channel_id(peer_id),
|
|
access_hash=0
|
|
)
|
|
]
|
|
)
|
|
)
|
|
|
|
try:
|
|
return await self.storage.get_peer_by_id(peer_id)
|
|
except KeyError:
|
|
raise PeerIdInvalid
|