use crate::internal::prelude::*;
use crate::model::id::ChannelId;
use std::collections::HashMap;
#[derive(Clone, Debug, Default)]
pub struct EditChannel(pub HashMap<&'static str, Value>);
impl EditChannel {
pub fn bitrate(&mut self, bitrate: u64) -> &mut Self {
self.0.insert("bitrate", Value::Number(Number::from(bitrate)));
self
}
pub fn name<S: ToString>(&mut self, name: S) -> &mut Self {
self.0.insert("name", Value::String(name.to_string()));
self
}
pub fn position(&mut self, position: u64) -> &mut Self {
self.0.insert("position", Value::Number(Number::from(position)));
self
}
pub fn topic<S: ToString>(&mut self, topic: S) -> &mut Self {
self.0.insert("topic", Value::String(topic.to_string()));
self
}
pub fn nsfw(&mut self, nsfw: bool) -> &mut Self {
self.0.insert("nsfw", Value::Bool(nsfw));
self
}
pub fn user_limit(&mut self, user_limit: u64) -> &mut Self {
self.0.insert("user_limit", Value::Number(Number::from(user_limit)));
self
}
#[inline]
pub fn category<C: Into<Option<ChannelId>>>(&mut self, category: C) -> &mut Self {
self._category(category.into());
self
}
fn _category(&mut self, category: Option<ChannelId>) {
self.0.insert("parent_id", match category {
Some(c) => Value::Number(Number::from(c.0)),
None => Value::Null
});
}
#[inline]
pub fn slow_mode_rate(&mut self, seconds: u64) -> &mut Self {
self.0.insert("rate_limit_per_user", Value::Number(Number::from(seconds)));
self
}
}