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
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
//! A library for creating/parsing [`serenity`] slash commands.
//!
//! # Examples
//!
//! ```rust
//! use serenity::all::{
//!     async_trait, Client, Context, CreateInteractionResponse, CreateInteractionResponseMessage,
//!     EventHandler, GatewayIntents, GuildId, Interaction,
//! };
//! use serenity_commands::{Command, Commands, SubCommand};
//!
//! #[derive(Debug, Commands)]
//! enum AllCommands {
//!     /// Ping the bot.
//!     Ping,
//!
//!     /// Echo a message.
//!     Echo {
//!         /// The message to echo.
//!         message: String,
//!     },
//!
//!     /// Perform math operations.
//!     Math(MathCommand),
//! }
//!
//! impl AllCommands {
//!     fn run(self) -> String {
//!         match self {
//!             Self::Ping => "Pong!".to_string(),
//!             Self::Echo { message } => message,
//!             Self::Math(math) => math.run().to_string(),
//!         }
//!     }
//! }
//!
//! #[derive(Debug, Command)]
//! enum MathCommand {
//!     /// Add two numbers.
//!     Add(BinaryOperation),
//!
//!     /// Subtract two numbers.
//!     Subtract(BinaryOperation),
//!
//!     /// Multiply two numbers.
//!     Multiply(BinaryOperation),
//!
//!     /// Divide two numbers.
//!     Divide(BinaryOperation),
//!
//!     /// Negate a number.
//!     Negate {
//!         /// The number to negate.
//!         a: f64,
//!     },
//! }
//!
//! impl MathCommand {
//!     fn run(self) -> f64 {
//!         match self {
//!             Self::Add(BinaryOperation { a, b }) => a + b,
//!             Self::Subtract(BinaryOperation { a, b }) => a - b,
//!             Self::Multiply(BinaryOperation { a, b }) => a * b,
//!             Self::Divide(BinaryOperation { a, b }) => a / b,
//!             Self::Negate { a } => -a,
//!         }
//!     }
//! }
//!
//! #[derive(Debug, SubCommand)]
//! struct BinaryOperation {
//!     /// The first number.
//!     a: f64,
//!
//!     /// The second number.
//!     b: f64,
//! }
//!
//! struct Handler {
//!     guild_id: GuildId,
//! }
//!
//! #[async_trait]
//! impl EventHandler for Handler {
//!     async fn ready(&self, ctx: Context, _: serenity::all::Ready) {
//!         self.guild_id
//!             .set_commands(&ctx, AllCommands::create_commands())
//!             .await
//!             .unwrap();
//!     }
//!
//!     async fn interaction_create(&self, ctx: Context, interaction: Interaction) {
//!         if let Interaction::Command(command) = interaction {
//!             let command_data = AllCommands::from_command_data(&command.data).unwrap();
//!             command
//!                 .create_response(
//!                     ctx,
//!                     CreateInteractionResponse::Message(
//!                         CreateInteractionResponseMessage::new().content(command_data.run()),
//!                     ),
//!                 )
//!                 .await
//!                 .unwrap();
//!         }
//!     }
//! }
//! ```

