-
-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pyrofork: Add get_message_read_participants method
Signed-off-by: wulan17 <wulan17@nusantararom.org>
- Loading branch information
Showing
5 changed files
with
120 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
57 changes: 57 additions & 0 deletions
57
pyrogram/methods/messages/get_message_read_participants.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
# Pyrofork - Telegram MTProto API Client Library for Python | ||
# Copyright (C) 2022-present Mayuri-Chan <https://github.com/Mayuri-Chan> | ||
# | ||
# This file is part of Pyrofork. | ||
# | ||
# Pyrofork 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. | ||
# | ||
# Pyrofork 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 Pyrofork. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
import pyrogram | ||
|
||
from pyrogram import types | ||
from typing import Union | ||
|
||
class GetMessageReadParticipants: | ||
async def get_message_read_participants( | ||
self: "pyrogram.Client", | ||
chat_id: Union[int, str], | ||
message_id: int | ||
): | ||
"""Get the list of users who have read a message. | ||
.. include:: /_includes/usable-by/users.rst | ||
Parameters: | ||
chat_id (``int`` | ``str``): | ||
Unique identifier (int) or username (str) of the target chat. | ||
You can also use chat public link in form of *t.me/<username>* (str). | ||
message_id (``int``): | ||
Unique identifier of the target message. | ||
Returns: | ||
``AsyncGenerator``: On success, an async generator yielding :obj:`~pyrogram.types.ReadParticipant` objects is returned. | ||
""" | ||
|
||
peer = await self.resolve_peer(chat_id) | ||
r = await self.invoke( | ||
pyrogram.raw.functions.messages.GetMessageReadParticipants( | ||
peer=peer, | ||
id=message_id | ||
) | ||
) | ||
for read_participant in r: | ||
yield await types.ReadParticipant._parse( | ||
client=self, | ||
read_participant=read_participant | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
# PyroFork - Telegram MTProto API Client Library for Python | ||
# Copyright (C) 2022-present Mayuri-Chan <https://github.com/Mayuri-Chan> | ||
# | ||
# This file is part of PyroFork. | ||
# | ||
# PyroFork 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. | ||
# | ||
# PyroFork 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 PyroFork. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
import pyrogram | ||
from pyrogram import raw, types, utils | ||
from datetime import datetime | ||
from ..object import Object | ||
|
||
class ReadParticipant(Object): | ||
"""Contains information about a read participant. | ||
Parameters: | ||
user (:obj:`~pyrogram.types.User`): | ||
User who read the message. | ||
date (:py:obj:`~datetime.datetime`): | ||
Date the message was read. | ||
""" | ||
|
||
def __init__( | ||
self, | ||
*, | ||
client: "pyrogram.Client" = None, | ||
user_id: "pyrogram.types.User", | ||
date: "datetime" | ||
): | ||
super().__init__(client) | ||
|
||
self.user = user_id | ||
self.date = date | ||
|
||
@staticmethod | ||
async def _parse( | ||
client, | ||
read_participant: "raw.base.ReadParticipantDate", | ||
users: dict | ||
) -> "ReadParticipant": | ||
ReadParticipant( | ||
client=client, | ||
user_id=await client.get_users(read_participant.user_id), | ||
date=utils.timestamp_to_datetime(read_participant.date) | ||
) |