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
use std::collections::HashMap;
use serde_json::Value;
use super::{CreateAllowedMentions, CreateEmbed};
use crate::builder::CreateComponents;
use crate::utils;
#[derive(Clone, Debug, Default)]
pub struct EditInteractionResponse(pub HashMap<&'static str, Value>);
impl EditInteractionResponse {
#[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 set_embeds(&mut self, embeds: Vec<CreateEmbed>) -> &mut Self {
if self.0.contains_key("embeds") {
self.0.remove_entry("embeds");
}
for embed in embeds {
self.add_embed(embed);
}
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
}
#[cfg(feature = "unstable_discord_api")]
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
}
}