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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
//! The `generic` module contains structs and methods for creating and sending generic template messages in Facebook Messenger.
//!
//! A generic template message is a type of structured message that can contain multiple `GenericElement`s.
//! Each `GenericElement` can contain a title, subtitle, image, and multiple buttons.
//!
//! This module provides the following structs:
//!
//! * `GenericElement`: Represents a single element in a generic template.
//! * `GenericModel`: Represents a generic template message.
//!
//! It also provides methods for creating and sending generic template messages.
//!
//! # Examples
//!
//! Creating and sending a generic template message:
//!
//! ```rust
//! use russenger::prelude::*;
//!
//! async fn index(res: Res, req: Req) -> Result<()> {
//! let elements = vec![
//! GenericElement::new(
//! "Title",
//! "https://example.com/image.jpg",
//! "Subtitle",
//! vec![Button::Postback {
//! title: "Hello World",
//! payload: Payload::new("/hello_world", Some(Data::new("Hello World!"))),
//! }],
//! ),
//! // More elements ....
//! ];
//!
//! let generic = GenericModel::new(&req.user, elements, None);
//! res.send(generic).await?;
//!
//! Ok(())
//! }
//!
//! async fn hello_world(res: Res, req: Req) -> Result<()> {
//! let hello_world: String = req.data.get_value()?;
//! res.send(TextModel::new(&req.user, &hello_world)).await?;
//!
//! Ok(())
//! }
//! ```
//!
//! For more information on generic template messages, refer to the [Facebook Documentation](https://developers.facebook.com/docs/messenger-platform/send-messages/template/generic).
use panic;
use Serialize;
use Value;
use ;
/// `GenericElement` is a struct that represents a single element in a generic template.
///
/// Each `GenericElement` can contain a title, subtitle, image, and multiple buttons.
///
/// # Fields
///
/// * `title`: A string that represents the title of the element.
/// * `image_url`: A string that represents the URL of the image to be displayed in the element.
/// * `subtitle`: A string that represents the subtitle of the element.
/// * `buttons`: A vector of `Button` structs that represent the buttons to be displayed in the element.
///
/// # Examples
///
/// Creating a `GenericElement`:
///
/// ```rust
/// // use russenger::response_models::data::Data;
/// // use russenger::response_models::button::Button;
/// // use russenger::response_models::payload::Payload;
/// // use russenger::response_models::generic::GenericElement;
///
/// use russenger::prelude::*; // if you use this import other imports are not needed;
///
/// let element = GenericElement::new(
/// "Title",
/// "https://example.com/image.jpg",
/// "Subtitle",
/// vec![Button::Postback {
/// title: "Hello World",
/// payload: Payload::new("/hello_world", Some(Data::new("Hello World!"))),
/// }],
/// );
///
///
/// async fn hello_world(res: Res, req: Req) -> Result<()> {
/// let hello_world: String = req.data.get_value()?;
/// res.send(TextModel::new(&req.user, &hello_world)).await?;
///
/// Ok(())
/// }
/// ```
/// `GenericModel` is a struct that represents a generic template message.
///
/// A generic template message is a type of structured message that can contain multiple `GenericElement`s.
/// Each `GenericElement` can contain a title, subtitle, image, and multiple buttons.
///
/// # Fields
///
/// * `recipient`: A `Recipient` struct that represents the recipient of the message.
/// * `messaging_type`: A string that represents the type of messaging. For generic template messages, this is always "RESPONSE".
/// * `message`: A `GenericMessage` struct that contains the `GenericElement`s to be displayed in the message.
///
/// # Methods
///
/// * `new(sender: &'g str, elements: Vec<GenericElement>, page: Option<Page>) -> Self` - Creates a new `GenericModel` instance.
/// * `get_sender() -> &'g str` - Returns the ID of the recipient.
/// * `is_element_empty() -> bool` - Returns whether the `GenericElement`s in the message are empty.
///
/// # Examples
///
/// Creating a `GenericModel` and sending it:
///
/// ```rust
/// // use russenger::response_models::data::Data;
/// // use russenger::response_models::button::Button;
/// // use russenger::response_models::payload::Payload;
/// // use russenger::response_models::generic::GenericElement;
///
/// use russenger::prelude::*; // if you use this import other imports are not needed;
///
/// async fn index(res: Res, req: Req) -> Result<()> {
/// let elements = vec![
/// GenericElement::new(
/// "Title",
/// "https://example.com/image.jpg",
/// "Subtitle",
/// vec![Button::Postback {
/// title: "Hello World",
/// payload: Payload::new("/hello_world", Some(Data::new("Hello World!"))),
/// }],
/// ),
/// // More elements ....
/// ];
///
/// let message = GenericModel::new(&req.user, elements, None);
/// res.send(message).await?;
///
/// Ok(())
/// }
///
/// async fn hello_world(res: Res, req: Req) -> Result<()> {
/// let hello_world: String = req.data.get_value()?;
/// res.send(TextModel::new(&req.user, &hello_world)).await?;
///
/// Ok(())
/// }
/// ```
///
/// [Facebook Documentation](https://developers.facebook.com/docs/messenger-platform/send-messages/template/generic)