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

/// Represents a secret chat
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
pub struct SecretChat {
    #[doc(hidden)]
    #[serde(rename(serialize = "@extra", deserialize = "@extra"))]
    extra: Option<String>,
    #[serde(rename(serialize = "@client_id", deserialize = "@client_id"))]
    client_id: Option<i32>,
    /// Secret chat identifier

    #[serde(default)]
    id: i32,
    /// Identifier of the chat partner

    #[serde(default)]
    user_id: i64,
    /// State of the secret chat

    #[serde(skip_serializing_if = "SecretChatState::_is_default")]
    state: SecretChatState,
    /// True, if the chat was created by the current user; otherwise false

    #[serde(default)]
    is_outbound: bool,
    /// 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

    #[serde(default)]
    key_hash: String,
    /// Secret chat layer; determines features supported by the chat partner's application. Nested text entities and underline and strikethrough entities are supported if the layer >= 101

    #[serde(default)]
    layer: i32,
}

impl RObject for SecretChat {
    #[doc(hidden)]
    fn extra(&self) -> Option<&str> {
        self.extra.as_deref()
    }
    #[doc(hidden)]
    fn client_id(&self) -> Option<i32> {
        self.client_id
    }
}

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

        SecretChatBuilder { inner }
    }

    pub fn id(&self) -> i32 {
        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 key_hash(&self) -> &String {
        &self.key_hash
    }

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

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

#[deprecated]
pub type RTDSecretChatBuilder = SecretChatBuilder;

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

    pub fn id(&mut self, id: i32) -> &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 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: i32) -> &mut Self {
        self.inner.layer = layer;
        self
    }
}

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

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