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-12-19 13:50:23 +00:00
|
|
|
from typing import Union
|
|
|
|
|
2018-12-16 16:59:34 +00:00
|
|
|
import pyrogram
|
2018-05-07 12:30:55 +00:00
|
|
|
from pyrogram.api import functions, types
|
2018-12-16 16:59:34 +00:00
|
|
|
from ...ext import BaseClient
|
2018-01-23 14:34:36 +00:00
|
|
|
|
|
|
|
|
2018-05-07 12:30:55 +00:00
|
|
|
class GetChat(BaseClient):
|
2019-03-16 18:49:01 +00:00
|
|
|
async def get_chat(
|
2019-03-16 18:23:23 +00:00
|
|
|
self,
|
|
|
|
chat_id: Union[int, str]
|
|
|
|
) -> "pyrogram.Chat":
|
2019-03-22 10:53:25 +00:00
|
|
|
"""Use this method to get up to date information about the chat.
|
|
|
|
Information include current name of the user for one-on-one conversations, current username of a user, group or
|
|
|
|
channel, etc.
|
2018-05-12 09:33:14 +00:00
|
|
|
|
2018-07-10 13:57:27 +00:00
|
|
|
Args:
|
|
|
|
chat_id (``int`` | ``str``):
|
|
|
|
Unique identifier (int) or username (str) of the target chat.
|
2018-12-28 13:34:47 +00:00
|
|
|
Unique identifier for the target chat in form of a *t.me/joinchat/* link, identifier (int) or username
|
|
|
|
of the target channel/supergroup (in the format @username).
|
2018-07-10 13:57:27 +00:00
|
|
|
|
2018-05-12 09:33:14 +00:00
|
|
|
Returns:
|
|
|
|
On success, a :obj:`Chat <pyrogram.Chat>` object is returned.
|
|
|
|
|
|
|
|
Raises:
|
2018-11-03 09:49:11 +00:00
|
|
|
:class:`Error <pyrogram.Error>` in case of a Telegram RPC error.
|
2018-12-28 13:34:47 +00:00
|
|
|
``ValueError`` in case the chat invite link refers to a chat you haven't joined yet.
|
2018-05-12 09:33:14 +00:00
|
|
|
"""
|
2018-12-28 13:34:47 +00:00
|
|
|
match = self.INVITE_LINK_RE.match(str(chat_id))
|
|
|
|
|
|
|
|
if match:
|
|
|
|
h = match.group(1)
|
|
|
|
|
2018-12-31 11:06:15 +00:00
|
|
|
r = await self.send(
|
2018-12-28 13:34:47 +00:00
|
|
|
functions.messages.CheckChatInvite(
|
|
|
|
hash=h
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
if isinstance(r, types.ChatInvite):
|
|
|
|
raise ValueError("You haven't joined \"t.me/joinchat/{}\" yet".format(h))
|
|
|
|
|
2019-01-02 21:39:16 +00:00
|
|
|
self.fetch_peers([r.chat])
|
|
|
|
|
2018-12-28 13:34:47 +00:00
|
|
|
if isinstance(r.chat, types.Chat):
|
|
|
|
chat_id = -r.chat.id
|
|
|
|
|
|
|
|
if isinstance(r.chat, types.Channel):
|
|
|
|
chat_id = int("-100" + str(r.chat.id))
|
|
|
|
|
2018-06-18 19:30:13 +00:00
|
|
|
peer = await self.resolve_peer(chat_id)
|
2018-01-23 14:34:36 +00:00
|
|
|
|
2018-05-07 12:30:55 +00:00
|
|
|
if isinstance(peer, types.InputPeerChannel):
|
2019-03-16 18:49:01 +00:00
|
|
|
r = await self.send(functions.channels.GetFullChannel(channel=peer))
|
2018-05-07 12:30:55 +00:00
|
|
|
elif isinstance(peer, (types.InputPeerUser, types.InputPeerSelf)):
|
2019-03-16 18:49:01 +00:00
|
|
|
r = await self.send(functions.users.GetFullUser(id=peer))
|
2018-05-07 12:30:55 +00:00
|
|
|
else:
|
2019-03-16 18:49:01 +00:00
|
|
|
r = await self.send(functions.messages.GetFullChat(chat_id=peer.chat_id))
|
2018-05-07 12:30:55 +00:00
|
|
|
|
2019-01-17 11:30:40 +00:00
|
|
|
return await pyrogram.Chat._parse_full(self, r)
|