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

use crate::{
    net,
    requests::{Request, ResponseResult},
    types::{BotCommand, True},
    Bot,
};

/// Use this method to change the list of the bot's commands.
///
/// [The official docs](https://core.telegram.org/bots/api#setmycommands).
#[serde_with_macros::skip_serializing_none]
#[derive(Debug, Clone, Serialize)]
pub struct SetMyCommands {
    #[serde(skip_serializing)]
    bot: Bot,

    commands: Vec<BotCommand>,
}

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

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

impl SetMyCommands {
    pub(crate) fn new<C>(bot: Bot, commands: C) -> Self
    where
        C: Into<Vec<BotCommand>>,
    {
        Self { bot, commands: commands.into() }
    }

    /// A JSON-serialized list of bot commands to be set as the list of the
    /// bot's commands.
    ///
    /// At most 100 commands can be specified.
    pub fn commands<C>(mut self, commands: C) -> Self
    where
        C: Into<Vec<BotCommand>>,
    {
        self.commands = commands.into();
        self
    }
}