2018-07-19 21:26:20 +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-07-19 21:26:20 +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-18 08:50:39 +00:00
|
|
|
import pyrogram
|
2018-07-19 21:26:20 +00:00
|
|
|
from pyrogram.api import functions, types, errors
|
2018-12-16 16:58:05 +00:00
|
|
|
from ...ext import BaseClient
|
2018-07-19 21:26:20 +00:00
|
|
|
|
|
|
|
|
|
|
|
class GetChatMember(BaseClient):
|
2018-08-23 19:07:19 +00:00
|
|
|
async def get_chat_member(self,
|
2018-12-22 11:23:08 +00:00
|
|
|
chat_id: Union[int, str],
|
|
|
|
user_id: Union[int, str]) -> "pyrogram.ChatMember":
|
2018-07-26 17:32:12 +00:00
|
|
|
"""Use this method to get information about one member of a chat.
|
2018-07-22 00:07:44 +00:00
|
|
|
|
|
|
|
Args:
|
|
|
|
chat_id (``int`` | ``str``):
|
|
|
|
Unique identifier (int) or username (str) of the target chat.
|
|
|
|
|
|
|
|
user_id (``int`` | ``str``)::
|
|
|
|
Unique identifier (int) or username (str) of the target chat.
|
|
|
|
For your personal cloud (Saved Messages) you can simply use "me" or "self".
|
|
|
|
For a contact that exists in your Telegram address book you can use his phone number (str).
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
On success, a :obj:`ChatMember <pyrogram.ChatMember>` object is returned.
|
|
|
|
|
|
|
|
Raises:
|
2018-11-03 09:49:11 +00:00
|
|
|
:class:`Error <pyrogram.Error>` in case of a Telegram RPC error.
|
2018-07-22 00:07:44 +00:00
|
|
|
"""
|
2018-08-23 19:07:19 +00:00
|
|
|
chat_id = await self.resolve_peer(chat_id)
|
|
|
|
user_id = await self.resolve_peer(user_id)
|
2018-07-19 21:26:20 +00:00
|
|
|
|
|
|
|
if isinstance(chat_id, types.InputPeerChat):
|
2018-08-23 19:07:19 +00:00
|
|
|
full_chat = await self.send(
|
2018-07-19 21:26:20 +00:00
|
|
|
functions.messages.GetFullChat(
|
|
|
|
chat_id=chat_id.chat_id
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2018-12-19 13:50:23 +00:00
|
|
|
for member in pyrogram.ChatMembers._parse(self, full_chat).chat_members:
|
2018-07-19 21:26:20 +00:00
|
|
|
if member.user.id == user_id.user_id:
|
|
|
|
return member
|
|
|
|
else:
|
|
|
|
raise errors.UserNotParticipant
|
|
|
|
elif isinstance(chat_id, types.InputPeerChannel):
|
2018-08-23 19:07:19 +00:00
|
|
|
r = await self.send(
|
2018-07-19 21:26:20 +00:00
|
|
|
functions.channels.GetParticipant(
|
|
|
|
channel=chat_id,
|
|
|
|
user_id=user_id
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2019-01-21 15:33:33 +00:00
|
|
|
users = {i.id: i for i in r.users}
|
|
|
|
|
|
|
|
return pyrogram.ChatMember._parse(self, r.participant, users)
|
2018-07-19 21:26:20 +00:00
|
|
|
else:
|
|
|
|
raise ValueError("The chat_id \"{}\" belongs to a user".format(chat_id))
|