From 1a734442758625b2ab730cd03c7c2fabdbc9d24a Mon Sep 17 00:00:00 2001 From: Chiggy-Playz <49774426+Chiggy-Playz@users.noreply.github.com> Date: Wed, 9 Mar 2022 07:55:28 +0530 Subject: [PATCH] Categorize events in the documentation --- docs/api.rst | 1059 ++++++++++++++++++++++++++------------------------ 1 file changed, 557 insertions(+), 502 deletions(-) diff --git a/docs/api.rst b/docs/api.rst index f849c72dd..91a763a07 100644 --- a/docs/api.rst +++ b/docs/api.rst @@ -195,75 +195,135 @@ to handle it, which defaults to print a traceback and ignoring the exception. errors. In order to turn a function into a coroutine they must be ``async def`` functions. -.. function:: on_connect() +Channels +~~~~~~~~~ - Called when the client has successfully connected to Discord. This is not - the same as the client being fully prepared, see :func:`on_ready` for that. +.. function:: on_guild_channel_delete(channel) + on_guild_channel_create(channel) - The warnings on :func:`on_ready` also apply. + Called whenever a guild channel is deleted or created. -.. function:: on_shard_connect(shard_id) + Note that you can get the guild from :attr:`~abc.GuildChannel.guild`. - Similar to :func:`on_connect` except used by :class:`AutoShardedClient` - to denote when a particular shard ID has connected to Discord. + This requires :attr:`Intents.guilds` to be enabled. - .. versionadded:: 1.4 + :param channel: The guild channel that got created or deleted. + :type channel: :class:`abc.GuildChannel` - :param shard_id: The shard ID that has connected. - :type shard_id: :class:`int` +.. function:: on_guild_channel_update(before, after) -.. function:: on_disconnect() + Called whenever a guild channel is updated. e.g. changed name, topic, permissions. - Called when the client has disconnected from Discord, or a connection attempt to Discord has failed. - This could happen either through the internet being disconnected, explicit calls to close, - or Discord terminating the connection one way or the other. + This requires :attr:`Intents.guilds` to be enabled. - This function can be called many times without a corresponding :func:`on_connect` call. + :param before: The updated guild channel's old info. + :type before: :class:`abc.GuildChannel` + :param after: The updated guild channel's new info. + :type after: :class:`abc.GuildChannel` -.. function:: on_shard_disconnect(shard_id) +.. function:: on_group_join(channel, user) + on_group_remove(channel, user) - Similar to :func:`on_disconnect` except used by :class:`AutoShardedClient` - to denote when a particular shard ID has disconnected from Discord. + Called when someone joins or leaves a :class:`GroupChannel`. - .. versionadded:: 1.4 + :param channel: The group that the user joined or left. + :type channel: :class:`GroupChannel` + :param user: The user that joined or left. + :type user: :class:`User` - :param shard_id: The shard ID that has disconnected. - :type shard_id: :class:`int` +.. function:: on_guild_channel_pins_update(channel, last_pin) -.. function:: on_ready() + Called whenever a message is pinned or unpinned from a guild channel. - Called when the client is done preparing the data received from Discord. Usually after login is successful - and the :attr:`Client.guilds` and co. are filled up. + This requires :attr:`Intents.guilds` to be enabled. - .. warning:: + :param channel: The guild channel that had its pins updated. + :type channel: Union[:class:`abc.GuildChannel`, :class:`Thread`] + :param last_pin: The latest message that was pinned as an aware datetime in UTC. Could be ``None``. + :type last_pin: Optional[:class:`datetime.datetime`] - This function is not guaranteed to be the first event called. - Likewise, this function is **not** guaranteed to only be called - once. This library implements reconnection logic and thus will - end up calling this event whenever a RESUME request fails. +.. function:: on_private_channel_update(before, after) -.. function:: on_shard_ready(shard_id) + Called whenever a private group DM is updated. e.g. changed name or topic. - Similar to :func:`on_ready` except used by :class:`AutoShardedClient` - to denote when a particular shard ID has become ready. + This requires :attr:`Intents.messages` to be enabled. - :param shard_id: The shard ID that is ready. - :type shard_id: :class:`int` + :param before: The updated group channel's old info. + :type before: :class:`GroupChannel` + :param after: The updated group channel's new info. + :type after: :class:`GroupChannel` -.. function:: on_resumed() +.. function:: on_private_channel_pins_update(channel, last_pin) - Called when the client has resumed a session. + Called whenever a message is pinned or unpinned from a private channel. -.. function:: on_shard_resumed(shard_id) + :param channel: The private channel that had its pins updated. + :type channel: :class:`abc.PrivateChannel` + :param last_pin: The latest message that was pinned as an aware datetime in UTC. Could be ``None``. + :type last_pin: Optional[:class:`datetime.datetime`] - Similar to :func:`on_resumed` except used by :class:`AutoShardedClient` - to denote when a particular shard ID has resumed a session. +.. function:: on_typing(channel, user, when) + + Called when someone begins typing a message. + + The ``channel`` parameter can be a :class:`abc.Messageable` instance. + Which could either be :class:`TextChannel`, :class:`GroupChannel`, or + :class:`DMChannel`. + + If the ``channel`` is a :class:`TextChannel` then the ``user`` parameter + is a :class:`Member`, otherwise it is a :class:`User`. + + This requires :attr:`Intents.typing` to be enabled. + + :param channel: The location where the typing originated from. + :type channel: :class:`abc.Messageable` + :param user: The user that started typing. + :type user: Union[:class:`User`, :class:`Member`] + :param when: When the typing started as an aware datetime in UTC. + :type when: :class:`datetime.datetime` + +Connection +~~~~~~~~~~~ + +.. function:: on_connect() + + Called when the client has successfully connected to Discord. This is not + the same as the client being fully prepared, see :func:`on_ready` for that. + + The warnings on :func:`on_ready` also apply. + +.. function:: on_disconnect() + + Called when the client has disconnected from Discord, or a connection attempt to Discord has failed. + This could happen either through the internet being disconnected, explicit calls to close, + or Discord terminating the connection one way or the other. + + This function can be called many times without a corresponding :func:`on_connect` call. + +.. function:: on_shard_connect(shard_id) + + Similar to :func:`on_connect` except used by :class:`AutoShardedClient` + to denote when a particular shard ID has connected to Discord. .. versionadded:: 1.4 - :param shard_id: The shard ID that has resumed. + :param shard_id: The shard ID that has connected. + :type shard_id: :class:`int` + + +.. function:: on_shard_disconnect(shard_id) + + Similar to :func:`on_disconnect` except used by :class:`AutoShardedClient` + to denote when a particular shard ID has disconnected from Discord. + + .. versionadded:: 1.4 + + :param shard_id: The shard ID that has disconnected. :type shard_id: :class:`int` +Debug +~~~~~~ + .. function:: on_error(event, *args, **kwargs) Usually when an event raises an uncaught exception, a traceback is @@ -307,7 +367,7 @@ to handle it, which defaults to print a traceback and ignoring the exception. :param event_type: The event type from Discord that is received, e.g. ``'READY'``. :type event_type: :class:`str` - + .. function:: on_socket_raw_receive(msg) Called whenever a message is completely received from the WebSocket, before @@ -347,267 +407,227 @@ to handle it, which defaults to print a traceback and ignoring the exception. WebSocket library. It can be :class:`bytes` to denote a binary message or :class:`str` to denote a regular text message. -.. function:: on_typing(channel, user, when) - Called when someone begins typing a message. +Gateway +~~~~~~~~ - The ``channel`` parameter can be a :class:`abc.Messageable` instance. - Which could either be :class:`TextChannel`, :class:`GroupChannel`, or - :class:`DMChannel`. +.. function:: on_ready() - If the ``channel`` is a :class:`TextChannel` then the ``user`` parameter - is a :class:`Member`, otherwise it is a :class:`User`. + Called when the client is done preparing the data received from Discord. Usually after login is successful + and the :attr:`Client.guilds` and co. are filled up. - This requires :attr:`Intents.typing` to be enabled. + .. warning:: - :param channel: The location where the typing originated from. - :type channel: :class:`abc.Messageable` - :param user: The user that started typing. - :type user: Union[:class:`User`, :class:`Member`] - :param when: When the typing started as an aware datetime in UTC. - :type when: :class:`datetime.datetime` + This function is not guaranteed to be the first event called. + Likewise, this function is **not** guaranteed to only be called + once. This library implements reconnection logic and thus will + end up calling this event whenever a RESUME request fails. -.. function:: on_message(message) +.. function:: on_resumed() - Called when a :class:`Message` is created and sent. + Called when the client has resumed a session. - This requires :attr:`Intents.messages` to be enabled. +.. function:: on_shard_ready(shard_id) - .. warning:: + Similar to :func:`on_ready` except used by :class:`AutoShardedClient` + to denote when a particular shard ID has become ready. - Your bot's own messages and private messages are sent through this - event. This can lead cases of 'recursion' depending on how your bot was - programmed. If you want the bot to not reply to itself, consider - checking the user IDs. Note that :class:`~ext.commands.Bot` does not - have this problem. + :param shard_id: The shard ID that is ready. + :type shard_id: :class:`int` - :param message: The current message. - :type message: :class:`Message` -.. function:: on_message_delete(message) +.. function:: on_shard_resumed(shard_id) - Called when a message is deleted. If the message is not found in the - internal message cache, then this event will not be called. - Messages might not be in cache if the message is too old - or the client is participating in high traffic guilds. + Similar to :func:`on_resumed` except used by :class:`AutoShardedClient` + to denote when a particular shard ID has resumed a session. - If this occurs increase the :class:`max_messages ` parameter - or use the :func:`on_raw_message_delete` event instead. + .. versionadded:: 1.4 - This requires :attr:`Intents.messages` to be enabled. + :param shard_id: The shard ID that has resumed. + :type shard_id: :class:`int` - :param message: The deleted message. - :type message: :class:`Message` +Guilds +~~~~~~~ -.. function:: on_bulk_message_delete(messages) +.. function:: on_guild_available(guild) + on_guild_unavailable(guild) - Called when messages are bulk deleted. If none of the messages deleted - are found in the internal message cache, then this event will not be called. - If individual messages were not found in the internal message cache, - this event will still be called, but the messages not found will not be included in - the messages list. Messages might not be in cache if the message is too old - or the client is participating in high traffic guilds. + Called when a guild becomes available or unavailable. The guild must have + existed in the :attr:`Client.guilds` cache. - If this occurs increase the :class:`max_messages ` parameter - or use the :func:`on_raw_bulk_message_delete` event instead. + This requires :attr:`Intents.guilds` to be enabled. - This requires :attr:`Intents.messages` to be enabled. + :param guild: The :class:`Guild` that has changed availability. - :param messages: The messages that have been deleted. - :type messages: List[:class:`Message`] +.. function:: on_guild_join(guild) -.. function:: on_raw_message_delete(payload) + Called when a :class:`Guild` is either created by the :class:`Client` or when the + :class:`Client` joins a guild. - Called when a message is deleted. Unlike :func:`on_message_delete`, this is - called regardless of the message being in the internal message cache or not. + This requires :attr:`Intents.guilds` to be enabled. - If the message is found in the message cache, - it can be accessed via :attr:`RawMessageDeleteEvent.cached_message` + :param guild: The guild that was joined. + :type guild: :class:`Guild` - This requires :attr:`Intents.messages` to be enabled. +.. function:: on_guild_remove(guild) - :param payload: The raw event payload data. - :type payload: :class:`RawMessageDeleteEvent` + Called when a :class:`Guild` is removed from the :class:`Client`. -.. function:: on_raw_bulk_message_delete(payload) + This happens through, but not limited to, these circumstances: - Called when a bulk delete is triggered. Unlike :func:`on_bulk_message_delete`, this is - called regardless of the messages being in the internal message cache or not. + - The client got banned. + - The client got kicked. + - The client left the guild. + - The client or the guild owner deleted the guild. - If the messages are found in the message cache, - they can be accessed via :attr:`RawBulkMessageDeleteEvent.cached_messages` + In order for this event to be invoked then the :class:`Client` must have + been part of the guild to begin with. (i.e. it is part of :attr:`Client.guilds`) - This requires :attr:`Intents.messages` to be enabled. + This requires :attr:`Intents.guilds` to be enabled. - :param payload: The raw event payload data. - :type payload: :class:`RawBulkMessageDeleteEvent` + :param guild: The guild that got removed. + :type guild: :class:`Guild` -.. function:: on_message_edit(before, after) +.. function:: on_guild_update(before, after) - Called when a :class:`Message` receives an update event. If the message is not found - in the internal message cache, then these events will not be called. - Messages might not be in cache if the message is too old - or the client is participating in high traffic guilds. + Called when a :class:`Guild` updates, for example: - If this occurs increase the :class:`max_messages ` parameter - or use the :func:`on_raw_message_edit` event instead. - - The following non-exhaustive cases trigger this event: + - Changed name + - Changed AFK channel + - Changed AFK timeout + - etc - - A message has been pinned or unpinned. - - The message content has been changed. - - The message has received an embed. + This requires :attr:`Intents.guilds` to be enabled. - - For performance reasons, the embed server does not do this in a "consistent" manner. + :param before: The guild prior to being updated. + :type before: :class:`Guild` + :param after: The guild after being updated. + :type after: :class:`Guild` - - The message's embeds were suppressed or unsuppressed. - - A call message has received an update to its participants or ending time. +.. function:: on_guild_emojis_update(guild, before, after) - This requires :attr:`Intents.messages` to be enabled. + Called when a :class:`Guild` adds or removes :class:`Emoji`. - :param before: The previous version of the message. - :type before: :class:`Message` - :param after: The current version of the message. - :type after: :class:`Message` + This requires :attr:`Intents.emojis_and_stickers` to be enabled. -.. function:: on_raw_message_edit(payload) + :param guild: The guild who got their emojis updated. + :type guild: :class:`Guild` + :param before: A list of emojis before the update. + :type before: Sequence[:class:`Emoji`] + :param after: A list of emojis after the update. + :type after: Sequence[:class:`Emoji`] - Called when a message is edited. Unlike :func:`on_message_edit`, this is called - regardless of the state of the internal message cache. +.. function:: on_guild_stickers_update(guild, before, after) - If the message is found in the message cache, - it can be accessed via :attr:`RawMessageUpdateEvent.cached_message`. The cached message represents - the message before it has been edited. For example, if the content of a message is modified and - triggers the :func:`on_raw_message_edit` coroutine, the :attr:`RawMessageUpdateEvent.cached_message` - will return a :class:`Message` object that represents the message before the content was modified. + Called when a :class:`Guild` updates its stickers. - Due to the inherently raw nature of this event, the data parameter coincides with - the raw data given by the `gateway `_. + This requires :attr:`Intents.emojis_and_stickers` to be enabled. - Since the data payload can be partial, care must be taken when accessing stuff in the dictionary. - One example of a common case of partial data is when the ``'content'`` key is inaccessible. This - denotes an "embed" only edit, which is an edit in which only the embeds are updated by the Discord - embed server. + .. versionadded:: 2.0 - This requires :attr:`Intents.messages` to be enabled. + :param guild: The guild who got their stickers updated. + :type guild: :class:`Guild` + :param before: A list of stickers before the update. + :type before: Sequence[:class:`GuildSticker`] + :param after: A list of stickers after the update. + :type after: Sequence[:class:`GuildSticker`] - :param payload: The raw event payload data. - :type payload: :class:`RawMessageUpdateEvent` +.. function:: on_invite_create(invite) -.. function:: on_reaction_add(reaction, user) + Called when an :class:`Invite` is created. + You must have the :attr:`~Permissions.manage_channels` permission to receive this. - Called when a message has a reaction added to it. Similar to :func:`on_message_edit`, - if the message is not found in the internal message cache, then this - event will not be called. Consider using :func:`on_raw_reaction_add` instead. + .. versionadded:: 1.3 .. note:: - To get the :class:`Message` being reacted, access it via :attr:`Reaction.message`. - - This requires :attr:`Intents.reactions` to be enabled. - - .. note:: + There is a rare possibility that the :attr:`Invite.guild` and :attr:`Invite.channel` + attributes will be of :class:`Object` rather than the respective models. - This doesn't require :attr:`Intents.members` within a guild context, - but due to Discord not providing updated user information in a direct message - it's required for direct messages to receive this event. - Consider using :func:`on_raw_reaction_add` if you need this and do not otherwise want - to enable the members intent. + This requires :attr:`Intents.invites` to be enabled. - :param reaction: The current state of the reaction. - :type reaction: :class:`Reaction` - :param user: The user who added the reaction. - :type user: Union[:class:`Member`, :class:`User`] + :param invite: The invite that was created. + :type invite: :class:`Invite` -.. function:: on_raw_reaction_add(payload) +.. function:: on_invite_delete(invite) - Called when a message has a reaction added. Unlike :func:`on_reaction_add`, this is - called regardless of the state of the internal message cache. + Called when an :class:`Invite` is deleted. + You must have the :attr:`~Permissions.manage_channels` permission to receive this. - This requires :attr:`Intents.reactions` to be enabled. + .. versionadded:: 1.3 - :param payload: The raw event payload data. - :type payload: :class:`RawReactionActionEvent` + .. note:: -.. function:: on_reaction_remove(reaction, user) + There is a rare possibility that the :attr:`Invite.guild` and :attr:`Invite.channel` + attributes will be of :class:`Object` rather than the respective models. - Called when a message has a reaction removed from it. Similar to on_message_edit, - if the message is not found in the internal message cache, then this event - will not be called. + Outside of those two attributes, the only other attribute guaranteed to be + filled by the Discord gateway for this event is :attr:`Invite.code`. - .. note:: + This requires :attr:`Intents.invites` to be enabled. - To get the message being reacted, access it via :attr:`Reaction.message`. + :param invite: The invite that was deleted. + :type invite: :class:`Invite` - This requires both :attr:`Intents.reactions` and :attr:`Intents.members` to be enabled. - .. note:: +Integrations +~~~~~~~~~~~~~ - Consider using :func:`on_raw_reaction_remove` if you need this and do not want - to enable the members intent. +.. function:: on_integration_create(integration) - :param reaction: The current state of the reaction. - :type reaction: :class:`Reaction` - :param user: The user who added the reaction. - :type user: Union[:class:`Member`, :class:`User`] + Called when an integration is created. -.. function:: on_raw_reaction_remove(payload) + This requires :attr:`Intents.integrations` to be enabled. - Called when a message has a reaction removed. Unlike :func:`on_reaction_remove`, this is - called regardless of the state of the internal message cache. + .. versionadded:: 2.0 - This requires :attr:`Intents.reactions` to be enabled. + :param integration: The integration that was created. + :type integration: :class:`Integration` - :param payload: The raw event payload data. - :type payload: :class:`RawReactionActionEvent` +.. function:: on_integration_update(integration) -.. function:: on_reaction_clear(message, reactions) + Called when an integration is updated. - Called when a message has all its reactions removed from it. Similar to :func:`on_message_edit`, - if the message is not found in the internal message cache, then this event - will not be called. Consider using :func:`on_raw_reaction_clear` instead. + This requires :attr:`Intents.integrations` to be enabled. - This requires :attr:`Intents.reactions` to be enabled. + .. versionadded:: 2.0 - :param message: The message that had its reactions cleared. - :type message: :class:`Message` - :param reactions: The reactions that were removed. - :type reactions: List[:class:`Reaction`] + :param integration: The integration that was created. + :type integration: :class:`Integration` -.. function:: on_raw_reaction_clear(payload) +.. function:: on_guild_integrations_update(guild) - Called when a message has all its reactions removed. Unlike :func:`on_reaction_clear`, - this is called regardless of the state of the internal message cache. + Called whenever an integration is created, modified, or removed from a guild. - This requires :attr:`Intents.reactions` to be enabled. + This requires :attr:`Intents.integrations` to be enabled. - :param payload: The raw event payload data. - :type payload: :class:`RawReactionClearEvent` + .. versionadded:: 1.4 -.. function:: on_reaction_clear_emoji(reaction) + :param guild: The guild that had its integrations updated. + :type guild: :class:`Guild` - Called when a message has a specific reaction removed from it. Similar to :func:`on_message_edit`, - if the message is not found in the internal message cache, then this event - will not be called. Consider using :func:`on_raw_reaction_clear_emoji` instead. +.. function:: on_webhooks_update(channel) - This requires :attr:`Intents.reactions` to be enabled. + Called whenever a webhook is created, modified, or removed from a guild channel. - .. versionadded:: 1.3 + This requires :attr:`Intents.webhooks` to be enabled. - :param reaction: The reaction that got cleared. - :type reaction: :class:`Reaction` + :param channel: The channel that had its webhooks updated. + :type channel: :class:`abc.GuildChannel` -.. function:: on_raw_reaction_clear_emoji(payload) +.. function:: on_raw_integration_delete(payload) - Called when a message has a specific reaction removed from it. Unlike :func:`on_reaction_clear_emoji` this is called - regardless of the state of the internal message cache. + Called when an integration is deleted. - This requires :attr:`Intents.reactions` to be enabled. + This requires :attr:`Intents.integrations` to be enabled. - .. versionadded:: 1.3 + .. versionadded:: 2.0 :param payload: The raw event payload data. - :type payload: :class:`RawReactionClearEmojiEvent` + :type payload: :class:`RawIntegrationDeleteEvent` + +Interactions +~~~~~~~~~~~~~ .. function:: on_interaction(interaction) @@ -626,293 +646,348 @@ to handle it, which defaults to print a traceback and ignoring the exception. :param interaction: The interaction data. :type interaction: :class:`Interaction` -.. function:: on_private_channel_update(before, after) +Members +~~~~~~~~ - Called whenever a private group DM is updated. e.g. changed name or topic. +.. function:: on_member_join(member) + on_member_remove(member) - This requires :attr:`Intents.messages` to be enabled. + Called when a :class:`Member` join or leaves a :class:`Guild`. - :param before: The updated group channel's old info. - :type before: :class:`GroupChannel` - :param after: The updated group channel's new info. - :type after: :class:`GroupChannel` + This requires :attr:`Intents.members` to be enabled. -.. function:: on_private_channel_pins_update(channel, last_pin) + :param member: The member who joined or left. + :type member: :class:`Member` - Called whenever a message is pinned or unpinned from a private channel. +.. function:: on_member_update(before, after) - :param channel: The private channel that had its pins updated. - :type channel: :class:`abc.PrivateChannel` - :param last_pin: The latest message that was pinned as an aware datetime in UTC. Could be ``None``. - :type last_pin: Optional[:class:`datetime.datetime`] + Called when a :class:`Member` updates their profile. -.. function:: on_guild_channel_delete(channel) - on_guild_channel_create(channel) + This is called when one or more of the following things change: - Called whenever a guild channel is deleted or created. + - nickname + - roles + - pending - Note that you can get the guild from :attr:`~abc.GuildChannel.guild`. + This requires :attr:`Intents.members` to be enabled. - This requires :attr:`Intents.guilds` to be enabled. + :param before: The updated member's old info. + :type before: :class:`Member` + :param after: The updated member's updated info. + :type after: :class:`Member` - :param channel: The guild channel that got created or deleted. - :type channel: :class:`abc.GuildChannel` +.. function:: on_user_update(before, after) -.. function:: on_guild_channel_update(before, after) + Called when a :class:`User` updates their profile. - Called whenever a guild channel is updated. e.g. changed name, topic, permissions. + This is called when one or more of the following things change: - This requires :attr:`Intents.guilds` to be enabled. + - avatar + - username + - discriminator - :param before: The updated guild channel's old info. - :type before: :class:`abc.GuildChannel` - :param after: The updated guild channel's new info. - :type after: :class:`abc.GuildChannel` + This requires :attr:`Intents.members` to be enabled. -.. function:: on_guild_channel_pins_update(channel, last_pin) + :param before: The updated user's old info. + :type before: :class:`User` + :param after: The updated user's updated info. + :type after: :class:`User` - Called whenever a message is pinned or unpinned from a guild channel. +.. function:: on_member_ban(guild, user) - This requires :attr:`Intents.guilds` to be enabled. + Called when user gets banned from a :class:`Guild`. - :param channel: The guild channel that had its pins updated. - :type channel: Union[:class:`abc.GuildChannel`, :class:`Thread`] - :param last_pin: The latest message that was pinned as an aware datetime in UTC. Could be ``None``. - :type last_pin: Optional[:class:`datetime.datetime`] + This requires :attr:`Intents.bans` to be enabled. -.. function:: on_thread_join(thread) + :param guild: The guild the user got banned from. + :type guild: :class:`Guild` + :param user: The user that got banned. + Can be either :class:`User` or :class:`Member` depending if + the user was in the guild or not at the time of removal. + :type user: Union[:class:`User`, :class:`Member`] - Called whenever a thread is joined or created. Note that from the API's perspective there is no way to - differentiate between a thread being created or the bot joining a thread. +.. function:: on_member_unban(guild, user) - Note that you can get the guild from :attr:`Thread.guild`. + Called when a :class:`User` gets unbanned from a :class:`Guild`. - This requires :attr:`Intents.guilds` to be enabled. + This requires :attr:`Intents.bans` to be enabled. + + :param guild: The guild the user got unbanned from. + :type guild: :class:`Guild` + :param user: The user that got unbanned. + :type user: :class:`User` + +.. function:: on_presence_update(before, after) + + Called when a :class:`Member` updates their presence. + + This is called when one or more of the following things change: + + - status + - activity + + This requires :attr:`Intents.presences` and :attr:`Intents.members` to be enabled. .. versionadded:: 2.0 - :param thread: The thread that got joined. - :type thread: :class:`Thread` + :param before: The updated member's old info. + :type before: :class:`Member` + :param after: The updated member's updated info. + :type after: :class:`Member` -.. function:: on_thread_remove(thread) +Messages +~~~~~~~~~ - Called whenever a thread is removed. This is different from a thread being deleted. +.. function:: on_message(message) - Note that you can get the guild from :attr:`Thread.guild`. + Called when a :class:`Message` is created and sent. - This requires :attr:`Intents.guilds` to be enabled. + This requires :attr:`Intents.messages` to be enabled. .. warning:: - Due to technical limitations, this event might not be called - as soon as one expects. Since the library tracks thread membership - locally, the API only sends updated thread membership status upon being - synced by joining a thread. - - .. versionadded:: 2.0 + Your bot's own messages and private messages are sent through this + event. This can lead cases of 'recursion' depending on how your bot was + programmed. If you want the bot to not reply to itself, consider + checking the user IDs. Note that :class:`~ext.commands.Bot` does not + have this problem. - :param thread: The thread that got removed. - :type thread: :class:`Thread` + :param message: The current message. + :type message: :class:`Message` -.. function:: on_thread_delete(thread) +.. function:: on_message_edit(before, after) - Called whenever a thread is deleted. + Called when a :class:`Message` receives an update event. If the message is not found + in the internal message cache, then these events will not be called. + Messages might not be in cache if the message is too old + or the client is participating in high traffic guilds. - Note that you can get the guild from :attr:`Thread.guild`. + If this occurs increase the :class:`max_messages ` parameter + or use the :func:`on_raw_message_edit` event instead. - This requires :attr:`Intents.guilds` to be enabled. + The following non-exhaustive cases trigger this event: - .. versionadded:: 2.0 + - A message has been pinned or unpinned. + - The message content has been changed. + - The message has received an embed. - :param thread: The thread that got deleted. - :type thread: :class:`Thread` + - For performance reasons, the embed server does not do this in a "consistent" manner. -.. function:: on_thread_member_join(member) - on_thread_member_remove(member) + - The message's embeds were suppressed or unsuppressed. + - A call message has received an update to its participants or ending time. - Called when a :class:`ThreadMember` leaves or joins a :class:`Thread`. + This requires :attr:`Intents.messages` to be enabled. - You can get the thread a member belongs in by accessing :attr:`ThreadMember.thread`. + :param before: The previous version of the message. + :type before: :class:`Message` + :param after: The current version of the message. + :type after: :class:`Message` - This requires :attr:`Intents.members` to be enabled. +.. function:: on_message_delete(message) - .. versionadded:: 2.0 + Called when a message is deleted. If the message is not found in the + internal message cache, then this event will not be called. + Messages might not be in cache if the message is too old + or the client is participating in high traffic guilds. - :param member: The member who joined or left. - :type member: :class:`ThreadMember` + If this occurs increase the :class:`max_messages ` parameter + or use the :func:`on_raw_message_delete` event instead. -.. function:: on_thread_update(before, after) + This requires :attr:`Intents.messages` to be enabled. - Called whenever a thread is updated. + :param message: The deleted message. + :type message: :class:`Message` - This requires :attr:`Intents.guilds` to be enabled. +.. function:: on_bulk_message_delete(messages) - .. versionadded:: 2.0 + Called when messages are bulk deleted. If none of the messages deleted + are found in the internal message cache, then this event will not be called. + If individual messages were not found in the internal message cache, + this event will still be called, but the messages not found will not be included in + the messages list. Messages might not be in cache if the message is too old + or the client is participating in high traffic guilds. - :param before: The updated thread's old info. - :type before: :class:`Thread` - :param after: The updated thread's new info. - :type after: :class:`Thread` + If this occurs increase the :class:`max_messages ` parameter + or use the :func:`on_raw_bulk_message_delete` event instead. -.. function:: on_guild_integrations_update(guild) + This requires :attr:`Intents.messages` to be enabled. - Called whenever an integration is created, modified, or removed from a guild. + :param messages: The messages that have been deleted. + :type messages: List[:class:`Message`] - This requires :attr:`Intents.integrations` to be enabled. +.. function:: on_raw_message_edit(payload) - .. versionadded:: 1.4 + Called when a message is edited. Unlike :func:`on_message_edit`, this is called + regardless of the state of the internal message cache. - :param guild: The guild that had its integrations updated. - :type guild: :class:`Guild` + If the message is found in the message cache, + it can be accessed via :attr:`RawMessageUpdateEvent.cached_message`. The cached message represents + the message before it has been edited. For example, if the content of a message is modified and + triggers the :func:`on_raw_message_edit` coroutine, the :attr:`RawMessageUpdateEvent.cached_message` + will return a :class:`Message` object that represents the message before the content was modified. -.. function:: on_integration_create(integration) + Due to the inherently raw nature of this event, the data parameter coincides with + the raw data given by the `gateway `_. - Called when an integration is created. + Since the data payload can be partial, care must be taken when accessing stuff in the dictionary. + One example of a common case of partial data is when the ``'content'`` key is inaccessible. This + denotes an "embed" only edit, which is an edit in which only the embeds are updated by the Discord + embed server. - This requires :attr:`Intents.integrations` to be enabled. + This requires :attr:`Intents.messages` to be enabled. - .. versionadded:: 2.0 + :param payload: The raw event payload data. + :type payload: :class:`RawMessageUpdateEvent` - :param integration: The integration that was created. - :type integration: :class:`Integration` -.. function:: on_integration_update(integration) +.. function:: on_raw_message_delete(payload) - Called when an integration is updated. + Called when a message is deleted. Unlike :func:`on_message_delete`, this is + called regardless of the message being in the internal message cache or not. - This requires :attr:`Intents.integrations` to be enabled. + If the message is found in the message cache, + it can be accessed via :attr:`RawMessageDeleteEvent.cached_message` - .. versionadded:: 2.0 + This requires :attr:`Intents.messages` to be enabled. - :param integration: The integration that was created. - :type integration: :class:`Integration` + :param payload: The raw event payload data. + :type payload: :class:`RawMessageDeleteEvent` -.. function:: on_raw_integration_delete(payload) +.. function:: on_raw_bulk_message_delete(payload) - Called when an integration is deleted. + Called when a bulk delete is triggered. Unlike :func:`on_bulk_message_delete`, this is + called regardless of the messages being in the internal message cache or not. - This requires :attr:`Intents.integrations` to be enabled. + If the messages are found in the message cache, + they can be accessed via :attr:`RawBulkMessageDeleteEvent.cached_messages` - .. versionadded:: 2.0 + This requires :attr:`Intents.messages` to be enabled. :param payload: The raw event payload data. - :type payload: :class:`RawIntegrationDeleteEvent` + :type payload: :class:`RawBulkMessageDeleteEvent` -.. function:: on_webhooks_update(channel) +Reactions +~~~~~~~~~~ - Called whenever a webhook is created, modified, or removed from a guild channel. +.. function:: on_reaction_add(reaction, user) - This requires :attr:`Intents.webhooks` to be enabled. + Called when a message has a reaction added to it. Similar to :func:`on_message_edit`, + if the message is not found in the internal message cache, then this + event will not be called. Consider using :func:`on_raw_reaction_add` instead. - :param channel: The channel that had its webhooks updated. - :type channel: :class:`abc.GuildChannel` + .. note:: -.. function:: on_member_join(member) - on_member_remove(member) + To get the :class:`Message` being reacted, access it via :attr:`Reaction.message`. - Called when a :class:`Member` leaves or joins a :class:`Guild`. + This requires :attr:`Intents.reactions` to be enabled. - This requires :attr:`Intents.members` to be enabled. + .. note:: - :param member: The member who joined or left. - :type member: :class:`Member` + This doesn't require :attr:`Intents.members` within a guild context, + but due to Discord not providing updated user information in a direct message + it's required for direct messages to receive this event. + Consider using :func:`on_raw_reaction_add` if you need this and do not otherwise want + to enable the members intent. -.. function:: on_member_update(before, after) + :param reaction: The current state of the reaction. + :type reaction: :class:`Reaction` + :param user: The user who added the reaction. + :type user: Union[:class:`Member`, :class:`User`] - Called when a :class:`Member` updates their profile. +.. function:: on_reaction_remove(reaction, user) - This is called when one or more of the following things change: + Called when a message has a reaction removed from it. Similar to on_message_edit, + if the message is not found in the internal message cache, then this event + will not be called. - - nickname - - roles - - pending + .. note:: - This requires :attr:`Intents.members` to be enabled. + To get the message being reacted, access it via :attr:`Reaction.message`. - :param before: The updated member's old info. - :type before: :class:`Member` - :param after: The updated member's updated info. - :type after: :class:`Member` + This requires both :attr:`Intents.reactions` and :attr:`Intents.members` to be enabled. -.. function:: on_presence_update(before, after) + .. note:: - Called when a :class:`Member` updates their presence. + Consider using :func:`on_raw_reaction_remove` if you need this and do not want + to enable the members intent. - This is called when one or more of the following things change: + :param reaction: The current state of the reaction. + :type reaction: :class:`Reaction` + :param user: The user who added the reaction. + :type user: Union[:class:`Member`, :class:`User`] - - status - - activity +.. function:: on_reaction_clear(message, reactions) - This requires :attr:`Intents.presences` and :attr:`Intents.members` to be enabled. + Called when a message has all its reactions removed from it. Similar to :func:`on_message_edit`, + if the message is not found in the internal message cache, then this event + will not be called. Consider using :func:`on_raw_reaction_clear` instead. - .. versionadded:: 2.0 + This requires :attr:`Intents.reactions` to be enabled. - :param before: The updated member's old info. - :type before: :class:`Member` - :param after: The updated member's updated info. - :type after: :class:`Member` + :param message: The message that had its reactions cleared. + :type message: :class:`Message` + :param reactions: The reactions that were removed. + :type reactions: List[:class:`Reaction`] -.. function:: on_user_update(before, after) +.. function:: on_reaction_clear_emoji(reaction) - Called when a :class:`User` updates their profile. + Called when a message has a specific reaction removed from it. Similar to :func:`on_message_edit`, + if the message is not found in the internal message cache, then this event + will not be called. Consider using :func:`on_raw_reaction_clear_emoji` instead. - This is called when one or more of the following things change: + This requires :attr:`Intents.reactions` to be enabled. - - avatar - - username - - discriminator + .. versionadded:: 1.3 - This requires :attr:`Intents.members` to be enabled. + :param reaction: The reaction that got cleared. + :type reaction: :class:`Reaction` - :param before: The updated user's old info. - :type before: :class:`User` - :param after: The updated user's updated info. - :type after: :class:`User` -.. function:: on_guild_join(guild) +.. function:: on_raw_reaction_add(payload) + + Called when a message has a reaction added. Unlike :func:`on_reaction_add`, this is + called regardless of the state of the internal message cache. + + This requires :attr:`Intents.reactions` to be enabled. + + :param payload: The raw event payload data. + :type payload: :class:`RawReactionActionEvent` - Called when a :class:`Guild` is either created by the :class:`Client` or when the - :class:`Client` joins a guild. +.. function:: on_raw_reaction_remove(payload) - This requires :attr:`Intents.guilds` to be enabled. + Called when a message has a reaction removed. Unlike :func:`on_reaction_remove`, this is + called regardless of the state of the internal message cache. - :param guild: The guild that was joined. - :type guild: :class:`Guild` + This requires :attr:`Intents.reactions` to be enabled. -.. function:: on_guild_remove(guild) + :param payload: The raw event payload data. + :type payload: :class:`RawReactionActionEvent` - Called when a :class:`Guild` is removed from the :class:`Client`. +.. function:: on_raw_reaction_clear(payload) - This happens through, but not limited to, these circumstances: + Called when a message has all its reactions removed. Unlike :func:`on_reaction_clear`, + this is called regardless of the state of the internal message cache. - - The client got banned. - - The client got kicked. - - The client left the guild. - - The client or the guild owner deleted the guild. + This requires :attr:`Intents.reactions` to be enabled. - In order for this event to be invoked then the :class:`Client` must have - been part of the guild to begin with. (i.e. it is part of :attr:`Client.guilds`) + :param payload: The raw event payload data. + :type payload: :class:`RawReactionClearEvent` - This requires :attr:`Intents.guilds` to be enabled. +.. function:: on_raw_reaction_clear_emoji(payload) - :param guild: The guild that got removed. - :type guild: :class:`Guild` + Called when a message has a specific reaction removed from it. Unlike :func:`on_reaction_clear_emoji` this is called + regardless of the state of the internal message cache. -.. function:: on_guild_update(before, after) + This requires :attr:`Intents.reactions` to be enabled. - Called when a :class:`Guild` updates, for example: + .. versionadded:: 1.3 - - Changed name - - Changed AFK channel - - Changed AFK timeout - - etc + :param payload: The raw event payload data. + :type payload: :class:`RawReactionClearEmojiEvent` - This requires :attr:`Intents.guilds` to be enabled. - :param before: The guild prior to being updated. - :type before: :class:`Guild` - :param after: The guild after being updated. - :type after: :class:`Guild` +Roles +~~~~~~ .. function:: on_guild_role_create(role) on_guild_role_delete(role) @@ -937,63 +1012,60 @@ to handle it, which defaults to print a traceback and ignoring the exception. :param after: The updated role's updated info. :type after: :class:`Role` -.. function:: on_guild_emojis_update(guild, before, after) - Called when a :class:`Guild` adds or removes :class:`Emoji`. +Scheduled Events +~~~~~~~~~~~~~~~~~ - This requires :attr:`Intents.emojis_and_stickers` to be enabled. +.. function:: on_scheduled_event_create(event) + on_scheduled_event_delete(event) - :param guild: The guild who got their emojis updated. - :type guild: :class:`Guild` - :param before: A list of emojis before the update. - :type before: Sequence[:class:`Emoji`] - :param after: A list of emojis after the update. - :type after: Sequence[:class:`Emoji`] + Called when a :class:`ScheduledEvent` is created or deleted. -.. function:: on_guild_stickers_update(guild, before, after) + This requires :attr:`Intents.guild_scheduled_events` to be enabled. - Called when a :class:`Guild` updates its stickers. + .. versionadded:: 2.0 - This requires :attr:`Intents.emojis_and_stickers` to be enabled. + :param event: The scheduled event that was created or deleted. + :type event: :class:`ScheduledEvent` - .. versionadded:: 2.0 +.. function:: on_scheduled_event_update(before, after) - :param guild: The guild who got their stickers updated. - :type guild: :class:`Guild` - :param before: A list of stickers before the update. - :type before: Sequence[:class:`GuildSticker`] - :param after: A list of stickers after the update. - :type after: Sequence[:class:`GuildSticker`] + Called when a :class:`ScheduledEvent` is updated. -.. function:: on_guild_available(guild) - on_guild_unavailable(guild) + This requires :attr:`Intents.guild_scheduled_events` to be enabled. - Called when a guild becomes available or unavailable. The guild must have - existed in the :attr:`Client.guilds` cache. + The following, but not limited to, examples illustrate when this event is called: - This requires :attr:`Intents.guilds` to be enabled. + - The scheduled start/end times are changed. + - The channel is changed. + - The description is changed. + - The status is changed. + - The image is changed. - :param guild: The :class:`Guild` that has changed availability. + .. versionadded:: 2.0 -.. function:: on_voice_state_update(member, before, after) + :param before: The scheduled event before the update. + :type before: :class:`ScheduledEvent` + :param after: The scheduled event after the update. + :type after: :class:`ScheduledEvent` - Called when a :class:`Member` changes their :class:`VoiceState`. +.. function:: on_scheduled_event_user_add(event, user) + on_scheduled_event_user_remove(event, user) - The following, but not limited to, examples illustrate when this event is called: + Called when a user is added or removed from a :class:`ScheduledEvent`. - - A member joins a voice or stage channel. - - A member leaves a voice or stage channel. - - A member is muted or deafened by their own accord. - - A member is muted or deafened by a guild administrator. + This requires :attr:`Intents.guild_scheduled_events` to be enabled. - This requires :attr:`Intents.voice_states` to be enabled. + .. versionadded:: 2.0 - :param member: The member whose voice states changed. - :type member: :class:`Member` - :param before: The voice state prior to the changes. - :type before: :class:`VoiceState` - :param after: The voice state after the changes. - :type after: :class:`VoiceState` + :param event: The scheduled event that the user was added or removed from. + :type event: :class:`ScheduledEvent` + :param user: The user that was added or removed. + :type user: :class:`User` + + +Stages +~~~~~~~ .. function:: on_stage_instance_create(stage_instance) on_stage_instance_delete(stage_instance) @@ -1021,123 +1093,106 @@ to handle it, which defaults to print a traceback and ignoring the exception. :param after: The stage instance after the update. :type after: :class:`StageInstance` -.. function:: on_scheduled_event_create(event) - on_scheduled_event_delete(event) - - Called when a :class:`ScheduledEvent` is created or deleted. - - This requires :attr:`Intents.guild_scheduled_events` to be enabled. - - .. versionadded:: 2.0 - - :param event: The scheduled event that was created or deleted. - :type event: :class:`ScheduledEvent` +Threads +~~~~~~~~ -.. function:: on_scheduled_event_update(before, after) - Called when a :class:`ScheduledEvent` is updated. +.. function:: on_thread_join(thread) - This requires :attr:`Intents.guild_scheduled_events` to be enabled. + Called whenever a thread is joined or created. Note that from the API's perspective there is no way to + differentiate between a thread being created or the bot joining a thread. - The following, but not limited to, examples illustrate when this event is called: + Note that you can get the guild from :attr:`Thread.guild`. - - The scheduled start/end times are changed. - - The channel is changed. - - The description is changed. - - The status is changed. - - The image is changed. + This requires :attr:`Intents.guilds` to be enabled. .. versionadded:: 2.0 - :param before: The scheduled event before the update. - :type before: :class:`ScheduledEvent` - :param after: The scheduled event after the update. - :type after: :class:`ScheduledEvent` + :param thread: The thread that got joined. + :type thread: :class:`Thread` -.. function:: on_scheduled_event_user_add(event, user) - on_scheduled_event_user_remove(event, user) +.. function:: on_thread_update(before, after) - Called when a user is added or removed from a :class:`ScheduledEvent`. + Called whenever a thread is updated. - This requires :attr:`Intents.guild_scheduled_events` to be enabled. + This requires :attr:`Intents.guilds` to be enabled. .. versionadded:: 2.0 - :param event: The scheduled event that the user was added or removed from. - :type event: :class:`ScheduledEvent` - :param user: The user that was added or removed. - :type user: :class:`User` + :param before: The updated thread's old info. + :type before: :class:`Thread` + :param after: The updated thread's new info. + :type after: :class:`Thread` -.. function:: on_member_ban(guild, user) +.. function:: on_thread_remove(thread) - Called when user gets banned from a :class:`Guild`. + Called whenever a thread is removed. This is different from a thread being deleted. - This requires :attr:`Intents.bans` to be enabled. + Note that you can get the guild from :attr:`Thread.guild`. - :param guild: The guild the user got banned from. - :type guild: :class:`Guild` - :param user: The user that got banned. - Can be either :class:`User` or :class:`Member` depending if - the user was in the guild or not at the time of removal. - :type user: Union[:class:`User`, :class:`Member`] + This requires :attr:`Intents.guilds` to be enabled. -.. function:: on_member_unban(guild, user) + .. warning:: - Called when a :class:`User` gets unbanned from a :class:`Guild`. + Due to technical limitations, this event might not be called + as soon as one expects. Since the library tracks thread membership + locally, the API only sends updated thread membership status upon being + synced by joining a thread. - This requires :attr:`Intents.bans` to be enabled. + .. versionadded:: 2.0 - :param guild: The guild the user got unbanned from. - :type guild: :class:`Guild` - :param user: The user that got unbanned. - :type user: :class:`User` + :param thread: The thread that got removed. + :type thread: :class:`Thread` -.. function:: on_invite_create(invite) +.. function:: on_thread_delete(thread) - Called when an :class:`Invite` is created. - You must have the :attr:`~Permissions.manage_channels` permission to receive this. + Called whenever a thread is deleted. - .. versionadded:: 1.3 + Note that you can get the guild from :attr:`Thread.guild`. - .. note:: + This requires :attr:`Intents.guilds` to be enabled. - There is a rare possibility that the :attr:`Invite.guild` and :attr:`Invite.channel` - attributes will be of :class:`Object` rather than the respective models. + .. versionadded:: 2.0 - This requires :attr:`Intents.invites` to be enabled. + :param thread: The thread that got deleted. + :type thread: :class:`Thread` - :param invite: The invite that was created. - :type invite: :class:`Invite` +.. function:: on_thread_member_join(member) + on_thread_member_remove(member) -.. function:: on_invite_delete(invite) + Called when a :class:`ThreadMember` leaves or joins a :class:`Thread`. - Called when an :class:`Invite` is deleted. - You must have the :attr:`~Permissions.manage_channels` permission to receive this. + You can get the thread a member belongs in by accessing :attr:`ThreadMember.thread`. - .. versionadded:: 1.3 + This requires :attr:`Intents.members` to be enabled. - .. note:: + .. versionadded:: 2.0 - There is a rare possibility that the :attr:`Invite.guild` and :attr:`Invite.channel` - attributes will be of :class:`Object` rather than the respective models. + :param member: The member who joined or left. + :type member: :class:`ThreadMember` - Outside of those two attributes, the only other attribute guaranteed to be - filled by the Discord gateway for this event is :attr:`Invite.code`. +Voice +~~~~~~ - This requires :attr:`Intents.invites` to be enabled. +.. function:: on_voice_state_update(member, before, after) - :param invite: The invite that was deleted. - :type invite: :class:`Invite` + Called when a :class:`Member` changes their :class:`VoiceState`. -.. function:: on_group_join(channel, user) - on_group_remove(channel, user) + The following, but not limited to, examples illustrate when this event is called: - Called when someone joins or leaves a :class:`GroupChannel`. + - A member joins a voice or stage channel. + - A member leaves a voice or stage channel. + - A member is muted or deafened by their own accord. + - A member is muted or deafened by a guild administrator. - :param channel: The group that the user joined or left. - :type channel: :class:`GroupChannel` - :param user: The user that joined or left. - :type user: :class:`User` + This requires :attr:`Intents.voice_states` to be enabled. + + :param member: The member whose voice states changed. + :type member: :class:`Member` + :param before: The voice state prior to the changes. + :type before: :class:`VoiceState` + :param after: The voice state after the changes. + :type after: :class:`VoiceState` .. _discord-api-utils: