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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
use serde::{Serialize, Deserialize};

// #[derive(Debug, Serialize, Deserialize, PartialEq, Eq)]
// #[serde(untagged)]
// pub enum CommandBody {
//     /// Событие отправляется при создание чата
//     #[serde(rename(serialize = "system:chat_created", deserialize = "system:chat_created"))]
//     ChatCreated,

//     /// Событие отправляется при добавление мемберов в чат
//     #[serde(rename(serialize = "system:added_to_chat", deserialize = "system:added_to_chat"))]
//     AddedToChat,

//     /// Событие отправляется при удалении администратором участников чата
//     #[serde(rename(serialize = "system:deleted_from_chat", deserialize = "system:deleted_from_chat"))]
//     DeletedFromChat,

//     /// Событие отправляется при выходе участников из чата
//     #[serde(rename(serialize = "system:left_from_chat", deserialize = "system:left_from_chat"))]
//     LeftFromChat,

//     /// Событие отправляется клиентом при взаимодействии со smartapp приложением
//     #[serde(rename(serialize = "system:smartapp_event", deserialize = "system:smartapp_event"))]
//     SmartappEvent,

//     /// Событие отправляется ботом при взаимодействие с другими ботами
//     #[serde(rename(serialize = "system:internal_bot_notification", deserialize = "system:internal_bot_notification"))]
//     InternalBotNotification,

//     /// Событие отправляется при успешном логине пользователя на CTS
//     #[serde(rename(serialize = "system:cts_login", deserialize = "system:cts_login"))]
//     CtsLogin,

//     /// Событие отправляется при успешном выходе пользователя с CTS
//     #[serde(rename(serialize = "system:cts_logout", deserialize = "system:cts_logout"))]
//     CtsLogout,

//     Text(String),
//     Other(serde_json::Value),
// }

// impl CommandBody {
//     pub fn unwrap_text(&self) -> &String {
//         match self {
//             CommandBody::Text(data) => data,
//             _ => panic!("Unexpected command body")
//         }
//     }

//     pub fn unwrap_other(&self) -> &serde_json::Value {
//         match self {
//             CommandBody::Other(data) => data,
//             _ => panic!("Unexpected command body")
//         }
//     }

//     pub fn is_added_to_chat(&self) -> bool {
//         matches!(self, CommandBody::AddedToChat)
//     }
    
//     pub fn is_chat_created(&self) -> bool {
//         matches!(self, CommandBody::ChatCreated)
//     }

//     pub fn is_deleted_from_chat(&self) -> bool {
//         matches!(self, CommandBody::DeletedFromChat)
//     }

//     pub fn is_left_from_chat(&self) -> bool {
//         matches!(self, CommandBody::LeftFromChat)
//     }

//     pub fn is_smartapp_event(&self) -> bool {
//         matches!(self, CommandBody::SmartappEvent)
//     }

//     pub fn is_internal_bot_notification(&self) -> bool {
//         matches!(self, CommandBody::InternalBotNotification)
//     }

//     pub fn is_cts_login(&self) -> bool {
//         matches!(self, CommandBody::CtsLogin)
//     }

//     pub fn is_cts_logout(&self) -> bool {
//         matches!(self, CommandBody::CtsLogout)
//     }

//     pub fn is_text(&self) -> bool {
//         match self {
//             CommandBody::Text(_) => true,
//             _ => false
//         }
//     }

//     pub fn is_other(&self) -> bool {
//         match self {
//             CommandBody::Other(_) => true,
//             _ => false
//         }
//     }
// }

#[derive(Debug, Serialize, Deserialize, PartialEq, Eq)]
#[serde(untagged)]
pub enum CommandBody<TBody> {
    /// Событие отправляется при создание чата
    #[serde(rename(serialize = "system:chat_created", deserialize = "system:chat_created"))]
    ChatCreated,

    /// Событие отправляется при добавление мемберов в чат
    #[serde(rename(serialize = "system:added_to_chat", deserialize = "system:added_to_chat"))]
    AddedToChat,

    /// Событие отправляется при удалении администратором участников чата
    #[serde(rename(serialize = "system:deleted_from_chat", deserialize = "system:deleted_from_chat"))]
    DeletedFromChat,

    /// Событие отправляется при выходе участников из чата
    #[serde(rename(serialize = "system:left_from_chat", deserialize = "system:left_from_chat"))]
    LeftFromChat,

    /// Событие отправляется клиентом при взаимодействии со smartapp приложением
    #[serde(rename(serialize = "system:smartapp_event", deserialize = "system:smartapp_event"))]
    SmartappEvent,

    /// Событие отправляется ботом при взаимодействие с другими ботами
    #[serde(rename(serialize = "system:internal_bot_notification", deserialize = "system:internal_bot_notification"))]
    InternalBotNotification,

    /// Событие отправляется при успешном логине пользователя на CTS
    #[serde(rename(serialize = "system:cts_login", deserialize = "system:cts_login"))]
    CtsLogin,

    /// Событие отправляется при успешном выходе пользователя с CTS
    #[serde(rename(serialize = "system:cts_logout", deserialize = "system:cts_logout"))]
    CtsLogout,

    Body(TBody),
}

impl<TBody> CommandBody<TBody> {
    pub fn unwrap_body(&self) -> &TBody {
        match self {
            CommandBody::Body(data) => data,
            _ => panic!("Unexpected command body")
        }
    }

    pub fn is_added_to_chat(&self) -> bool {
        matches!(self, CommandBody::AddedToChat)
    }
    
    pub fn is_chat_created(&self) -> bool {
        matches!(self, CommandBody::ChatCreated)
    }

    pub fn is_deleted_from_chat(&self) -> bool {
        matches!(self, CommandBody::DeletedFromChat)
    }

    pub fn is_left_from_chat(&self) -> bool {
        matches!(self, CommandBody::LeftFromChat)
    }

    pub fn is_smartapp_event(&self) -> bool {
        matches!(self, CommandBody::SmartappEvent)
    }

    pub fn is_internal_bot_notification(&self) -> bool {
        matches!(self, CommandBody::InternalBotNotification)
    }

    pub fn is_cts_login(&self) -> bool {
        matches!(self, CommandBody::CtsLogin)
    }

    pub fn is_cts_logout(&self) -> bool {
        matches!(self, CommandBody::CtsLogout)
    }

    // pub fn is_text(&self) -> bool {
    //     match self {
    //         CommandBody::Text(_) => true,
    //         _ => false
    //     }
    // }

    pub fn is_body(&self) -> bool {
        match self {
            CommandBody::Body(_) => true,
            _ => false
        }
    }
}