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

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

/// Use this method to upload a .png file with a sticker for later use in
/// [`Bot::create_new_sticker_set`] and [`Bot::add_sticker_to_set`] methods (can
/// be used multiple times).
///
/// [The official docs](https://core.telegram.org/bots/api#uploadstickerfile).
///
/// [`Bot::create_new_sticker_set`]: crate::Bot::create_new_sticker_set
/// [`Bot::add_sticker_to_set`]: crate::Bot::add_sticker_to_set
#[serde_with_macros::skip_serializing_none]
#[derive(Debug, Clone, Serialize)]
pub struct UploadStickerFile {
    #[serde(skip_serializing)]
    bot: Arc<Bot>,
    user_id: i32,
    png_sticker: InputFile,
}
#[async_trait::async_trait]
impl Request for UploadStickerFile {
    type Output = File;

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

impl UploadStickerFile {
    pub(crate) fn new(
        bot: Arc<Bot>,
        user_id: i32,
        png_sticker: InputFile,
    ) -> Self {
        Self { bot, user_id, png_sticker }
    }

    /// User identifier of sticker file owner.
    pub fn user_id(mut self, val: i32) -> Self {
        self.user_id = val;
        self
    }

    /// **Png** image with the sticker, must be up to 512 kilobytes in size,
    /// dimensions must not exceed 512px, and either width or height must be
    /// exactly 512px. [More info on Sending Files »].
    ///
    /// [More info on Sending Files »]: https://core.telegram.org/bots/api#sending-files
    pub fn png_sticker(mut self, val: InputFile) -> Self {
        self.png_sticker = val;
        self
    }
}