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
use crate::{
methods::Method,
request::RequestBuilder,
types::{InlineQueryResult, Integer},
};
use failure::Error;
use serde::Serialize;
#[derive(Clone, Debug, Serialize)]
pub struct AnswerInlineQuery {
inline_query_id: String,
results: Vec<InlineQueryResult>,
#[serde(skip_serializing_if = "Option::is_none")]
cache_time: Option<Integer>,
#[serde(skip_serializing_if = "Option::is_none")]
is_personal: Option<bool>,
#[serde(skip_serializing_if = "Option::is_none")]
next_offset: Option<String>,
#[serde(skip_serializing_if = "Option::is_none")]
switch_pm_text: Option<String>,
#[serde(skip_serializing_if = "Option::is_none")]
switch_pm_parameter: Option<String>,
}
impl AnswerInlineQuery {
pub fn new<S: Into<String>>(inline_query_id: S, results: Vec<InlineQueryResult>) -> Self {
AnswerInlineQuery {
inline_query_id: inline_query_id.into(),
results,
cache_time: None,
is_personal: None,
next_offset: None,
switch_pm_text: None,
switch_pm_parameter: None,
}
}
pub fn cache_time(mut self, cache_time: Integer) -> Self {
self.cache_time = Some(cache_time);
self
}
pub fn personal(mut self, is_personal: bool) -> Self {
self.is_personal = Some(is_personal);
self
}
pub fn next_offset<S: Into<String>>(mut self, next_offset: S) -> Self {
self.next_offset = Some(next_offset.into());
self
}
pub fn switch_pm_text<S: Into<String>>(mut self, switch_pm_text: S) -> Self {
self.switch_pm_text = Some(switch_pm_text.into());
self
}
pub fn switch_pm_parameter<S: Into<String>>(mut self, switch_pm_parameter: S) -> Self {
self.switch_pm_parameter = Some(switch_pm_parameter.into());
self
}
}
impl Method for AnswerInlineQuery {
type Response = bool;
fn into_request(self) -> Result<RequestBuilder, Error> {
RequestBuilder::json("answerInlineQuery", &self)
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::request::{RequestBody, RequestMethod};
use serde_json::Value;
#[test]
fn answer_inline_query() {
let request = AnswerInlineQuery::new("id", vec![])
.cache_time(300)
.personal(true)
.next_offset("offset")
.switch_pm_text("text")
.switch_pm_parameter("param")
.into_request()
.unwrap()
.build("base-url", "token");
assert_eq!(request.method, RequestMethod::Post);
assert_eq!(request.url, "base-url/bottoken/answerInlineQuery");
if let RequestBody::Json(data) = request.body {
let data: Value = serde_json::from_slice(&data).unwrap();
assert_eq!(data["inline_query_id"], "id");
assert_eq!(data["cache_time"], 300);
assert_eq!(data["is_personal"], true);
assert_eq!(data["next_offset"], "offset");
assert_eq!(data["switch_pm_text"], "text");
assert_eq!(data["switch_pm_parameter"], "param");
} else {
panic!("Unexpected request body: {:?}", request.body);
}
}
}