use serenity::all::{
    AttachmentId, ChannelId, CommandData, CommandDataOption, CommandDataOptionValue,
    CommandOptionType, CreateCommand, CreateCommandOption, GenericId, RoleId, UserId,
};
/// Derives [`BasicOption`].
///
/// `option_type` can be `"string"`, `"integer"`, or `"number"`.
///
/// # Examples
///
/// ```rust
/// use serenity_commands::BasicOption;
///
/// #[derive(Debug, BasicOption)]
/// #[choice(option_type = "integer")]
/// enum Medal {
///     #[choice(name = "Gold", value = 1)]
///     Gold,
///
///     #[choice(name = "Silver", value = 2)]
///     Silver,
///
///     #[choice(name = "Bronze", value = 3)]
///     Bronze,
/// }
/// ```
pub use serenity_commands_macros::BasicOption;
/// Derives [`Command`].
///
/// # Examples
///
/// ## Struct
///
/// Each field must implement [`BasicOption`].
///
/// ```rust
/// use serenity_commands::Command;
///
/// #[derive(Command)]
/// struct Add {
///     /// First number.
///     a: f64,
///
///     /// Second number.
///     b: f64,
/// }
/// ```
///
/// ## Enum
///
/// Each field of named variants must implement [`BasicOption`].
///
/// The inner type of newtype variants must implement [`SubCommandGroup`] (or,
/// by extension, [`SubCommand`], as [`SubCommand`] is a sub-trait of
/// [`SubCommandGroup`]).
///
/// ```rust
/// use serenity_commands::{Command, SubCommandGroup};
///
/// #[derive(SubCommandGroup)]
/// enum ModUtilities {
///     // ...
/// }
///
/// #[derive(Command)]
/// enum Utilities {
///     /// Ping the bot.
///     Ping,
///
///     /// Add two numbers.
///     Add {
///         /// First number.
///         a: f64,
///
///         /// Second number.
///         b: f64,
///     },
///
///     /// Moderation utilities.
///     Mod(ModUtilities),
/// }
pub use serenity_commands_macros::Command;
/// Derives [`Commands`].
///
/// # Examples
///
/// Each field of named variants must implement [`Command`].
///
/// The inner type of newtype variants must implement [`Command`].
///
/// ```rust
/// use serenity_commands::{Command, Commands};
///
/// #[derive(Command)]
/// enum MathCommand {
///     // ...
/// }
///
/// #[derive(Commands)]
/// enum AllCommands {
///     /// Ping the bot.
///     Ping,
///
///     /// Echo a message.
///     Echo {
///         /// The message to echo.
///         message: String,
///     },
///
///     /// Do math operations.
///     Math(MathCommand),
/// }
pub use serenity_commands_macros::Commands;
/// Derives [`SubCommand`].
///
/// Each field must implement [`BasicOption`].
///
/// # Examples
///
/// ```rust
/// use serenity_commands::SubCommand;
///
/// #[derive(SubCommand)]
/// struct Add {
///     /// First number.
///     a: f64,
///
///     /// Second number.
///     b: f64,
/// }
/// ```
pub use serenity_commands_macros::SubCommand;
/// Derives [`SubCommandGroup`].
///
/// Each field of named variants must implement [`BasicOption`].
///
/// The inner type of newtype variants must implement [`SubCommand`].
///
/// # Examples
///
/// ```rust
/// use serenity_commands::{SubCommand, SubCommandGroup};
///
/// #[derive(SubCommand)]
/// struct AddSubCommand {
///     /// First number.
///     a: f64,
///
///     /// Second number.
///     b: f64,
/// }
///
/// #[derive(SubCommandGroup)]
/// enum Math {
///     /// Add two numbers.
///     Add(AddSubCommand),
///
///     /// Negate a number.
///     Negate {
///         /// The number to negate.
///         a: f64,
///     },
/// }
pub use serenity_commands_macros::SubCommandGroup;
use thiserror::Error;

/// A type alias for [`std::result::Result`]s which use [`Error`] as the error
/// type.
///
/// [`Error`]: enum@Error
pub type Result<T> = std::result::Result<T, Error>;

/// An error which can occur when extracting data from a command interaction.
#[derive(Debug, Error)]
pub enum Error {
    /// An unknown command was provided.
    #[error("unknown command: {0}")]
    UnknownCommand(String),

    /// An incorrect command option type was provided.
    #[error("incorrect command option type: got {got:?}, expected {expected:?}")]
    IncorrectCommandOptionType {
        /// The type of command option that was provided.
        got: CommandOptionType,

        /// The type of command option that was expected.
        expected: CommandOptionType,
    },

    /// An incorrect number of command options were provided.
    #[error("incorrect command option count: got {got}, expected {expected}")]
    IncorrectCommandOptionCount {
        /// The number of command options that were provided.
        got: usize,

        /// The number of command options that were expected.
        expected: usize,
    },

    /// An unknown command option was provided.
    #[error("unknown command option: {0}")]
    UnknownCommandOption(String),

    /// A required command option was not provided.
    #[error("required command option not provided")]
    MissingRequiredCommandOption,

    /// An unknown choice was provided.
    #[error("unknown choice: {0}")]
    UnknownChoice(String),

    /// An error occurred within a custom implementation.
    #[error(transparent)]
    Custom(#[from] Box<dyn std::error::Error + Send + Sync>),
}

/// A utility for creating commands and extracting their data from application
/// commands.
pub trait Commands: Sized {
    /// List of top-level commands.
    fn create_commands() -> Vec<CreateCommand>;

    /// Extract data from [`CommandData`].
    ///
    /// # Errors
    ///
    /// Returns an error if the implementation fails.
    fn from_command_data(data: &CommandData) -> Result<Self>;
}

/// A top-level command for use with [`Commands`].
pub trait Command: Sized {
    /// Create the command.
    fn create_command(name: impl Into<String>, description: impl Into<String>) -> CreateCommand;

    /// Extract data from a list of [`CommandDataOption`]s.
    ///
    /// # Errors
    ///
    /// Returns an error if the implementation fails.
    fn from_options(options: &[CommandDataOption]) -> Result<Self>;
}

/// A sub-command group which can be nested inside of a [`Command`] and contains
/// [`SubCommand`]s.
pub trait SubCommandGroup: Sized {
    /// Create the command option.
    fn create_option(
        name: impl Into<String>,
        description: impl Into<String>,
    ) -> CreateCommandOption;

