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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
use super::image_source::ImageSource;
use std::{
error::Error,
fmt::{Display, Formatter, Result as FmtResult},
};
use twilight_model::channel::embed::EmbedFooter;
#[derive(Clone, Debug, Eq, PartialEq)]
#[non_exhaustive]
pub enum EmbedFooterTextError {
Empty {
text: String,
},
TooLong {
text: String,
},
}
impl Display for EmbedFooterTextError {
fn fmt(&self, f: &mut Formatter<'_>) -> FmtResult {
match self {
Self::Empty { .. } => f.write_str("the footer text is empty"),
Self::TooLong { .. } => f.write_str("the footer text is too long"),
}
}
}
impl Error for EmbedFooterTextError {}
#[derive(Clone, Debug, Eq, PartialEq)]
#[must_use = "must be built into an embed footer"]
pub struct EmbedFooterBuilder(EmbedFooter);
impl EmbedFooterBuilder {
pub const TEXT_LENGTH_LIMIT: usize = 2048;
pub fn new(text: impl Into<String>) -> Result<Self, EmbedFooterTextError> {
Self::_new(text.into())
}
fn _new(text: String) -> Result<Self, EmbedFooterTextError> {
if text.is_empty() {
return Err(EmbedFooterTextError::Empty { text });
}
if text.chars().count() > Self::TEXT_LENGTH_LIMIT {
return Err(EmbedFooterTextError::TooLong { text });
}
Ok(Self(EmbedFooter {
icon_url: None,
proxy_icon_url: None,
text,
}))
}
#[must_use = "should be used as part of an embed builder"]
pub fn build(self) -> EmbedFooter {
self.0
}
pub fn icon_url(mut self, image_source: ImageSource) -> Self {
self.0.icon_url.replace(image_source.0);
self
}
}
impl From<EmbedFooterBuilder> for EmbedFooter {
fn from(builder: EmbedFooterBuilder) -> Self {
builder.build()
}
}
#[cfg(test)]
mod tests {
use super::{EmbedFooterBuilder, EmbedFooterTextError};
use crate::ImageSource;
use static_assertions::{assert_fields, assert_impl_all, const_assert};
use std::{error::Error, fmt::Debug};
use twilight_model::channel::embed::EmbedFooter;
assert_impl_all!(
EmbedFooterTextError: Clone,
Debug,
Error,
Eq,
PartialEq,
Send,
Sync
);
assert_fields!(EmbedFooterTextError::Empty: text);
assert_fields!(EmbedFooterTextError::TooLong: text);
assert_impl_all!(EmbedFooterBuilder: Clone, Debug, Eq, PartialEq, Send, Sync);
const_assert!(EmbedFooterBuilder::TEXT_LENGTH_LIMIT == 2048);
assert_impl_all!(EmbedFooter: From<EmbedFooterBuilder>);
#[test]
fn test_text() -> Result<(), Box<dyn Error>> {
assert!(matches!(
EmbedFooterBuilder::new("").unwrap_err(),
EmbedFooterTextError::Empty { text }
if text.is_empty()
));
let too_long_len = EmbedFooterBuilder::TEXT_LENGTH_LIMIT + 1;
assert!(matches!(
EmbedFooterBuilder::new("a".repeat(too_long_len)).unwrap_err(),
EmbedFooterTextError::TooLong { text }
if text.len() == too_long_len
));
let expected = EmbedFooter {
icon_url: None,
proxy_icon_url: None,
text: "a footer".to_owned(),
};
let actual = EmbedFooterBuilder::new("a footer")?.build();
assert_eq!(actual, expected);
Ok(())
}
#[test]
fn test_builder() -> Result<(), Box<dyn Error>> {
let expected = EmbedFooter {
icon_url: Some("https://example.com/1.png".to_owned()),
proxy_icon_url: None,
text: "a footer".to_owned(),
};
let image = ImageSource::url("https://example.com/1.png")?;
let actual = EmbedFooterBuilder::new("a footer")?.icon_url(image).build();
assert_eq!(actual, expected);
Ok(())
}
}