DiscordCoreAPI
A Discord bot library written in C++, with custom asynchronous coroutines.
Loading...
Searching...
No Matches
Executing a WebHook using a Discord Bot Library C++

/// Test.hpp -header for the "test" command.
/// https://github.com/RealTimeChris/DiscordCoreAPI
#pragma once
#include <index.hpp>
namespace discord_core_api {
class test : public base_function {
public:
test() {
commandName = "test";
helpDescription = "testing purposes!";
embed_data msgEmbed { };
msgEmbed.setDescription("------\nSimply enter !test or /test!\n------");
msgEmbed.setTitle("__**test usage:**__");
msgEmbed.setTimeStamp(getTimeAndDate());
msgEmbed.setColor("fe_fe_fe");
helpEmbed = msgEmbed;
}
unique_ptr<base_function> create() {
return makeUnique<test>();
}
virtual void execute(base_function_arguments& args) {
try {
get_guild_web_hooks_data& dataPackage;
dataPackage.guildId = args.eventData.getGuildId();
auto newWebHooks = discord_core_api::web_hooks::getGuildWebHooksAsync(dataPackage).get();
execute_web_hook_data& dataPackage01 {newWebHooks[0]};
dataPackage01.addContent("test content");
} catch (...) {
rethrowException("test::execute()");
}
}
virtual ~test() = default;
};
}
static co_routine< message_data > executeWebHookAsync(execute_web_hook_data dataPackage)
Executes a single web_hook_data.
static co_routine< jsonifier::vector< web_hook_data > > getGuildWebHooksAsync(get_guild_web_hooks_data dataPackage)
Collects a list of web_hooks from a chosen guild.
The main namespace for the forward-facing interfaces.
Base class for the command classes.