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
use std::collections::HashMap;
use serde_json::{json, Value};
use super::{CreateAllowedMentions, CreateEmbed};
use crate::builder::CreateComponents;
use crate::{
model::interactions::{
InteractionApplicationCommandCallbackDataFlags,
InteractionResponseType,
},
utils,
};
#[derive(Clone, Debug)]
pub struct CreateInteractionResponse(pub HashMap<&'static str, Value>);
impl CreateInteractionResponse {
pub fn kind(&mut self, kind: InteractionResponseType) -> &mut Self {
self.0.insert("type", Value::Number(serde_json::Number::from(kind as u8)));
self
}
pub fn interaction_response_data<F>(&mut self, f: F) -> &mut Self
where
F: FnOnce(&mut CreateInteractionResponseData) -> &mut CreateInteractionResponseData,
{
let mut data = CreateInteractionResponseData::default();
f(&mut data);
let map = utils::hashmap_to_json_map(data.0);
let data = Value::Object(map);
self.0.insert("data", data);
self
}
}
impl<'a> Default for CreateInteractionResponse {
fn default() -> CreateInteractionResponse {
let mut map = HashMap::new();
map.insert("type", Value::Number(serde_json::Number::from(4)));
CreateInteractionResponse(map)
}
}
#[derive(Clone, Debug, Default)]
pub struct CreateInteractionResponseData(pub HashMap<&'static str, Value>);
impl CreateInteractionResponseData {
pub fn tts(&mut self, tts: bool) -> &mut Self {
self.0.insert("tts", Value::Bool(tts));
self
}
#[inline]
pub fn content<D: ToString>(&mut self, content: D) -> &mut Self {
self._content(content.to_string())
}
fn _content(&mut self, content: String) -> &mut Self {
self.0.insert("content", Value::String(content));
self
}
pub fn create_embed<F>(&mut self, f: F) -> &mut Self
where
F: FnOnce(&mut CreateEmbed) -> &mut CreateEmbed,
{
let mut embed = CreateEmbed::default();
f(&mut embed);
self.add_embed(embed)
}
pub fn add_embed(&mut self, embed: CreateEmbed) -> &mut Self {
let map = utils::hashmap_to_json_map(embed.0);
let embed = Value::Object(map);
let embeds = self.0.entry("embeds").or_insert_with(|| Value::Array(vec![]));
if let Some(embeds) = embeds.as_array_mut() {
embeds.push(embed);
}
self
}
pub fn embeds(&mut self, embeds: impl IntoIterator<Item = CreateEmbed>) -> &mut Self {
let embeds =
embeds.into_iter().map(|embed| utils::hashmap_to_json_map(embed.0).into()).collect();
self.0.insert("embeds", Value::Array(embeds));
self
}
pub fn allowed_mentions<F>(&mut self, f: F) -> &mut Self
where
F: FnOnce(&mut CreateAllowedMentions) -> &mut CreateAllowedMentions,
{
let mut allowed_mentions = CreateAllowedMentions::default();
f(&mut allowed_mentions);
let map = utils::hashmap_to_json_map(allowed_mentions.0);
let allowed_mentions = Value::Object(map);
self.0.insert("allowed_mentions", allowed_mentions);
self
}
pub fn flags(&mut self, flags: InteractionApplicationCommandCallbackDataFlags) -> &mut Self {
self.0.insert("flags", Value::Number(serde_json::Number::from(flags.bits())));
self
}
pub fn components<F>(&mut self, f: F) -> &mut Self
where
F: FnOnce(&mut CreateComponents) -> &mut CreateComponents,
{
let mut components = CreateComponents::default();
f(&mut components);
self.0.insert("components", Value::Array(components.0));
self
}
pub fn set_components(&mut self, components: CreateComponents) -> &mut Self {
self.0.insert("components", Value::Array(components.0));
self
}
}
#[derive(Clone, Debug)]
pub struct CreateAutocompleteResponse(pub HashMap<&'static str, Value>);
impl<'a> Default for CreateAutocompleteResponse {
fn default() -> CreateAutocompleteResponse {
let mut map = HashMap::new();
map.insert("choices", Value::Array(vec![]));
CreateAutocompleteResponse(map)
}
}
impl CreateAutocompleteResponse {
pub fn set_choices(&mut self, choices: Value) -> &mut Self {
self.0.insert("choices", choices);
self
}
pub fn add_int_choice<D: ToString>(&mut self, name: D, value: i64) -> &mut Self {
let choice = json!({
"name": name.to_string(),
"value" : value
});
self.add_choice(choice)
}
pub fn add_string_choice<D: ToString, E: ToString>(&mut self, name: D, value: E) -> &mut Self {
let choice = json!({
"name": name.to_string(),
"value": value.to_string()
});
self.add_choice(choice)
}
pub fn add_number_choice<D: ToString>(&mut self, name: D, value: f64) -> &mut Self {
let choice = json!({
"name": name.to_string(),
"value" : value
});
self.add_choice(choice)
}
fn add_choice(&mut self, value: Value) -> &mut Self {
let choices = self.0.entry("choices").or_insert_with(|| Value::Array(vec![]));
let choices_arr = choices.as_array_mut().expect("Must be an array");
choices_arr.push(value);
self
}
}