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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
use crate::{
client::Client,
request::{validate_inner, Request},
response::ResponseFuture,
routing::Route,
};
use serde::Serialize;
use std::{
error::Error,
fmt::{Display, Formatter, Result as FmtResult},
};
use twilight_model::{
guild::PartialMember,
id::{GuildId, RoleId, UserId},
};
#[derive(Debug)]
pub struct AddGuildMemberError {
kind: AddGuildMemberErrorType,
}
impl AddGuildMemberError {
#[must_use = "retrieving the type has no effect if left unused"]
pub const fn kind(&self) -> &AddGuildMemberErrorType {
&self.kind
}
#[allow(clippy::unused_self)]
#[must_use = "consuming the error and retrieving the source has no effect if left unused"]
pub fn into_source(self) -> Option<Box<dyn Error + Send + Sync>> {
None
}
#[must_use = "consuming the error into its parts has no effect if left unused"]
pub fn into_parts(
self,
) -> (
AddGuildMemberErrorType,
Option<Box<dyn Error + Send + Sync>>,
) {
(self.kind, None)
}
}
impl Display for AddGuildMemberError {
fn fmt(&self, f: &mut Formatter<'_>) -> FmtResult {
match &self.kind {
AddGuildMemberErrorType::NicknameInvalid => f.write_str("nickname length is invalid"),
}
}
}
impl Error for AddGuildMemberError {}
#[derive(Debug)]
#[non_exhaustive]
pub enum AddGuildMemberErrorType {
NicknameInvalid,
}
#[derive(Serialize)]
struct AddGuildMemberFields<'a> {
pub access_token: &'a str,
#[serde(skip_serializing_if = "Option::is_none")]
pub deaf: Option<bool>,
#[serde(skip_serializing_if = "Option::is_none")]
pub mute: Option<bool>,
#[serde(skip_serializing_if = "Option::is_none")]
pub nick: Option<&'a str>,
#[serde(skip_serializing_if = "Option::is_none")]
pub roles: Option<&'a [RoleId]>,
}
#[must_use = "requests must be configured and executed"]
pub struct AddGuildMember<'a> {
fields: AddGuildMemberFields<'a>,
guild_id: GuildId,
http: &'a Client,
user_id: UserId,
}
impl<'a> AddGuildMember<'a> {
pub(crate) const fn new(
http: &'a Client,
guild_id: GuildId,
user_id: UserId,
access_token: &'a str,
) -> Self {
Self {
fields: AddGuildMemberFields {
access_token,
deaf: None,
mute: None,
nick: None,
roles: None,
},
guild_id,
http,
user_id,
}
}
pub const fn deaf(mut self, deaf: bool) -> Self {
self.fields.deaf = Some(deaf);
self
}
pub const fn mute(mut self, mute: bool) -> Self {
self.fields.mute = Some(mute);
self
}
pub fn nick(mut self, nick: &'a str) -> Result<Self, AddGuildMemberError> {
if !validate_inner::nickname(&nick) {
return Err(AddGuildMemberError {
kind: AddGuildMemberErrorType::NicknameInvalid,
});
}
self.fields.nick.replace(nick);
Ok(self)
}
pub const fn roles(mut self, roles: &'a [RoleId]) -> Self {
self.fields.roles = Some(roles);
self
}
pub fn exec(self) -> ResponseFuture<PartialMember> {
let mut request = Request::builder(&Route::AddGuildMember {
guild_id: self.guild_id.get(),
user_id: self.user_id.get(),
});
request = match request.json(&self.fields) {
Ok(request) => request,
Err(source) => return ResponseFuture::error(source),
};
self.http.request(request.build())
}
}