#include <stdio.h>
#include <stdlib.h>
#include <inttypes.h>
#include <assert.h>
void
print_usage(void)
{
printf(
"\n\nThis bot demonstrates how easy it is to have a"
" message be pinned.\n"
"1. Reply to a message with '!pin' or type '!pin <message_id> to pin "
"it\n"
"2. Reply to a message with '!unpin' or type '!unpin <message_id> to "
"unpin it\n"
"3. Type '!get_pins' to get a id list of pinned messages\n"
"\nTYPE ANY KEY TO START BOT\n");
}
void
on_ready(
struct discord *client,
const struct discord_ready *event)
{
"Pin-Bot succesfully connected to Discord as %s#%s!",
event->user->username, event->user->discriminator);
}
void
on_pin(
struct discord *client,
const struct discord_message *event)
{
if (event->author->bot) return;
sscanf(event->content, "%" SCNu64, &msg_id);
if (!msg_id) {
if (!event->referenced_message) return;
msg_id = event->referenced_message->id;
}
}
void
on_unpin(
struct discord *client,
const struct discord_message *event)
{
if (event->author->bot) return;
sscanf(event->content, "%" SCNu64, &msg_id);
if (!msg_id) {
if (!event->referenced_message) return;
msg_id = event->referenced_message->id;
}
}
void
done_get_pins(
struct discord *client,
const struct discord_messages *msgs)
{
const struct discord_message *
event = resp->
keep;
char text[2000] = "No pins on channel";
char *cur = text;
char *end = &text[sizeof(text) - 1];
for (int i = 0; i < msgs->size; ++i) {
cur += snprintf(cur, end - cur,
"https://discord.com/channels/%" PRIu64 "/%" PRIu64
"/%" PRIu64 "\n",
event->guild_id, event->channel_id, msgs->array[i].id);
if (cur >= end) break;
}
}
void
{
const struct discord_message *
event = resp->
keep;
char text[2000] = "";
snprintf(text, sizeof(text),
"Failed fetching pinned messages at <#%" PRIu64 ">",
event->channel_id);
}
void
on_get_pins(
struct discord *client,
const struct discord_message *event)
{
if (event->author->bot) return;
.fail = &fail_get_pins,
.keep = event,
};
}
int
main(int argc, char *argv[])
{
const char *config_file;
if (argc > 1)
config_file = argv[1];
else
config_file = "../config.json";
assert(NULL != client && "Couldn't initialize client");
print_usage();
fgetc(stdin);
}
Public functions and datatypes.
uint64_t u64snowflake
Snowflake datatype.
Definition: types.h:28
CCORDcode discord_create_message(struct discord *client, u64snowflake channel_id, struct discord_create_message *params, struct discord_ret_message *ret)
Post a message to a guild text or DM channel.
CCORDcode discord_pin_message(struct discord *client, u64snowflake channel_id, u64snowflake message_id, struct discord_pin_message *params, struct discord_ret *ret)
Pin a message to a channel.
CCORDcode discord_get_pinned_messages(struct discord *client, u64snowflake channel_id, struct discord_ret_messages *ret)
Get all pinned messages in the channel.
CCORDcode discord_unpin_message(struct discord *client, u64snowflake channel_id, u64snowflake message_id, struct discord_unpin_message *params, struct discord_ret *ret)
Unpin a message from a channel.
void discord_cleanup(struct discord *client)
Free a Discord Client handle.
CCORDcode discord_run(struct discord *client)
Start a connection to the Discord Gateway.
struct discord * discord_from_json(const char config_file[])
Creates a Discord Client handle from a config.json file.
void discord_set_prefix(struct discord *client, const char prefix[])
Set a mandatory prefix before commands.
void discord_set_on_ready(struct discord *client, void(*callback)(struct discord *client, const struct discord_ready *event))
Triggers when the client session is ready.
void discord_set_on_command(struct discord *client, const char *command, void(*callback)(struct discord *client, const struct discord_message *event))
Set command/callback pair.
#define logmod_log
Alias to logmod_nlog for C89 compatibility.
Definition: logmod.h:487
The response for the completed request.
Definition: discord-response.h:12
const void * keep
Definition: discord-response.h:16
Request's return context.
Definition: discord-response.h:92
void(* done)(struct discord *client, struct discord_response *resp, const struct discord_messages *ret)
Definition: discord-response.h:92
The Discord client handler.
Definition: discord-internal.h:1206