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
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
use rustc_serialize::Decodable;
use telegram_bot::*;

/// Help trait indicating that at least the `end` method is implemented for the SendBuilder structs
pub trait Finisher<T: Decodable> {
    fn end(&mut self) -> Result<T>;
}

/// SendBuilder it's a builder struct that allows you to construct answers in
/// a composable way, you will use it transparently with the `send` and `answer`
/// methods of `AwesomeBot`
#[derive(Clone)]
pub struct SendBuilder {
    chat_id: Integer,
    bot: Api,
}

impl SendBuilder {
    /// Create a new SendBuilder, don't use it,
    /// use the `send` and `answer` methods of `AwesomeBot` :)
    pub fn new(id: Integer, bot: Api) -> SendBuilder {
        SendBuilder {
            chat_id: id,
            bot: bot,
        }
    }

    /// Start a text constructor to send.
    pub fn text(self, t: &str) -> SendText {
        SendText {
            send: self,
            text: t.to_string(),
            parse_mode: None,
            disable_webpage_preview: None,
            reply_to_message_id: None,
            reply_markup: None,
        }
    }

    /// Start a photo constructor to send.
    pub fn photo(self, t: &str) -> SendPhoto {
        SendPhoto {
            send: self,
            photo: t.to_string(),
            caption: None,
            reply_to_message_id: None,
            reply_markup: None,
        }
    }

    /// Start an audio constructor to send.
    pub fn audio(self, t: &str) -> SendAudio {
        SendAudio {
            send: self,
            audio: t.to_string(),
            duration: None,
            performer: None,
            title: None,
            reply_to_message_id: None,
            reply_markup: None,
        }
    }

    /// Start a voice constructor to send.
    pub fn voice(self, t: &str) -> SendVoice {
        SendVoice {
            send: self,
            voice: t.to_string(),
            duration: None,
            reply_to_message_id: None,
            reply_markup: None,
        }
    }

    /// Start a document constructor to send.
    pub fn document(self, t: &str) -> SendDocument {
        SendDocument {
            send: self,
            document: t.to_string(),
            reply_to_message_id: None,
            reply_markup: None,
        }
    }

    /// Start a sticker constructor to send.
    pub fn sticker(self, t: &str) -> SendSticker {
        SendSticker {
            send: self,
            sticker: t.to_string(),
            reply_to_message_id: None,
            reply_markup: None,
        }
    }

    /// Start a video constructor to send.
    pub fn video(self, t: &str) -> SendVideo {
        SendVideo {
            send: self,
            video: t.to_string(),
            caption: None,
            duration: None,
            reply_to_message_id: None,
            reply_markup: None,
        }
    }

    /// Start a forward constructor to send.
    pub fn forward(self, to: Integer, msg: Integer) -> SendForward {
        SendForward {
            send: self,
            to: to,
            msg: msg,
        }
    }

    /// Start an action constructor to send.
    pub fn action(self, action: ChatAction) -> SendAction {
        SendAction {
            send: self,
            action: action,
        }
    }

    /// Start a location constructor to send.
    pub fn location(self, latitude: Float, longitude: Float) -> SendLocation {
        SendLocation {
            send: self,
            latitude: latitude,
            longitude: longitude,
            reply_to_message_id: None,
            reply_markup: None,
        }
    }
}

macro_rules! basesendtype {
    (
        $name: ident,
        $structdoc: expr,
        [$($id: ident => $field: ty),*],
        [$($o_id: ident => ($o_name: ident, $o_field: ty, $docf: expr)),*]) => {

        #[doc="Transparent struct built by `SendBuilder` to send"]
        #[doc=$structdoc]
        #[doc="messages."]
        pub struct $name  {
            send: SendBuilder,
            $($id: $field),*
                ,
            $($o_id: Option<$o_field>),*
        }

        impl $name {
            $(
                #[doc=$docf]
                pub fn $o_name(&mut self, v: $o_field) -> &mut $name {
                    self.$o_id = Some(v);
                    self
                }
                )*
        }
    }
}

macro_rules! addkeyboardfuncs {
    ($name:ident, $markname:ident) => {
        /// Add keyboard methods to the struct, only one of these will be sent,
        /// and it will be the last one used.
        impl $name {
            /// Add a keyboard to the reply
            pub fn keyboard(&mut self, r: ReplyKeyboardMarkup) -> &mut $name {
                self.$markname = Some(ReplyMarkup::from(r));
                self
            }

            /// Hide the keyboard
            pub fn hide(&mut self, h: bool) -> &mut $name {
                self.$markname = Some(ReplyMarkup::KeyboardHide(h));
                self
            }

            /// Force the reply to this message
            pub fn force(&mut self, f: bool) -> &mut $name {
                self.$markname = Some(ReplyMarkup::ForceReply(f));
                self
            }
        }
    };
}

basesendtype!(SendText,
              "`Text`",
              [text => String],
              [parse_mode => (parse_mode, ParseMode, "Set `ParseMode` for the message"),
               disable_webpage_preview => (disable_preview, bool, "Set `true` to disable the link preview in the message."),
               reply_to_message_id => (reply_id, Integer, "Set a message ID to reply to with this message."),
               reply_markup => (markup, ReplyMarkup, "Set a `ReplyMarkup` to send, but instead of directly using this, use the `keyboard`, `hide` or `force` methods")]);

addkeyboardfuncs!(SendText, reply_markup);

impl Finisher<Message> for SendText {
    fn end(&mut self) -> Result<Message> {
        self.send.bot.send_message(
            self.send.chat_id,
            self.text.clone(),
            self.parse_mode,
            self.disable_webpage_preview,
            self.reply_to_message_id,
            self.reply_markup.clone(),
        )
    }
}

basesendtype!(SendPhoto,
              "`Photo`",
              [photo => String],
              [caption => (caption, String, "Set a caption to be included with the message."),
               reply_to_message_id => (reply_id, Integer, "Set a message ID to reply with this message."),
               reply_markup => (markup, ReplyMarkup, "Set a `ReplyMarkup` to send, but instead of this, use the `keyboard`, `hide` or `force` methods")]);

addkeyboardfuncs!(SendPhoto, reply_markup);

impl Finisher<Message> for SendPhoto {
    fn end(&mut self) -> Result<Message> {
        self.send.bot.send_photo(
            self.send.chat_id,
            self.photo.clone(),
            self.caption.clone(),
            self.reply_to_message_id,
            self.reply_markup.clone(),
        )
    }
}

basesendtype!(SendAudio,
              "`Audio`",
              [audio => String],
              [duration => (duration, Integer, "Set the duration of the track"),
               performer => (performer, String, "Set the performer of the track"),
               title => (title, String, "Set the title of the track"),
               reply_to_message_id => (reply_id, Integer, "Set a message ID to reply with this message."),
               reply_markup => (markup, ReplyMarkup, "Set a `ReplyMarkup` to send, but instead of this, use the `keyboard`, `hide` or `force` methods")]);

addkeyboardfuncs!(SendAudio, reply_markup);

impl Finisher<Message> for SendAudio {
    fn end(&mut self) -> Result<Message> {
        self.send.bot.send_audio(
            self.send.chat_id,
            self.audio.clone(),
            self.duration,
            self.performer.clone(),
            self.title.clone(),
            self.reply_to_message_id,
            self.reply_markup.clone(),
        )
    }
}

basesendtype!(SendVoice,
              "`Voice`",
              [voice => String],
              [duration => (duration, Integer, "Set the duration of the voice audio."),
               reply_to_message_id => (reply_id, Integer, "Set a message ID to reply with this message."),
               reply_markup => (markup, ReplyMarkup, "Set a `ReplyMarkup` to send, but instead of this, use the `keyboard`, `hide` or `force` methods")]);

