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
use crate::requests::*;
use crate::types::*;

/// Use this method to kick a user from a group or a supergroup.
/// In the case of supergroups, the user will not be able to return to the group on
/// their own using invite links, etc., unless unbanned first.
/// The bot must be an administrator in the group for this to work.
#[derive(Debug, Clone, PartialEq, PartialOrd, Serialize)]
#[must_use = "requests do nothing unless sent"]
pub struct KickChatMember {
    chat_id: ChatRef,
    user_id: UserId,
}

impl Request for KickChatMember {
    type Type = JsonRequestType<Self>;
    type Response = JsonTrueToUnitResponse;

    fn serialize(&self) -> Result<HttpRequest, Error> {
        Self::Type::serialize(RequestUrl::method("kickChatMember"), self)
    }
}

impl KickChatMember {
    pub fn new<C, U>(chat: C, user: U) -> Self
    where
        C: ToChatRef,
        U: ToUserId,
    {
        KickChatMember {
            chat_id: chat.to_chat_ref(),
            user_id: user.to_user_id(),
        }
    }
}

/// Kick a user from a group or a supergroup.
pub trait CanKickChatMemberForChat {
    fn kick<O>(&self, other: O) -> KickChatMember
    where
        O: ToUserId;
}

impl<C> CanKickChatMemberForChat for C
where
    C: ToChatRef,
{
    fn kick<O>(&self, other: O) -> KickChatMember
    where
        O: ToUserId,
    {
        KickChatMember::new(self, other)
    }
}

/// Kick a user from a group or a supergroup.
pub trait CanKickChatMemberForUser {
    fn kick_from<O>(&self, other: O) -> KickChatMember
    where
        O: ToChatRef;
}

impl<U> CanKickChatMemberForUser for U
where
    U: ToUserId,
{
    fn kick_from<O>(&self, other: O) -> KickChatMember
    where
        O: ToChatRef,
    {
        KickChatMember::new(other, self)
    }
}