MTPyroger/pyrogram/methods/chats/iter_chat_members.py

128 lines
4.4 KiB
Python
Raw Normal View History

2020-03-21 14:43:32 +00:00
# Pyrogram - Telegram MTProto API Client Library for Python
2022-01-07 09:23:45 +00:00
# Copyright (C) 2017-present Dan <https://github.com/delivrance>
#
2020-03-21 14:43:32 +00:00
# This file is part of Pyrogram.
#
2020-03-21 14:43:32 +00:00
# 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.
#
2020-03-21 14:43:32 +00:00
# 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.
#
2020-03-21 14:43:32 +00:00
# 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, AsyncGenerator, Optional
from pyrogram import raw
from pyrogram import types
from pyrogram.scaffold import Scaffold
class Filters:
ALL = "all"
BANNED = "banned"
RESTRICTED = "restricted"
BOTS = "bots"
RECENT = "recent"
ADMINISTRATORS = "administrators"
class IterChatMembers(Scaffold):
async def iter_chat_members(
2019-03-16 18:23:23 +00:00
self,
chat_id: Union[int, str],
limit: int = 0,
query: str = "",
filter: str = Filters.RECENT
) -> Optional[AsyncGenerator["types.ChatMember", None]]:
"""Iterate through the members of a chat sequentially.
This convenience method does the same as repeatedly calling :meth:`~pyrogram.Client.get_chat_members` in a loop,
thus saving you from the hassle of setting up boilerplate code. It is useful for getting the whole members list
of a chat with a single call.
Parameters:
chat_id (``int`` | ``str``):
Unique identifier (int) or username (str) of the target chat.
limit (``int``, *optional*):
Limits the number of members to be retrieved.
query (``str``, *optional*):
Query string to filter members based on their display names and usernames.
2022-01-07 09:18:51 +00:00
Defaults to "" (empty string).
A query string is applicable only for *"all"*, *"banned"* and *"restricted"* filters only.
filter (``str``, *optional*):
Filter used to select the kind of members you want to retrieve. Only applicable for supergroups
and channels. It can be any of the followings:
*"all"* - all kind of members,
*"banned"* - banned members only,
*"restricted"* - restricted members only,
*"bots"* - bots only,
*"recent"* - recent members only,
*"administrators"* - chat administrators only.
Defaults to *"recent"*.
Returns:
``Generator``: A generator yielding :obj:`~pyrogram.types.ChatMember` objects.
2019-07-25 09:22:14 +00:00
Example:
.. code-block:: python
# Iterate though all chat members
2022-01-07 09:18:51 +00:00
for member in app.iter_chat_members(chat_id):
2019-07-25 09:22:14 +00:00
print(member.user.first_name)
# Iterate though all administrators
2022-01-07 09:18:51 +00:00
for member in app.iter_chat_members(chat_id, filter="administrators"):
2019-07-25 09:22:14 +00:00
print(member.user.first_name)
# Iterate though all bots
2022-01-07 09:18:51 +00:00
for member in app.iter_chat_members(chat_id, filter="bots"):
2019-07-25 09:22:14 +00:00
print(member.user.first_name)
"""
current = 0
yielded = set()
total = limit or (1 << 31) - 1
limit = min(200, total)
resolved_chat_id = await self.resolve_peer(chat_id)
2022-01-07 09:18:51 +00:00
offset = 0
2022-01-07 09:18:51 +00:00
while True:
chat_members = await self.get_chat_members(
chat_id=chat_id,
offset=offset,
limit=limit,
query=query,
filter=filter
)
2022-01-07 09:18:51 +00:00
if not chat_members:
break
2022-01-07 09:18:51 +00:00
if isinstance(resolved_chat_id, raw.types.InputPeerChat):
total = len(chat_members)
2022-01-07 09:18:51 +00:00
offset += len(chat_members)
2022-01-07 09:18:51 +00:00
for chat_member in chat_members:
user_id = chat_member.user.id
2022-01-07 09:18:51 +00:00
if user_id in yielded:
continue
2022-01-07 09:18:51 +00:00
yield chat_member
2022-01-07 09:18:51 +00:00
yielded.add(chat_member.user.id)
2022-01-07 09:18:51 +00:00
current += 1
2022-01-07 09:18:51 +00:00
if current >= total:
return