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
use serde::Serialize;

use crate::{
    net,
    requests::{Request, ResponseResult},
    types::{InlineQueryResult, True},
    Bot,
};
use std::sync::Arc;

/// Use this method to send answers to an inline query.
///
/// No more than **50** results per query are allowed.
///
/// [The official docs](https://core.telegram.org/bots/api#answerinlinequery).
#[serde_with_macros::skip_serializing_none]
#[derive(Debug, Clone, Serialize)]
pub struct AnswerInlineQuery {
    #[serde(skip_serializing)]
    bot: Arc<Bot>,
    inline_query_id: String,
    results: Vec<InlineQueryResult>,
    cache_time: Option<i32>,
    is_personal: Option<bool>,
    next_offset: Option<String>,
    switch_pm_text: Option<String>,
    switch_pm_parameter: Option<String>,
}

#[async_trait::async_trait]
impl Request for AnswerInlineQuery {
    type Output = True;

    async fn send(&self) -> ResponseResult<True> {
        net::request_json(
            self.bot.client(),
            self.bot.token(),
            "answerInlineQuery",
            &self,
        )
        .await
    }
}

impl AnswerInlineQuery {
    pub(crate) fn new<I, R>(
        bot: Arc<Bot>,
        inline_query_id: I,
        results: R,
    ) -> Self
    where
        I: Into<String>,
        R: Into<Vec<InlineQueryResult>>,
    {
        let inline_query_id = inline_query_id.into();
        let results = results.into();
        Self {
            bot,
            inline_query_id,
            results,
            cache_time: None,
            is_personal: None,
            next_offset: None,
            switch_pm_text: None,
            switch_pm_parameter: None,
        }
    }

    /// Unique identifier for the answered query.
    pub fn inline_query_id<T>(mut self, val: T) -> Self
    where
        T: Into<String>,
    {
        self.inline_query_id = val.into();
        self
    }

    /// A JSON-serialized array of results for the inline query.
    pub fn results<T>(mut self, val: T) -> Self
    where
        T: Into<Vec<InlineQueryResult>>,
    {
        self.results = val.into();
        self
    }

    /// The maximum amount of time in seconds that the result of the inline
    /// query may be cached on the server.
    ///
    /// Defaults to 300.
    pub fn cache_time(mut self, val: i32) -> Self {
        self.cache_time = Some(val);
        self
    }

    /// Pass `true`, if results may be cached on the server side only for the
    /// user that sent the query.
    ///
    /// By default, results may be returned to any user who sends the same
    /// query.
    #[allow(clippy::wrong_self_convention)]
    pub fn is_personal(mut self, val: bool) -> Self {
        self.is_personal = Some(val);
        self
    }

    /// Pass the offset that a client should send in the next query with the
    /// same text to receive more results.
    ///
    /// Pass an empty string if there are no more results or if you don‘t
    /// support pagination. Offset length can’t exceed 64 bytes.
    pub fn next_offset<T>(mut self, val: T) -> Self
    where
        T: Into<String>,
    {
        self.next_offset = Some(val.into());
        self
    }

    /// If passed, clients will display a button with specified text that
    /// switches the user to a private chat with the bot and sends the bot a
    /// start message with the parameter [`switch_pm_parameter`].
    ///
    /// [`switch_pm_parameter`]:
    /// crate::requests::AnswerInlineQuery::switch_pm_parameter
    pub fn switch_pm_text<T>(mut self, val: T) -> Self
    where
        T: Into<String>,
    {
        self.switch_pm_text = Some(val.into());
        self
    }

    /// [Deep-linking] parameter for the /start message sent to the bot when
    /// user presses the switch button. 1-64 characters, only `A-Z`, `a-z`,
    /// `0-9`, `_` and `-` are allowed.
    ///
    /// Example: An inline bot that sends YouTube videos can ask the user to
    /// connect the bot to their YouTube account to adapt search results
    /// accordingly. To do this, it displays a ‘Connect your YouTube account’
    /// button above the results, or even before showing any. The user presses
    /// the button, switches to a private chat with the bot and, in doing so,
    /// passes a start parameter that instructs the bot to return an oauth link.
    /// Once done, the bot can offer a [`switch_inline`] button so that the user
    /// can easily return to the chat where they wanted to use the bot's
    /// inline capabilities.
    ///
    /// [Deep-linking]: https://core.telegram.org/bots#deep-linking
    /// [`switch_inline`]: crate::types::InlineKeyboardMarkup
    pub fn switch_pm_parameter<T>(mut self, val: T) -> Self
    where
        T: Into<String>,
    {
        self.switch_pm_parameter = Some(val.into());
        self
    }
}