    /// Extract data from a [`CommandDataOptionValue`].
    ///
    /// # Errors
    ///
    /// Returns an error if the implementation fails.
    fn from_value(value: &CommandDataOptionValue) -> Result<Self>;
}

/// A sub-command which can be nested inside of a [`Command`] or
/// [`SubCommandGroup`].
///
/// This is a sub-trait of [`SubCommandGroup`], as a [`SubCommand`] can be used
/// anywhere a [`SubCommandGroup`] can.
pub trait SubCommand: SubCommandGroup {
    /// Create the command option.
    fn create_option(
        name: impl Into<String>,
        description: impl Into<String>,
    ) -> CreateCommandOption {
        <Self as SubCommandGroup>::create_option(name, description)
    }

    /// Extract data from a [`CommandDataOption`].
    ///
    /// # Errors
    ///
    /// Returns an error if the implementation fails.
    fn from_value(value: &CommandDataOptionValue) -> Result<Self> {
        <Self as SubCommandGroup>::from_value(value)
    }
}

/// A basic option which can be nested inside of [`Command`]s or
/// [`SubCommand`]s.
///
/// This trait is implemented already for most primitive types.
pub trait BasicOption: Sized {
    /// Create the command option.
    fn create_option(
        name: impl Into<String>,
        description: impl Into<String>,
    ) -> CreateCommandOption;

    /// Extract data from a [`CommandDataOptionValue`].
    ///
    /// # Errors
    ///
    /// Returns an error if the implementation fails.
    fn from_value(value: Option<&CommandDataOptionValue>) -> Result<Self>;
}

macro_rules! impl_command_option {
    ($($Variant:ident($($Ty:ty),* $(,)?)),* $(,)?) => {
        $($(
            impl BasicOption for $Ty {
                fn create_option(name: impl Into<String>, description: impl Into<String>) -> CreateCommandOption {
                    CreateCommandOption::new(CommandOptionType::$Variant, name, description)
                        .required(true)
                }

                fn from_value(value: Option<&CommandDataOptionValue>) -> Result<Self> {
                    let value = value.ok_or(Error::MissingRequiredCommandOption)?;

                    match value {
                        CommandDataOptionValue::$Variant(v) => Ok(v.clone() as _),
                        _ => Err(Error::IncorrectCommandOptionType {
                            got: value.kind(),
                            expected: CommandOptionType::$Variant,
                        }),
                    }
                }
            }
        )*)*
    };
}

impl_command_option! {
    Boolean(bool),
    String(String),
    Attachment(AttachmentId),
    Channel(ChannelId),
    Mentionable(GenericId),
    Role(RoleId),
    User(UserId),
}

macro_rules! impl_number_command_option {
    ($($Ty:ty),* $(,)?) => {
        $(
            impl BasicOption for $Ty {
                fn create_option(name: impl Into<String>, description: impl Into<String>) -> CreateCommandOption {
                    CreateCommandOption::new(CommandOptionType::Number, name, description)
                        .required(true)
                }

                fn from_value(value: Option<&CommandDataOptionValue>) -> Result<Self> {
                    let value = value.ok_or(Error::MissingRequiredCommandOption)?;

                    match value {
                        CommandDataOptionValue::Number(v) => Ok(*v as _),
                        _ => Err(Error::IncorrectCommandOptionType {
                            got: value.kind(),
                            expected: CommandOptionType::Number,
                        }),
                    }
                }
            }

        )*
    };
}

impl_number_command_option!(f32, f64);

macro_rules! impl_integer_command_option {
    ($($Ty:ty),* $(,)?) => {
        $(
            impl BasicOption for $Ty {
                fn create_option(name: impl Into<String>, description: impl Into<String>) -> CreateCommandOption {
                    CreateCommandOption::new(CommandOptionType::Integer, name, description)
                        .required(true)
                }

                fn from_value(value: Option<&CommandDataOptionValue>) -> Result<Self> {
                    let value = value.ok_or(Error::MissingRequiredCommandOption)?;

                    match value {
                        CommandDataOptionValue::Integer(v) => Ok(*v as _),
                        _ => Err(Error::IncorrectCommandOptionType {
                            got: value.kind(),
                            expected: CommandOptionType::Integer,
                        }),
                    }
                }
            }
        )*
    };
}

impl_integer_command_option!(u8, u16, u32, u64, u128, usize, i8, i16, i32, i64, i128, isize);

impl<T: BasicOption> BasicOption for Option<T> {
    /// Delegates to `T`'s [`BasicOption::create_option`] implementation, but
    /// sets [`CreateCommandOption::required`] to `false` afterwards.
    fn create_option(
        name: impl Into<String>,
        description: impl Into<String>,
    ) -> CreateCommandOption {
        T::create_option(name, description).required(false)
    }

    /// Only delegates to `T`'s [`BasicOption::from_value`] implementation if
    /// `value` is [`Some`].
    fn from_value(value: Option<&CommandDataOptionValue>) -> Result<Self> {
        value.map(|option| T::from_value(Some(option))).transpose()
    }
}