# Pyrogram - Telegram MTProto API Client Library for Python # Copyright (C) 2017-2018 Dan Tès # # 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 . from pyrogram.api import functions, types, errors from ...ext import BaseClient, utils class GetChatMember(BaseClient): def get_chat_member(self, chat_id: int or str, user_id: int or str): # TODO: docstrings 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 utils.parse_chat_members(full_chat).chat_members: if member.user.id == user_id.user_id: return member else: raise errors.UserNotParticipant elif isinstance(chat_id, types.InputPeerChannel): r = self.send( functions.channels.GetParticipant( channel=chat_id, user_id=user_id ) ) return utils.parse_chat_members( types.channels.ChannelParticipants( count=1, participants=[r.participant], users=r.users ) ).chat_members[0] else: raise ValueError("The chat_id \"{}\" belongs to a user".format(chat_id))