addkeyboardfuncs!(SendVoice, reply_markup);

impl Finisher<Message> for SendVoice {
    fn end(&mut self) -> Result<Message> {
        self.send.bot.send_voice(
            self.send.chat_id,
            self.voice.clone(),
            self.duration,
            self.reply_to_message_id,
            self.reply_markup.clone(),
        )
    }
}

basesendtype!(SendDocument,
              "`Document`",
              [document => String],
              [reply_to_message_id => (reply_id, Integer, "Set a message ID to reply with this message."),
               reply_markup => (markup, ReplyMarkup, "Set a `ReplyMarkup` to send, but instead of this, use the `keyboard`, `hide` or `force` methods")]);

addkeyboardfuncs!(SendDocument, reply_markup);

impl Finisher<Message> for SendDocument {
    fn end(&mut self) -> Result<Message> {
        self.send.bot.send_document(
            self.send.chat_id,
            self.document.clone(),
            self.reply_to_message_id,
            self.reply_markup.clone(),
        )
    }
}

basesendtype!(SendSticker,
              "`Sticker`",
              [sticker => String],
              [reply_to_message_id => (reply_id, Integer, "Set a message ID to reply with this message."),
               reply_markup => (markup, ReplyMarkup, "Set a `ReplyMarkup` to send, but instead of this, use the `keyboard`, `hide` or `force` methods")]);

addkeyboardfuncs!(SendSticker, reply_markup);

impl Finisher<Message> for SendSticker {
    fn end(&mut self) -> Result<Message> {
        self.send.bot.send_sticker(
            self.send.chat_id,
            self.sticker.clone(),
            self.reply_to_message_id,
            self.reply_markup.clone(),
        )
    }
}

basesendtype!(SendVideo,
              "`Video`",
              [video => String],
              [caption => (caption, String, "Set a caption to be included with the message."),
               duration => (duration, Integer, "Set the duration of the video"),
               reply_to_message_id => (reply_id, Integer, "Set a message ID to reply with this message."),
               reply_markup => (markup, ReplyMarkup, "Set a `ReplyMarkup` to send, but instead of this, use the `keyboard`, `hide` or `force` methods")]);

addkeyboardfuncs!(SendVideo, reply_markup);

impl Finisher<Message> for SendVideo {
    fn end(&mut self) -> Result<Message> {
        self.send.bot.send_video(
            self.send.chat_id,
            self.video.clone(),
            self.caption.clone(),
            self.duration,
            self.reply_to_message_id,
            self.reply_markup.clone(),
        )
    }
}

basesendtype!(SendForward,
              "`Forward`",
              [to => Integer, msg => Integer],
              []);

impl Finisher<Message> for SendForward {
    fn end(&mut self) -> Result<Message> {
        self.send
            .bot
            .forward_message(self.send.chat_id, self.to, self.msg)
    }
}

basesendtype!(SendAction,
              "`Action`",
              [action => ChatAction],
              []);

impl Finisher<bool> for SendAction {
    fn end(&mut self) -> Result<bool> {
        self.send
            .bot
            .send_chat_action(self.send.chat_id, self.action)
    }
}

basesendtype!(SendLocation,
              "`Location`",
              [latitude => Float,
               longitude => Float],
              [reply_to_message_id => (reply_id, Integer, "Set a message ID to reply with this message."),
               reply_markup => (markup, ReplyMarkup, "Set a `ReplyMarkup` to send, but instead of this, use the `keyboard`, `hide` or `force` methods")]);

addkeyboardfuncs!(SendLocation, reply_markup);

impl Finisher<Message> for SendLocation {
    fn end(&mut self) -> Result<Message> {
        self.send.bot.send_location(
            self.send.chat_id,
            self.latitude,
            self.longitude,
            self.reply_to_message_id,
            self.reply_markup.clone(),
        )
    }
}