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
use super::super::CommandBorrowed;
use crate::{
client::Client,
error::Error,
request::{Request, RequestBuilder, TryIntoRequest},
response::{Response, ResponseFuture},
routing::Route,
};
use std::{collections::HashMap, future::IntoFuture};
use twilight_model::{
application::command::{Command, CommandOption, CommandType},
guild::Permissions,
id::{marker::ApplicationMarker, Id},
};
use twilight_validate::command::{
chat_input_name as validate_chat_input_name, description as validate_description,
options as validate_options, CommandValidationError,
};
#[must_use = "requests must be configured and executed"]
pub struct CreateGlobalChatInputCommand<'a> {
application_id: Id<ApplicationMarker>,
default_member_permissions: Option<Permissions>,
dm_permission: Option<bool>,
description: &'a str,
description_localizations: Option<&'a HashMap<String, String>>,
http: &'a Client,
name: &'a str,
name_localizations: Option<&'a HashMap<String, String>>,
nsfw: Option<bool>,
options: Option<&'a [CommandOption]>,
}
impl<'a> CreateGlobalChatInputCommand<'a> {
pub(crate) fn new(
http: &'a Client,
application_id: Id<ApplicationMarker>,
name: &'a str,
description: &'a str,
) -> Result<Self, CommandValidationError> {
validate_description(description)?;
validate_chat_input_name(name)?;
Ok(Self {
application_id,
default_member_permissions: None,
dm_permission: None,
description,
description_localizations: None,
http,
name,
name_localizations: None,
nsfw: None,
options: None,
})
}
pub fn command_options(
mut self,
options: &'a [CommandOption],
) -> Result<Self, CommandValidationError> {
validate_options(options)?;
self.options = Some(options);
Ok(self)
}
pub const fn default_member_permissions(mut self, default: Permissions) -> Self {
self.default_member_permissions = Some(default);
self
}
pub const fn dm_permission(mut self, dm_permission: bool) -> Self {
self.dm_permission = Some(dm_permission);
self
}
pub fn description_localizations(
mut self,
localizations: &'a HashMap<String, String>,
) -> Result<Self, CommandValidationError> {
for description in localizations.values() {
validate_description(description)?;
}
self.description_localizations = Some(localizations);
Ok(self)
}
pub fn name_localizations(
mut self,
localizations: &'a HashMap<String, String>,
) -> Result<Self, CommandValidationError> {
for name in localizations.values() {
validate_chat_input_name(name)?;
}
self.name_localizations = Some(localizations);
Ok(self)
}
pub const fn nsfw(mut self, nsfw: bool) -> Self {
self.nsfw = Some(nsfw);
self
}
#[deprecated(since = "0.14.0", note = "use `.await` or `into_future` instead")]
pub fn exec(self) -> ResponseFuture<Command> {
self.into_future()
}
}
impl IntoFuture for CreateGlobalChatInputCommand<'_> {
type Output = Result<Response<Command>, Error>;
type IntoFuture = ResponseFuture<Command>;
fn into_future(self) -> Self::IntoFuture {
let http = self.http;
match self.try_into_request() {
Ok(request) => http.request(request),
Err(source) => ResponseFuture::error(source),
}
}
}
impl TryIntoRequest for CreateGlobalChatInputCommand<'_> {
fn try_into_request(self) -> Result<Request, Error> {
Request::builder(&Route::CreateGlobalCommand {
application_id: self.application_id.get(),
})
.json(&CommandBorrowed {
application_id: Some(self.application_id),
default_member_permissions: self.default_member_permissions,
dm_permission: self.dm_permission,
description: Some(self.description),
description_localizations: self.description_localizations,
kind: CommandType::ChatInput,
name: self.name,
name_localizations: self.name_localizations,
nsfw: self.nsfw,
options: self.options,
})
.map(RequestBuilder::build)
}
}