Add support for multiple reactions in send_reaction

This commit is contained in:
KurimuzonAkuma 2023-12-23 00:42:36 +03:00
parent bae74f68ec
commit d5622b4e82
2 changed files with 23 additions and 10 deletions

View File

@ -16,7 +16,7 @@
# You should have received a copy of the GNU Lesser General Public License # You should have received a copy of the GNU Lesser General Public License
# along with Pyrogram. If not, see <http://www.gnu.org/licenses/>. # along with Pyrogram. If not, see <http://www.gnu.org/licenses/>.
from typing import Union from typing import Union, List
import pyrogram import pyrogram
from pyrogram import raw from pyrogram import raw
@ -28,10 +28,10 @@ class SendReaction:
chat_id: Union[int, str], chat_id: Union[int, str],
message_id: int = None, message_id: int = None,
story_id: int = None, story_id: int = None,
emoji: Union[int, str] = None, emoji: Union[int, str, List[Union[int, str]]] = None,
big: bool = False big: bool = False
) -> bool: ) -> bool:
"""Send a reaction to a message. """Send a reaction to a message or story.
.. include:: /_includes/usable-by/users.rst .. include:: /_includes/usable-by/users.rst
@ -45,9 +45,10 @@ class SendReaction:
story_id (``int``, *optional*): story_id (``int``, *optional*):
Identifier of the story. Identifier of the story.
emoji (``int`` | ``str``, *optional*): emoji (``int`` | ``str`` | List of ``int`` | ``str``, *optional*):
Reaction emoji. Reaction emoji.
Pass None as emoji (default) to retract the reaction. Pass None as emoji (default) to retract the reaction.
Pass list of int or str to react multiple emojis.
big (``bool``, *optional*): big (``bool``, *optional*):
Pass True to show a bigger and longer reaction. Pass True to show a bigger and longer reaction.
@ -62,6 +63,9 @@ class SendReaction:
# Send a reaction # Send a reaction
await app.send_reaction(chat_id, message_id=message_id, emoji="🔥") await app.send_reaction(chat_id, message_id=message_id, emoji="🔥")
# Send a multiple reactions
await app.send_reaction(chat_id, message_id=message_id, emoji=["🔥", "❤️"])
# Send a reaction with premium emoji # Send a reaction with premium emoji
await app.send_reaction(chat_id, message_id=message_id, emoji=5319161050128459957) await app.send_reaction(chat_id, message_id=message_id, emoji=5319161050128459957)
@ -71,10 +75,18 @@ class SendReaction:
# Retract a reaction # Retract a reaction
await app.send_reaction(chat_id, message_id=message_id) await app.send_reaction(chat_id, message_id=message_id)
""" """
if isinstance(emoji, int): if isinstance(emoji, list):
emoji = [raw.types.ReactionCustomEmoji(document_id=emoji)] emoji = [
raw.types.ReactionCustomEmoji(document_id=i)
if isinstance(i, int)
else raw.types.ReactionEmoji(emoticon=i)
for i in emoji
] if emoji else None
else: else:
emoji = [raw.types.ReactionEmoji(emoticon=emoji)] if emoji else None if isinstance(emoji, int):
emoji = [raw.types.ReactionCustomEmoji(document_id=emoji)]
else:
emoji = [raw.types.ReactionEmoji(emoticon=emoji)] if emoji else None
if story_id: if story_id:
rpc = raw.functions.stories.SendReaction( rpc = raw.functions.stories.SendReaction(

View File

@ -4010,7 +4010,7 @@ class Message(Object, Update):
else: else:
await self.reply(button, quote=quote) await self.reply(button, quote=quote)
async def react(self, emoji: Union[int, str] = None, big: bool = False) -> bool: async def react(self, emoji: Union[int, str, List[Union[int, str]]] = None, big: bool = False) -> bool:
"""Bound method *react* of :obj:`~pyrogram.types.Message`. """Bound method *react* of :obj:`~pyrogram.types.Message`.
Use as a shortcut for: Use as a shortcut for:
@ -4029,9 +4029,10 @@ class Message(Object, Update):
await message.react(emoji="🔥") await message.react(emoji="🔥")
Parameters: Parameters:
emoji (``str``, *optional*): emoji (``int`` | ``str`` | List of ``int`` | ``str``, *optional*):
Reaction emoji. Reaction emoji.
Pass "" as emoji (default) to retract the reaction. Pass None as emoji (default) to retract the reaction.
Pass list of int or str to react multiple emojis.
big (``bool``, *optional*): big (``bool``, *optional*):
Pass True to show a bigger and longer reaction. Pass True to show a bigger and longer reaction.