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

/// Use this method to unban a previously kicked user in a supergroup or channel.
/// The user will not return to the group or channel automatically, but will be able to
/// join via link, etc. 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 UnbanChatMember {
    chat_id: ChatRef,
    user_id: UserId,
}

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

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

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

/// Unban a previously kicked user in a supergroup or channel.
pub trait CanUnbanChatMemberForChat {
    fn unban<O>(&self, other: O) -> UnbanChatMember
    where
        O: ToUserId;
}

impl<C> CanUnbanChatMemberForChat for C
where
    C: ToChatRef,
{
    fn unban<O>(&self, other: O) -> UnbanChatMember
    where
        O: ToUserId,
    {
        UnbanChatMember::new(self, other)
    }
}

/// Unban a previously kicked user in a supergroup or channel.
pub trait CanUnbanChatMemberForUser {
    fn unban_in<O>(&self, other: O) -> UnbanChatMember
    where
        O: ToChatRef;
}

impl<U> CanUnbanChatMemberForUser for U
where
    U: ToUserId,
{
    fn unban_in<O>(&self, other: O) -> UnbanChatMember
    where
        O: ToChatRef,
    {
        UnbanChatMember::new(other, self)
    }
}