for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
# Copyright Pincer 2021-Present
# Full MIT License can be found in `LICENSE` at the project root.
"""sent when a user adds a reaction to a message"""
from ..core.dispatch import GatewayDispatch
from ..objects import GuildMember, Emoji
from ..objects.events.message import MessageReactionAddEvent
from ..utils.conversion import construct_client_dict
async def message_reaction_add_middleware(self, payload: GatewayDispatch):
"""
Middleware for ``on_message_reaction_add``,
creates a object for the message reaction that is added
:param self:
The current client.
:param payload:
The data received from the message reaction add event.
return "on_message_reaction_add", [
MessageReactionAddEvent.from_dict(
construct_client_dict(
self,
{
"member": GuildMember.from_dict(
construct_client_dict(self, payload.data.pop("member"))
),
"emoji": Emoji.from_dict(
construct_client_dict(self, payload.data.pop("emoji"))
**payload.data
}
))
]
def export():
return message_reaction_add_middleware