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
use twilight_model::{
application::{
command::{
BaseCommandOptionData, ChannelCommandOptionData, ChoiceCommandOptionData,
CommandOption, CommandOptionChoice, Number, OptionsCommandOptionData,
},
interaction::application_command::InteractionChannel,
},
channel::ChannelType,
guild::Role,
id::{ChannelId, GenericId, RoleId, UserId},
user::User,
};
#[cfg(feature = "http")]
use twilight_http::{request::application::InteractionError, response::ResponseFuture, Client};
#[cfg(feature = "http")]
use twilight_model::{application::command::Command, id::GuildId};
use super::ResolvedUser;
pub trait CreateCommand: Sized {
fn create_command() -> ApplicationCommandData;
}
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct ApplicationCommandData {
pub name: String,
pub description: String,
pub options: Vec<CommandOption>,
pub default_permission: bool,
}
impl ApplicationCommandData {
#[cfg(feature = "http")]
#[cfg_attr(docsrs, doc(cfg(feature = "http")))]
pub fn create_global_command(
&self,
client: &Client,
) -> Result<ResponseFuture<Command>, InteractionError> {
Ok(client
.create_global_command(&self.name)?
.chat_input(&self.description)?
.default_permission(self.default_permission)
.command_options(&self.options)?
.exec())
}
#[cfg(feature = "http")]
#[cfg_attr(docsrs, doc(cfg(feature = "http")))]
pub fn create_guild_command(
&self,
client: &Client,
guild_id: GuildId,
) -> Result<ResponseFuture<Command>, InteractionError> {
Ok(client
.create_guild_command(guild_id, &self.name)?
.chat_input(&self.description)?
.default_permission(self.default_permission)
.command_options(&self.options)?
.exec())
}
}
pub trait CreateOption: Sized {
fn create_option(data: CommandOptionData) -> CommandOption;
}
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct CommandOptionData {
pub name: String,
pub description: String,
pub required: bool,
pub channel_types: Vec<ChannelType>,
}
impl CommandOptionData {
pub fn into_data(self) -> BaseCommandOptionData {
BaseCommandOptionData {
description: self.description,
name: self.name,
required: self.required,
}
}
pub fn into_channel(self) -> ChannelCommandOptionData {
ChannelCommandOptionData {
channel_types: self.channel_types,
description: self.description,
name: self.name,
required: self.required,
}
}
pub fn into_choice(self, choices: Vec<CommandOptionChoice>) -> ChoiceCommandOptionData {
ChoiceCommandOptionData {
choices,
description: self.description,
name: self.name,
required: self.required,
}
}
pub fn into_options(self, options: Vec<CommandOption>) -> OptionsCommandOptionData {
OptionsCommandOptionData {
description: self.description,
name: self.name,
options,
}
}
}
impl CreateOption for String {
fn create_option(data: CommandOptionData) -> CommandOption {
CommandOption::String(data.into_choice(Vec::new()))
}
}
impl CreateOption for i64 {
fn create_option(data: CommandOptionData) -> CommandOption {
CommandOption::Integer(data.into_choice(Vec::new()))
}
}
impl CreateOption for Number {
fn create_option(data: CommandOptionData) -> CommandOption {
CommandOption::Number(data.into_choice(Vec::new()))
}
}
impl CreateOption for f64 {
fn create_option(data: CommandOptionData) -> CommandOption {
CommandOption::Number(data.into_choice(Vec::new()))
}
}
impl CreateOption for bool {
fn create_option(data: CommandOptionData) -> CommandOption {
CommandOption::Boolean(data.into_data())
}
}
impl CreateOption for UserId {
fn create_option(data: CommandOptionData) -> CommandOption {
CommandOption::User(data.into_data())
}
}
impl CreateOption for ChannelId {
fn create_option(data: CommandOptionData) -> CommandOption {
CommandOption::Channel(data.into_channel())
}
}
impl CreateOption for RoleId {
fn create_option(data: CommandOptionData) -> CommandOption {
CommandOption::Role(data.into_data())
}
}
impl CreateOption for GenericId {
fn create_option(data: CommandOptionData) -> CommandOption {
CommandOption::Mentionable(data.into_data())
}
}
impl CreateOption for User {
fn create_option(data: CommandOptionData) -> CommandOption {
CommandOption::User(data.into_data())
}
}
impl CreateOption for ResolvedUser {
fn create_option(data: CommandOptionData) -> CommandOption {
CommandOption::User(data.into_data())
}
}
impl CreateOption for InteractionChannel {
fn create_option(data: CommandOptionData) -> CommandOption {
CommandOption::Channel(data.into_channel())
}
}
impl CreateOption for Role {
fn create_option(data: CommandOptionData) -> CommandOption {
CommandOption::Role(data.into_data())
}
}