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

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

/// Use this method to get a list of profile pictures for a user.
///
/// [The official docs](https://core.telegram.org/bots/api#getuserprofilephotos).
#[serde_with_macros::skip_serializing_none]
#[derive(Debug, Clone, Serialize)]
pub struct GetUserProfilePhotos {
    #[serde(skip_serializing)]
    bot: Arc<Bot>,
    user_id: i32,
    offset: Option<i32>,
    limit: Option<i32>,
}

#[async_trait::async_trait]
impl Request for GetUserProfilePhotos {
    type Output = UserProfilePhotos;

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

impl GetUserProfilePhotos {
    pub(crate) fn new(bot: Arc<Bot>, user_id: i32) -> Self {
        Self { bot, user_id, offset: None, limit: None }
    }

    /// Unique identifier of the target user.
    pub fn user_id(mut self, val: i32) -> Self {
        self.user_id = val;
        self
    }

    /// Sequential number of the first photo to be returned. By default, all
    /// photos are returned.
    pub fn offset(mut self, val: i32) -> Self {
        self.offset = Some(val);
        self
    }

    /// Limits the number of photos to be retrieved. Values between 1—100 are
    /// accepted.
    ///
    /// Defaults to 100.
    pub fn limit(mut self, val: i32) -> Self {
        self.limit = Some(val);
        self
    }
}