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
use crate::errors::*;
use crate::types::*;
use uuid::Uuid;

/// Represents a secret chat
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
pub struct SecretChat {
    #[doc(hidden)]
    #[serde(rename(serialize = "@type", deserialize = "@type"))]
    td_name: String,
    #[doc(hidden)]
    #[serde(rename(serialize = "@extra", deserialize = "@extra"))]
    extra: Option<String>,
    /// Secret chat identifier
    id: i64,
    /// Identifier of the chat partner
    user_id: i64,
    /// State of the secret chat
    state: SecretChatState,
    /// True, if the chat was created by the current user; otherwise false
    is_outbound: bool,
    /// Current message Time To Live setting (self-destruct timer) for the chat, in seconds
    ttl: i64,
    /// Hash of the currently used key for comparison with the hash of the chat partner's key. This is a string of 36 little-endian bytes, which must be split into groups of 2 bits, each denoting a pixel of one of 4 colors FFFFFF, D5E6F3, 2D5775, and 2F99C9. The pixels must be used to make a 12x12 square image filled from left to right, top to bottom. Alternatively, the first 32 bytes of the hash can be converted to the hexadecimal format and printed as 32 2-digit hex numbers
    key_hash: String,
    /// Secret chat layer; determines features supported by the other client. Video notes are supported if the layer >= 66; nested text entities and underline and strikethrough entities are supported if the layer >= 101
    layer: i64,
}

impl RObject for SecretChat {
    #[doc(hidden)]
    fn td_name(&self) -> &'static str {
        "secretChat"
    }
    #[doc(hidden)]
    fn extra(&self) -> Option<String> {
        self.extra.clone()
    }
    fn to_json(&self) -> RTDResult<String> {
        Ok(serde_json::to_string(self)?)
    }
}

impl SecretChat {
    pub fn from_json<S: AsRef<str>>(json: S) -> RTDResult<Self> {
        Ok(serde_json::from_str(json.as_ref())?)
    }
    pub fn builder() -> RTDSecretChatBuilder {
        let mut inner = SecretChat::default();
        inner.td_name = "secretChat".to_string();
        inner.extra = Some(Uuid::new_v4().to_string());
        RTDSecretChatBuilder { inner }
    }

    pub fn id(&self) -> i64 {
        self.id
    }

    pub fn user_id(&self) -> i64 {
        self.user_id
    }

    pub fn state(&self) -> &SecretChatState {
        &self.state
    }

    pub fn is_outbound(&self) -> bool {
        self.is_outbound
    }

    pub fn ttl(&self) -> i64 {
        self.ttl
    }

    pub fn key_hash(&self) -> &String {
        &self.key_hash
    }

    pub fn layer(&self) -> i64 {
        self.layer
    }
}

#[doc(hidden)]
pub struct RTDSecretChatBuilder {
    inner: SecretChat,
}

impl RTDSecretChatBuilder {
    pub fn build(&self) -> SecretChat {
        self.inner.clone()
    }

    pub fn id(&mut self, id: i64) -> &mut Self {
        self.inner.id = id;
        self
    }

    pub fn user_id(&mut self, user_id: i64) -> &mut Self {
        self.inner.user_id = user_id;
        self
    }

    pub fn state<T: AsRef<SecretChatState>>(&mut self, state: T) -> &mut Self {
        self.inner.state = state.as_ref().clone();
        self
    }

    pub fn is_outbound(&mut self, is_outbound: bool) -> &mut Self {
        self.inner.is_outbound = is_outbound;
        self
    }

    pub fn ttl(&mut self, ttl: i64) -> &mut Self {
        self.inner.ttl = ttl;
        self
    }

    pub fn key_hash<T: AsRef<str>>(&mut self, key_hash: T) -> &mut Self {
        self.inner.key_hash = key_hash.as_ref().to_string();
        self
    }

    pub fn layer(&mut self, layer: i64) -> &mut Self {
        self.inner.layer = layer;
        self
    }
}

impl AsRef<SecretChat> for SecretChat {
    fn as_ref(&self) -> &SecretChat {
        self
    }
}

impl AsRef<SecretChat> for RTDSecretChatBuilder {
    fn as_ref(&self) -> &SecretChat {
        &self.inner
    }
}