use crate::errors::Result;
use crate::types::*;
use uuid::Uuid;
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
pub struct ChatPermissions {
#[doc(hidden)]
#[serde(rename(serialize = "@extra", deserialize = "@extra"))]
extra: Option<String>,
#[serde(rename(serialize = "@client_id", deserialize = "@client_id"))]
client_id: Option<i32>,
#[serde(default)]
can_send_messages: bool,
#[serde(default)]
can_send_media_messages: bool,
#[serde(default)]
can_send_polls: bool,
#[serde(default)]
can_send_other_messages: bool,
#[serde(default)]
can_add_web_page_previews: bool,
#[serde(default)]
can_change_info: bool,
#[serde(default)]
can_invite_users: bool,
#[serde(default)]
can_pin_messages: bool,
}
impl RObject for ChatPermissions {
#[doc(hidden)]
fn extra(&self) -> Option<&str> {
self.extra.as_deref()
}
#[doc(hidden)]
fn client_id(&self) -> Option<i32> {
self.client_id
}
}
impl ChatPermissions {
pub fn from_json<S: AsRef<str>>(json: S) -> Result<Self> {
Ok(serde_json::from_str(json.as_ref())?)
}
pub fn builder() -> ChatPermissionsBuilder {
let mut inner = ChatPermissions::default();
inner.extra = Some(Uuid::new_v4().to_string());
ChatPermissionsBuilder { inner }
}
pub fn can_send_messages(&self) -> bool {
self.can_send_messages
}
pub fn can_send_media_messages(&self) -> bool {
self.can_send_media_messages
}
pub fn can_send_polls(&self) -> bool {
self.can_send_polls
}
pub fn can_send_other_messages(&self) -> bool {
self.can_send_other_messages
}
pub fn can_add_web_page_previews(&self) -> bool {
self.can_add_web_page_previews
}
pub fn can_change_info(&self) -> bool {
self.can_change_info
}
pub fn can_invite_users(&self) -> bool {
self.can_invite_users
}
pub fn can_pin_messages(&self) -> bool {
self.can_pin_messages
}
}
#[doc(hidden)]
pub struct ChatPermissionsBuilder {
inner: ChatPermissions,
}
#[deprecated]
pub type RTDChatPermissionsBuilder = ChatPermissionsBuilder;
impl ChatPermissionsBuilder {
pub fn build(&self) -> ChatPermissions {
self.inner.clone()
}
pub fn can_send_messages(&mut self, can_send_messages: bool) -> &mut Self {
self.inner.can_send_messages = can_send_messages;
self
}
pub fn can_send_media_messages(&mut self, can_send_media_messages: bool) -> &mut Self {
self.inner.can_send_media_messages = can_send_media_messages;
self
}
pub fn can_send_polls(&mut self, can_send_polls: bool) -> &mut Self {
self.inner.can_send_polls = can_send_polls;
self
}
pub fn can_send_other_messages(&mut self, can_send_other_messages: bool) -> &mut Self {
self.inner.can_send_other_messages = can_send_other_messages;
self
}
pub fn can_add_web_page_previews(&mut self, can_add_web_page_previews: bool) -> &mut Self {
self.inner.can_add_web_page_previews = can_add_web_page_previews;
self
}
pub fn can_change_info(&mut self, can_change_info: bool) -> &mut Self {
self.inner.can_change_info = can_change_info;
self
}
pub fn can_invite_users(&mut self, can_invite_users: bool) -> &mut Self {
self.inner.can_invite_users = can_invite_users;
self
}
pub fn can_pin_messages(&mut self, can_pin_messages: bool) -> &mut Self {
self.inner.can_pin_messages = can_pin_messages;
self
}
}
impl AsRef<ChatPermissions> for ChatPermissions {
fn as_ref(&self) -> &ChatPermissions {
self
}
}
impl AsRef<ChatPermissions> for ChatPermissionsBuilder {
fn as_ref(&self) -> &ChatPermissions {
&self.inner
}
}