DiscordCoreAPI
A Discord bot library written in C++, with custom asynchronous coroutines.
Loading...
Searching...
No Matches
Modifying a Channel

/// 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 {
channel channel = discord_core_api::channels::getCachedChannel({.channelId = args.eventData.getChannelId()}).get();
modify_channel_data dataPackage {channel};
dataPackage.channelData.name = "test update";
channel channelNew = discord_core_api::channels::modifyChannelAsync(dataPackage).get();
} catch (...) {
rethrowException("test::execute() error: ");
}
}
};
}
static channel_cache_data getCachedChannel(get_channel_data dataPackage)
Collects a channel from the library's cache.
static co_routine< channel_data > modifyChannelAsync(modify_channel_data dataPackage)
Modifies a channel's properties.
The main namespace for the forward-facing interfaces.
Base class for the command classes.