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
use crate::requests::*;
use crate::types::*;

/// Strongly typed ChatAction. Instead of passing a String to the
/// `chat_action` method, this is used.
#[derive(Debug, Clone, PartialEq, PartialOrd, Serialize)]
#[must_use = "requests do nothing unless sent"]
pub enum ChatAction {
    #[serde(rename = "typing")]
    Typing,
    #[serde(rename = "upload_photo")]
    UploadPhoto,
    #[serde(rename = "record_video")]
    RecordVideo,
    #[serde(rename = "upload_video")]
    UploadVideo,
    #[serde(rename = "record_audio")]
    RecordAudio,
    #[serde(rename = "upload_audio")]
    UploadAudio,
    #[serde(rename = "upload_document")]
    UploadDocument,
    #[serde(rename = "find_location")]
    FindLocation,
}

/// Use this method when you need to tell the user that something is happening on the bot's side.
/// The status is set for 5 seconds or less (when a message arrives from your bot,
/// Telegram clients clear its typing status).
#[derive(Debug, Clone, PartialEq, PartialOrd, Serialize)]
pub struct SendChatAction {
    chat_id: ChatRef,
    action: ChatAction,
}

impl Request for SendChatAction {
    type Type = JsonRequestType<Self>;
    type Response = JsonTrueToUnitResponse;

    fn serialize(&self) -> Result<HttpRequest, Error> {
        Self::Type::serialize(RequestUrl::method("sendChatAction"), self)
    }
}

impl SendChatAction {
    pub fn new<C>(chat: C, action: ChatAction) -> Self
    where
        C: ToChatRef,
    {
        SendChatAction {
            chat_id: chat.to_chat_ref(),
            action: action,
        }
    }
}

/// Send `action` to a chat.
pub trait CanSendChatAction {
    fn chat_action(&self, action: ChatAction) -> SendChatAction;
}

impl<C> CanSendChatAction for C
where
    C: ToChatRef,
{
    fn chat_action(&self, action: ChatAction) -> SendChatAction {
        SendChatAction::new(self, action)
    }
}