use std::collections::HashMap;
#[cfg(not(feature = "model"))]
use std::marker::PhantomData;
use super::{CreateAllowedMentions, CreateEmbed};
use crate::builder::CreateComponents;
use crate::json;
use crate::json::prelude::*;
use crate::model::application::interaction::MessageFlags;
#[cfg(feature = "model")]
use crate::model::channel::AttachmentType;
#[derive(Clone, Debug, Default)]
pub struct CreateInteractionResponseFollowup<'a>(
pub HashMap<&'static str, Value>,
#[cfg(feature = "model")] pub Vec<AttachmentType<'a>>,
#[cfg(not(feature = "model"))] PhantomData<&'a ()>,
);
impl<'a> CreateInteractionResponseFollowup<'a> {
#[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::from(content));
self
}
#[inline]
pub fn username<D: ToString>(&mut self, username: D) -> &mut Self {
self._username(username.to_string())
}
fn _username(&mut self, username: String) -> &mut Self {
self.0.insert("username", Value::from(username));
self
}
#[inline]
pub fn avatar<D: ToString>(&mut self, avatar_url: D) -> &mut Self {
self._avatar(avatar_url.to_string())
}
fn _avatar(&mut self, avatar_url: String) -> &mut Self {
self.0.insert("avatar_url", Value::from(avatar_url));
self
}
pub fn tts(&mut self, tts: bool) -> &mut Self {
self.0.insert("tts", Value::from(tts));
self
}
#[cfg(feature = "model")]
pub fn add_file<T: Into<AttachmentType<'a>>>(&mut self, file: T) -> &mut Self {
self.1.push(file.into());
self
}
#[cfg(feature = "model")]
pub fn add_files<T: Into<AttachmentType<'a>>, It: IntoIterator<Item = T>>(
&mut self,
files: It,
) -> &mut Self {
self.1.extend(files.into_iter().map(Into::into));
self
}
#[cfg(feature = "model")]
pub fn files<T: Into<AttachmentType<'a>>, It: IntoIterator<Item = T>>(
&mut self,
files: It,
) -> &mut Self {
self.1 = files.into_iter().map(Into::into).collect();
self
}
pub fn 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 = json::hashmap_to_json_map(embed.0);
let embed = Value::from(map);
self.0
.entry("embeds")
.or_insert_with(|| Value::from(Vec::<Value>::new()))
.as_array_mut()
.expect("couldn't add embed")
.push(embed);
self
}
pub fn add_embeds(&mut self, embeds: Vec<CreateEmbed>) -> &mut Self {
for embed in embeds {
self.add_embed(embed);
}
self
}
pub fn set_embed(&mut self, embed: CreateEmbed) -> &mut Self {
let map = json::hashmap_to_json_map(embed.0);
let embed = Value::from(map);
self.0.insert("embeds", Value::from(vec![embed]));
self
}
pub fn set_embeds(&mut self, embeds: impl IntoIterator<Item = CreateEmbed>) -> &mut Self {
let embeds = embeds
.into_iter()
.map(|embed| json::hashmap_to_json_map(embed.0).into())
.collect::<Vec<Value>>();
self.0.insert("embeds", Value::from(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 = json::hashmap_to_json_map(allowed_mentions.0);
let allowed_mentions = Value::from(map);
self.0.insert("allowed_mentions", allowed_mentions);
self
}
pub fn flags(&mut self, flags: MessageFlags) -> &mut Self {
self.0.insert("flags", from_number(flags.bits()));
self
}
pub fn ephemeral(&mut self, ephemeral: bool) -> &mut Self {
let flags = self
.0
.get("flags")
.map_or(0, |f| f.as_u64().expect("Interaction response flag was not a number"));
let flags = if ephemeral {
flags | MessageFlags::EPHEMERAL.bits()
} else {
flags & !MessageFlags::EPHEMERAL.bits()
};
self.0.insert("flags", from_number(flags));
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::from(components.0));
self
}
pub fn set_components(&mut self, components: CreateComponents) -> &mut Self {
self.0.insert("components", Value::from(components.0));
self
}
}