D++ (DPP)
C++ Discord API Bot Library
|
Event parameter for context menu interactions for users. More...
#include <dispatcher.h>
Public Member Functions | |
const user & | get_user () const |
Get the user which was right-clicked on. More... | |
user_context_menu_t & | set_user (const user &u) |
Set the user object for this event. More... | |
event_dispatch_t & | operator= (const event_dispatch_t &rhs)=default |
Copy another event_dispatch_t object. More... | |
event_dispatch_t & | operator= (event_dispatch_t &&rhs)=default |
Move from another event_dispatch_t object. More... | |
void | reply (command_completion_event_t callback=utility::log_error()) const |
Acknowledge interaction without displaying a message to the user, for use with button and select menu components. More... | |
void | reply (interaction_response_type t, const message &m, command_completion_event_t callback=utility::log_error()) const |
Send a reply for this interaction. More... | |
void | reply (interaction_response_type t, const std::string &mt, command_completion_event_t callback=utility::log_error()) const |
Send a reply for this interaction. More... | |
void | reply (const message &m, command_completion_event_t callback=utility::log_error()) const |
Send a reply for this interaction. Uses the default type of dpp::ir_channel_message_with_source, a simple message reply. More... | |
void | reply (const std::string &mt, command_completion_event_t callback=utility::log_error()) const |
Send a reply for this interaction. Uses the default type of dpp::ir_channel_message_with_source, a simple message reply. More... | |
void | dialog (const interaction_modal_response &mr, command_completion_event_t callback=utility::log_error()) const |
Reply to interaction with a dialog box. More... | |
void | edit_response (const message &m, command_completion_event_t callback=utility::log_error()) const |
Edit the response for this interaction. More... | |
void | edit_response (const std::string &mt, command_completion_event_t callback=utility::log_error()) const |
Edit the response for this interaction. More... | |
void | thinking (bool ephemeral=false, command_completion_event_t callback=utility::log_error()) const |
Set the bot to 'thinking' state where you have up to 15 minutes to respond. More... | |
void | get_original_response (command_completion_event_t callback) const |
Get original response message for this interaction. More... | |
void | edit_original_response (const message &m, command_completion_event_t callback=utility::log_error()) const |
Edit original response message for this interaction. More... | |
void | delete_original_response (command_completion_event_t callback=utility::log_error()) const |
Delete original response message for this interaction. This cannot be used on an ephemeral interaction response. More... | |
dpp::async< dpp::confirmation_callback_t > | co_reply () const |
Acknowledge interaction without displaying a message to the user, for use with button and select menu components. More... | |
dpp::async< dpp::confirmation_callback_t > | co_reply (interaction_response_type t, const message &m) const |
Send a reply for this interaction. More... | |
dpp::async< dpp::confirmation_callback_t > | co_reply (interaction_response_type t, const std::string &mt) const |
Send a reply for this interaction. More... | |
dpp::async< dpp::confirmation_callback_t > | co_reply (const message &m) const |
Send a reply for this interaction. Uses the default type of dpp::ir_channel_message_with_source, a simple message reply. More... | |
dpp::async< dpp::confirmation_callback_t > | co_reply (const std::string &mt) const |
Send a reply for this interaction. Uses the default type of dpp::ir_channel_message_with_source, a simple message reply. More... | |
dpp::async< dpp::confirmation_callback_t > | co_dialog (const interaction_modal_response &mr) const |
Reply to interaction with a dialog box. More... | |
dpp::async< dpp::confirmation_callback_t > | co_edit_response (const message &m) const |
Edit the response for this interaction. More... | |
dpp::async< dpp::confirmation_callback_t > | co_edit_response (const std::string &mt) const |
Edit the response for this interaction. More... | |
dpp::async< dpp::confirmation_callback_t > | co_thinking (bool ephemeral=false) const |
Set the bot to 'thinking' state where you have up to 15 minutes to respond. More... | |
dpp::async< dpp::confirmation_callback_t > | co_get_original_response () const |
Get original response message for this interaction. More... | |
dpp::async< dpp::confirmation_callback_t > | co_edit_original_response (const message &m) const |
Edit original response message for this interaction. More... | |
dpp::async< dpp::confirmation_callback_t > | co_delete_original_response () const |
Delete original response message for this interaction. This cannot be used on an ephemeral interaction response. More... | |
event_dispatch_t ()=default | |
Construct a new event_dispatch_t object. More... | |
event_dispatch_t (const event_dispatch_t &rhs)=default | |
Construct a new event_dispatch_t object. More... | |
event_dispatch_t (event_dispatch_t &&rhs)=default | |
Construct a new event_dispatch_t object. More... | |
event_dispatch_t (discord_client *client, const std::string &raw) | |
Construct a new event_dispatch_t object. More... | |
event_dispatch_t (discord_client *client, std::string &&raw) | |
Construct a new event_dispatch_t object. More... | |
const event_dispatch_t & | cancel_event () const |
Cancels the event in progress. Any other attached lambdas for this event after this one are not called. More... | |
event_dispatch_t & | cancel_event () |
Cancels the event in progress. Any other attached lambdas for this event after this one are not called. More... | |
bool | is_cancelled () const |
Returns true if the event is cancelled. Note that event cancellation is a thread local state, and not stored in the object (because object which can be cancelled is const during the event, and cannot itself contain the changeable state). More... | |
Public Attributes | |
user | ctx_user = {} |
Related user. More... | |
interaction | command = {} |
command interaction More... | |
std::string | raw_event = {} |
Raw event data. If you are using json on your websocket, this will contain json, and if you are using ETF as your websocket protocol, it will contain raw ETF data. More... | |
discord_client * | from = nullptr |
Shard the event came from. Note that for some events, notably voice events, this may be nullptr. More... | |
bool | cancelled = false |
Whether the event was cancelled using cancel_event(). More... | |
Event parameter for context menu interactions for users.
|
inherited |
Cancels the event in progress. Any other attached lambdas for this event after this one are not called.
|
inherited |
Cancels the event in progress. Any other attached lambdas for this event after this one are not called.
|
inherited |
Delete original response message for this interaction. This cannot be used on an ephemeral interaction response.
On success the result will contain a dpp::confirmation object in confirmation_callback_t::value. On failure, the value is undefined and confirmation_callback_t::is_error() method will return true. You can obtain full error details with confirmation_callback_t::get_error().
|
inherited |
Reply to interaction with a dialog box.
mr | Dialog box response to send On success the result will contain a dpp::confirmation object in confirmation_callback_t::value. On failure, the value is undefined and confirmation_callback_t::is_error() method will return true. You can obtain full error details with confirmation_callback_t::get_error(). |
|
inherited |
Edit original response message for this interaction.
m | Message object to send. Not all fields are supported by Discord. On success the result will contain a dpp::message object in confirmation_callback_t::value. On failure, the value is undefined and confirmation_callback_t::is_error() method will return true. You can obtain full error details with confirmation_callback_t::get_error(). |
|
inherited |
Edit the response for this interaction.
m | Message object to send. Not all fields are supported by Discord. On success the result will contain a dpp::confirmation object in confirmation_callback_t::value. On failure, the value is undefined and confirmation_callback_t::is_error() method will return true. You can obtain full error details with confirmation_callback_t::get_error(). |
|
inherited |
Edit the response for this interaction.
mt | The string value to send, for simple text only messages On success the result will contain a dpp::confirmation object in confirmation_callback_t::value. On failure, the value is undefined and confirmation_callback_t::is_error() method will return true. You can obtain full error details with confirmation_callback_t::get_error(). |
|
inherited |
Get original response message for this interaction.
On success the result will contain a dpp::message object in confirmation_callback_t::value. On failure, the value is undefined and confirmation_callback_t::is_error() method will return true. You can obtain full error details with confirmation_callback_t::get_error().
|
inherited |
Acknowledge interaction without displaying a message to the user, for use with button and select menu components.
On success the result will contain a dpp::confirmation object in confirmation_callback_t::value. On failure, the value is undefined and confirmation_callback_t::is_error() method will return true. You can obtain full error details with confirmation_callback_t::get_error().
|
inherited |
Send a reply for this interaction. Uses the default type of dpp::ir_channel_message_with_source, a simple message reply.
m | Message object to send. Not all fields are supported by Discord. On success the result will contain a dpp::confirmation object in confirmation_callback_t::value. On failure, the value is undefined and confirmation_callback_t::is_error() method will return true. You can obtain full error details with confirmation_callback_t::get_error(). |
|
inherited |
Send a reply for this interaction. Uses the default type of dpp::ir_channel_message_with_source, a simple message reply.
mt | The string value to send, for simple text only messages On success the result will contain a dpp::confirmation object in confirmation_callback_t::value. On failure, the value is undefined and confirmation_callback_t::is_error() method will return true. You can obtain full error details with confirmation_callback_t::get_error(). |
|
inherited |
Send a reply for this interaction.
t | Type of reply to send |
m | Message object to send. Not all fields are supported by Discord. On success the result will contain a dpp::confirmation object in confirmation_callback_t::value. On failure, the value is undefined and confirmation_callback_t::is_error() method will return true. You can obtain full error details with confirmation_callback_t::get_error(). |
|
inherited |
Send a reply for this interaction.
t | Type of reply to send |
mt | The string value to send, for simple text only messages On success the result will contain a dpp::confirmation object in confirmation_callback_t::value. On failure, the value is undefined and confirmation_callback_t::is_error() method will return true. You can obtain full error details with confirmation_callback_t::get_error(). |
|
inherited |
Set the bot to 'thinking' state where you have up to 15 minutes to respond.
ephemeral | True if the thinking state should be ephemeral On success the result will contain a dpp::confirmation object in confirmation_callback_t::value. On failure, the value is undefined and confirmation_callback_t::is_error() method will return true. You can obtain full error details with confirmation_callback_t::get_error(). |
|
inherited |
Delete original response message for this interaction. This cannot be used on an ephemeral interaction response.
callback | Function to call when the API call completes. On success the callback will contain a dpp::confirmation object in confirmation_callback_t::value. On failure, the value is undefined and confirmation_callback_t::is_error() method will return true. You can obtain full error details with confirmation_callback_t::get_error(). |
|
inherited |
Reply to interaction with a dialog box.
mr | Dialog box response to send |
callback | User function to execute when the api call completes. On success the callback will contain a dpp::confirmation object in confirmation_callback_t::value. On failure, the value is undefined and confirmation_callback_t::is_error() method will return true. You can obtain full error details with confirmation_callback_t::get_error(). |
|
inherited |
Edit original response message for this interaction.
m | Message object to send. Not all fields are supported by Discord. |
callback | Function to call when the API call completes. On success the callback will contain a dpp::message object in confirmation_callback_t::value. On failure, the value is undefined and confirmation_callback_t::is_error() method will return true. You can obtain full error details with confirmation_callback_t::get_error(). |
|
inherited |
Edit the response for this interaction.
m | Message object to send. Not all fields are supported by Discord. |
callback | User function to execute when the api call completes. On success the callback will contain a dpp::confirmation object in confirmation_callback_t::value. On failure, the value is undefined and confirmation_callback_t::is_error() method will return true. You can obtain full error details with confirmation_callback_t::get_error(). |
|
inherited |
Edit the response for this interaction.
mt | The string value to send, for simple text only messages |
callback | User function to execute when the api call completes. On success the callback will contain a dpp::confirmation object in confirmation_callback_t::value. On failure, the value is undefined and confirmation_callback_t::is_error() method will return true. You can obtain full error details with confirmation_callback_t::get_error(). |
|
defaultinherited |
Construct a new event_dispatch_t object.
|
defaultinherited |
Construct a new event_dispatch_t object.
rhs | event_dispatch_t object to copy from |
|
inherited |
Construct a new event_dispatch_t object.
client | The shard the event originated on. May be a nullptr, e.g. for voice events |
raw | Raw event data as JSON or ETF |
|
inherited |
Construct a new event_dispatch_t object.
client | The shard the event originated on. May be a nullptr, e.g. for voice events |
raw | Raw event data as JSON or ETF |
|
defaultinherited |
Construct a new event_dispatch_t object.
rhs | event_dispatch_t object to move from |
|
inherited |
Get original response message for this interaction.
callback | Function to call when the API call completes. On success the callback will contain a dpp::message object in confirmation_callback_t::value. On failure, the value is undefined and confirmation_callback_t::is_error() method will return true. You can obtain full error details with confirmation_callback_t::get_error(). |
const user & dpp::user_context_menu_t::get_user | ( | ) | const |
Get the user which was right-clicked on.
|
inherited |
Returns true if the event is cancelled. Note that event cancellation is a thread local state, and not stored in the object (because object which can be cancelled is const
during the event, and cannot itself contain the changeable state).
|
default |
Copy another event_dispatch_t object.
rhs | The event to copy from |
|
default |
Move from another event_dispatch_t object.
rhs | The event to move from |
|
inherited |
Acknowledge interaction without displaying a message to the user, for use with button and select menu components.
callback | User function to execute when the api call completes. On success the callback will contain a dpp::confirmation object in confirmation_callback_t::value. On failure, the value is undefined and confirmation_callback_t::is_error() method will return true. You can obtain full error details with confirmation_callback_t::get_error(). |
|
inherited |
Send a reply for this interaction. Uses the default type of dpp::ir_channel_message_with_source, a simple message reply.
m | Message object to send. Not all fields are supported by Discord. |
callback | User function to execute when the api call completes. On success the callback will contain a dpp::confirmation object in confirmation_callback_t::value. On failure, the value is undefined and confirmation_callback_t::is_error() method will return true. You can obtain full error details with confirmation_callback_t::get_error(). |
|
inherited |
Send a reply for this interaction. Uses the default type of dpp::ir_channel_message_with_source, a simple message reply.
mt | The string value to send, for simple text only messages |
callback | User function to execute when the api call completes. On success the callback will contain a dpp::confirmation object in confirmation_callback_t::value. On failure, the value is undefined and confirmation_callback_t::is_error() method will return true. You can obtain full error details with confirmation_callback_t::get_error(). |
|
inherited |
Send a reply for this interaction.
t | Type of reply to send |
m | Message object to send. Not all fields are supported by Discord. |
callback | User function to execute when the api call completes. On success the callback will contain a dpp::confirmation object in confirmation_callback_t::value. On failure, the value is undefined and confirmation_callback_t::is_error() method will return true. You can obtain full error details with confirmation_callback_t::get_error(). |
|
inherited |
Send a reply for this interaction.
t | Type of reply to send |
mt | The string value to send, for simple text only messages |
callback | User function to execute when the api call completes. On success the callback will contain a dpp::confirmation object in confirmation_callback_t::value. On failure, the value is undefined and confirmation_callback_t::is_error() method will return true. You can obtain full error details with confirmation_callback_t::get_error(). |
user_context_menu_t & dpp::user_context_menu_t::set_user | ( | const user & | u | ) |
Set the user object for this event.
u | user to set |
|
inherited |
Set the bot to 'thinking' state where you have up to 15 minutes to respond.
ephemeral | True if the thinking state should be ephemeral |
callback | User function to execute when the api call completes. On success the callback will contain a dpp::confirmation object in confirmation_callback_t::value. On failure, the value is undefined and confirmation_callback_t::is_error() method will return true. You can obtain full error details with confirmation_callback_t::get_error(). |
|
mutableinherited |
Whether the event was cancelled using cancel_event().
|
inherited |
command interaction
user dpp::user_context_menu_t::ctx_user = {} |
Related user.
|
inherited |
Shard the event came from. Note that for some events, notably voice events, this may be nullptr.
|
inherited |
Raw event data. If you are using json on your websocket, this will contain json, and if you are using ETF as your websocket protocol, it will contain raw ETF data.