MTPyroger/pyrogram/client/methods/chats/get_chat_member.py

78 lines
2.8 KiB
Python
Raw Normal View History

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/>.
from typing import Union
2018-12-18 08:50:39 +00:00
import pyrogram
from pyrogram.api import functions, types
from pyrogram.errors import UserNotParticipant
from ...ext import BaseClient
2018-07-19 21:26:20 +00:00
class GetChatMember(BaseClient):
2019-03-16 18:23:23 +00:00
def get_chat_member(
self,
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
Parameters:
2018-07-22 00:07:44 +00:00
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:
:obj:`ChatMember`: On success, a chat member is returned.
2018-07-22 00:07:44 +00:00
Raises:
RPCError: In case of a Telegram RPC error.
2018-07-22 00:07:44 +00:00
"""
2018-07-19 21:26:20 +00:00
chat_id = self.resolve_peer(chat_id)
user_id = self.resolve_peer(user_id)
if isinstance(chat_id, types.InputPeerChat):
full_chat = self.send(
functions.messages.GetFullChat(
chat_id=chat_id.chat_id
)
)
for member in pyrogram.ChatMembers._parse(self, full_chat).chat_members:
if member.user.is_self:
2018-07-19 21:26:20 +00:00
return member
else:
raise UserNotParticipant
2018-07-19 21:26:20 +00:00
elif isinstance(chat_id, types.InputPeerChannel):
r = self.send(
functions.channels.GetParticipant(
channel=chat_id,
user_id=user_id
)
)
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))