1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
use ataraxy_macros::command_ide_arg_support;
use serenity::builder::{CreateApplicationCommandOption, CreateApplicationCommands};
use serenity::model::interactions::application_command::ApplicationCommandType;
use serenity::model::interactions::InteractionType;
use serenity::{
async_trait,
model::{gateway::Ready, id::GuildId, interactions::Interaction},
prelude::{Context as SerenityContext, *},
};
use serenity::http::CacheHttp;
use serenity::model::prelude::application_command::{
ApplicationCommand, ApplicationCommandOptionType,
};
use std::collections::HashMap;
pub mod command;
mod context;
use crate::framework::command::argument::{ArgumentList, CommandArgument, CommandArgumentValue};
pub use command::Command;
pub use context::Context;
/// Defines how slash commands should be created and/or merged with existing ones
#[derive(Clone, Debug)]
pub enum CommandMergeMethod {
/// Do not create new slash commands.
/// May result in out-of-sync slash commands which can cause issues
None,
/// Reset all slash commands of bot to match ones in cache
Set,
}
#[derive(Clone, Debug)]
pub struct Framework {
commands: HashMap<String, Vec<ValidCommand>>,
command_merging: CommandMergeMethod,
}
pub trait IntoValidCommand {
fn into_command(self) -> ValidCommand;
}
impl IntoValidCommand for Command {
fn into_command(self) -> ValidCommand {
ValidCommand::Command(self)
}
}
impl IntoValidCommand for SubCommands {
fn into_command(self) -> ValidCommand {
ValidCommand::SubCommands(self)
}
}
impl<T: Fn() -> C, C: IntoValidCommand> IntoValidCommand for T {
fn into_command(self) -> ValidCommand {
self().into_command()
}
}
impl Framework {
pub fn new() -> Self {
Self {
commands: HashMap::new(),
command_merging: CommandMergeMethod::Set,
}
}
/// Adds a command to the framework
/// see [command!] for more details
// Macro is for IDE support, since CLion freaks out without it
// What is weird is that SubCommand::command() doesn't freak aut about
// the function signature change for some reason ¯\_(ツ)_/¯
#[command_ide_arg_support]
pub fn command<T: Any>(mut self, cmd: T) -> Self {
let command = cmd.into_command();
self.commands
.entry(command.name().clone())
.or_insert_with(Vec::new)
.push(command);
self
}
pub fn set_merge_method(mut self, method: CommandMergeMethod) -> Self {
self.command_merging = method;
self
}
}
impl Default for Framework {
fn default() -> Self {
Self::new()
}
}
/// Represents a list of subcommands as a command
#[derive(Clone, Debug)]
pub struct SubCommands {
pub name: String,
pub description: String,
pub guilds: Option<Vec<u64>>,
pub subcommands: HashMap<String, SubCommand>,
}
impl SubCommands {
/// Create a new command with no subcommands
pub fn new<S: Into<String>>(name: S, description: S) -> Self {
Self {
name: name.into(),
description: description.into(),
guilds: None,
subcommands: HashMap::new(),
}
}
/// Add a subcommand to the command
pub fn command(mut self, cmd: fn() -> Command) -> Self {
let cmd = cmd();
self.subcommands
.insert(cmd.name.clone(), SubCommand::SubCommand(cmd));
self
}
/// Add a command group to the command
pub fn group(mut self, group: CommandGroup) -> Self {
self.subcommands
.insert(group.name.clone(), SubCommand::SubCommandGroup(group));
self
}
pub fn guild(mut self, guild: u64) -> Self {
match &mut self.guilds {
None => self.guilds = Some(vec![guild]),
Some(guilds) => guilds.push(guild),
}
self
}
}
#[derive(Clone, Debug)]
pub struct CommandGroup {
pub name: String,
pub description: String,
pub subcommands: HashMap<String, Command>,
}
impl CommandGroup {
/// Create a new command group
pub fn new<T: IntoIterator, S: Into<String>>(name: S, description: S, commands: T) -> Self
where
T::Item: Fn() -> Command,
{
Self {
name: name.into(),
description: description.into(),
subcommands: commands
.into_iter()
.map(|c| {
let cmd = c();
(cmd.name.clone(), cmd)
})
.collect(),
}
}
}
#[derive(Clone, Debug)]
pub enum SubCommand {
SubCommand(Command),
SubCommandGroup(CommandGroup),
}
/// Represents any kind of valid command (either simple command of command with subcommands)
#[derive(Clone, Debug)]
pub enum ValidCommand {
Command(Command),
SubCommands(SubCommands),
}
impl ValidCommand {
pub fn name(&self) -> &String {
match self {
ValidCommand::Command(cmd) => &cmd.name,
ValidCommand::SubCommands(subcmds) => &subcmds.name,
}
}
pub fn description(&self) -> &String {
match self {
ValidCommand::Command(cmd) => &cmd.description,
ValidCommand::SubCommands(subcmds) => &subcmds.description,
}
}
pub fn guilds(&self) -> &Option<Vec<u64>> {
match self {
ValidCommand::Command(c) => &c.guilds,
ValidCommand::SubCommands(sc) => &sc.guilds,
}
}
}
fn create_command(command: &ValidCommand, cmds: &mut CreateApplicationCommands) {
match command {
ValidCommand::Command(command) => {
cmds.create_application_command(|cmd| {
cmd.name(&command.name)
.description(&command.description)
.kind(ApplicationCommandType::ChatInput)
.set_options(
command
.arguments
.arguments
.iter()
.map(|opt| opt.as_serenity_option())
.collect(),
)
});
}
ValidCommand::SubCommands(subcommands) => {
cmds.create_application_command(|cmd| {
cmd.name(&subcommands.name)
.description(&subcommands.description)
.kind(ApplicationCommandType::ChatInput)
.set_options(
subcommands
.subcommands
.values()
.map(|subcommand| match subcommand {
SubCommand::SubCommand(subcmd) => {
let mut c = CreateApplicationCommandOption::default();
c.kind(ApplicationCommandOptionType::SubCommand)
.name(&subcmd.name)
.description(&subcmd.description);
for arg in &subcmd.arguments.arguments {
c.add_sub_option(arg.as_serenity_option());
}
c
}
SubCommand::SubCommandGroup(subcmdgroup) => {
let mut c = CreateApplicationCommandOption::default()
.kind(ApplicationCommandOptionType::SubCommandGroup)
.name(&subcmdgroup.name)
.description(&subcmdgroup.description)
.clone();
for subcmd in subcmdgroup.subcommands.values() {
c.create_sub_option(|c| {
c.kind(ApplicationCommandOptionType::SubCommand)
.name(&subcmd.name)
.description(&subcmd.description);
for arg in &subcmd.arguments.arguments {
c.add_sub_option(arg.as_serenity_option());
}
c
});
}
c
}
})
.collect(),
)
});
}
}
}
#[async_trait]
impl EventHandler for Framework {
async fn ready(&self, ctx: SerenityContext, _ready: Ready) {
match self.command_merging {
CommandMergeMethod::None => (),
CommandMergeMethod::Set => {
let global_commands: Vec<&ValidCommand> = self
.commands
.values()
.flatten()
.filter(|c| c.guilds().is_none())
.collect();
let mut guild_commands: HashMap<u64, Vec<ValidCommand>> = HashMap::new();
for c in self.commands.values().flatten() {
if let Some(guilds) = c.guilds() {
for guild in guilds {
guild_commands
.entry(*guild)
.or_insert_with(Vec::new)
.push(c.clone());
}
}
}
ApplicationCommand::set_global_application_commands(&ctx.http(), |c| {
for cmd in global_commands {
create_command(cmd, c);
}
c
})
.await
.unwrap();
for (guild, commands) in guild_commands {
let guild = GuildId(guild);
guild
.set_application_commands(&ctx.http(), |c| {
for cmd in commands {
create_command(&cmd, c);
}
c
})
.await
.unwrap();
}
}
}
}
async fn interaction_create(&self, ctx: SerenityContext, interaction: Interaction) {
match interaction.kind() {
InteractionType::ApplicationCommand => {
let interaction_command = interaction.application_command().unwrap();
let name = &interaction_command.data.name;
if let Some(commands) = self.commands.get(&*name) {
let mut command = None;
let possible_commands: Vec<&ValidCommand> = commands
.iter()
.filter(|c| match c.guilds() {
Some(guilds) => {
if let Some(guild) = &interaction_command.guild_id {
guilds.contains(&guild.0)
} else {
false
}
}
None => interaction_command.guild_id.is_none(),
})
.collect();
if possible_commands.len() == 1 {
command = possible_commands.get(0).map(|c| *c)
} else if possible_commands.len() == 0 {
command = commands.iter().filter(|c| c.guilds().is_none()).next()
}
match command.expect("Error finding command.") {
ValidCommand::Command(command) => {
let context = Context::new(&ctx, &interaction_command);
let options = interaction_command.data.options;
let args: Result<Vec<CommandArgument>, _> = options
.iter()
.map(|opt| {
let value = match &opt.resolved {
Some(arg) => match CommandArgumentValue::from_resolved(arg)
{
Ok(v) => Some(v),
Err(e) => return Err(e),
},
None => None,
};
Ok(CommandArgument {
name: opt.name.clone(),
value,
})
})
.collect();
if args.is_err() {
return;
}
command.action.0(context, &ArgumentList::new(args.unwrap())).await;
}
ValidCommand::SubCommands(subcmds) => {
let options = &interaction_command.data.options;
if let Some(sub_cmd_opt) = options.get(0) {
if let Some(called_sub_cmd) =
subcmds.subcommands.get(&*sub_cmd_opt.name)
{
match called_sub_cmd {
SubCommand::SubCommand(subcmd) => {
let context = Context::new(&ctx, &interaction_command);
let new_options = sub_cmd_opt.options.clone();
let args: Result<Vec<CommandArgument>, _> = new_options
.iter()
.map(|opt| {
let value = match &opt.resolved {
Some(arg) => match CommandArgumentValue::from_resolved(arg)
{
Ok(v) => Some(v),
Err(e) => return Err(e),
},
None => None,
};
Ok(CommandArgument {
name: opt.name.clone(),
value,
})
})
.collect();
if args.is_err() {
return;
}
subcmd.action.0(
context,
&ArgumentList::new(args.unwrap()),
)
.await;
}
SubCommand::SubCommandGroup(subcmdgroup) => {
if let Some(sub_cmd_opt) = sub_cmd_opt.options.get(0) {
if let Some(subcmd) =
subcmdgroup.subcommands.get(&*sub_cmd_opt.name)
{
let context =
Context::new(&ctx, &interaction_command);
let new_options = sub_cmd_opt.options.clone();
let args: Result<Vec<CommandArgument>, _> = new_options
.iter()
.map(|opt| {
let value = match &opt.resolved {
Some(arg) => match CommandArgumentValue::from_resolved(arg)
{
Ok(v) => Some(v),
Err(e) => return Err(e),
},
None => None,
};
Ok(CommandArgument {
name: opt.name.clone(),
value,
})
})
.collect();
if args.is_err() {
return;
}
subcmd.action.0(
context,
&ArgumentList::new(args.unwrap()),
)
.await;
}
}
}
}
}
}
}
}
}
return;
}
_ => return,
}
}
}