-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathaccept.rs
More file actions
233 lines (214 loc) · 6.34 KB
/
accept.rs
File metadata and controls
233 lines (214 loc) · 6.34 KB
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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
use std::iter::FromIterator;
use mime::{self, Mime};
use {util::QualityValue, Header};
fn qitem(mime: Mime) -> QualityValue<Mime> {
QualityValue::new(mime, Default::default())
}
/// `Accept` header, defined in [RFC7231](http://tools.ietf.org/html/rfc7231#section-5.3.2)
///
/// The `Accept` header field can be used by user agents to specify
/// response media types that are acceptable. Accept header fields can
/// be used to indicate that the request is specifically limited to a
/// small set of desired types, as in the case of a request for an
/// in-line image
///
/// # ABNF
///
/// ```text
/// Accept = #( media-range [ accept-params ] )
///
/// media-range = ( "*/*"
/// / ( type "/" "*" )
/// / ( type "/" subtype )
/// ) *( OWS ";" OWS parameter )
/// accept-params = weight *( accept-ext )
/// accept-ext = OWS ";" OWS token [ "=" ( token / quoted-string ) ]
/// ```
///
/// # Example values
/// * `audio/*; q=0.2, audio/basic`
/// * `text/plain; q=0.5, text/html, text/x-dvi; q=0.8, text/x-c`
///
/// # Examples
/// ```
/// # extern crate headers;
/// extern crate mime;
/// extern crate http;
/// use std::iter::FromIterator;
/// use headers::{Accept, QualityValue, HeaderMapExt};
///
/// let mut headers = http::HeaderMap::new();
///
/// headers.typed_insert(
/// Accept::from_iter(vec![
/// QualityValue::new(mime::TEXT_HTML, Default::default()),
/// ])
/// );
/// ```
///
/// ```
/// # extern crate headers;
/// extern crate mime;
/// use std::iter::FromIterator;
/// use headers::{Accept, QualityValue, HeaderMapExt};
///
/// let mut headers = http::HeaderMap::new();
/// headers.typed_insert(
/// Accept::from_iter(vec![
/// QualityValue::new(mime::APPLICATION_JSON, Default::default()),
/// ])
/// );
/// ```
/// ```
/// # extern crate headers;
/// extern crate mime;
/// use std::iter::FromIterator;
/// use headers::{Accept, QualityValue, HeaderMapExt};
///
/// let mut headers = http::HeaderMap::new();
///
/// headers.typed_insert(
/// Accept::from_iter(vec![
/// QualityValue::from(mime::TEXT_HTML),
/// QualityValue::from("application/xhtml+xml".parse::<mime::Mime>().unwrap()),
/// QualityValue::new(
/// mime::TEXT_XML,
/// 900.into()
/// ),
/// QualityValue::from("image/webp".parse::<mime::Mime>().unwrap()),
/// QualityValue::new(
/// mime::STAR_STAR,
/// 800.into()
/// ),
/// ])
/// );
/// ```
#[derive(Debug, PartialEq, Eq)]
pub struct Accept(Vec<QualityValue<Mime>>);
impl Header for Accept {
fn name() -> &'static ::HeaderName {
&::http::header::ACCEPT
}
fn decode<'i, I: Iterator<Item = &'i ::HeaderValue>>(values: &mut I) -> Result<Self, ::Error> {
::util::csv::from_comma_delimited(values).map(Accept)
}
fn encode<E: Extend<::HeaderValue>>(&self, values: &mut E) {
use std::fmt;
struct Format<F>(F);
impl<F> fmt::Display for Format<F>
where
F: Fn(&mut fmt::Formatter<'_>) -> fmt::Result,
{
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
(self.0)(f)
}
}
let s = format!(
"{}",
Format(
|f: &mut fmt::Formatter<'_>| ::util::csv::fmt_comma_delimited(
&mut *f,
self.0.iter()
)
)
);
values.extend(Some(::HeaderValue::from_str(&s).unwrap()))
}
}
impl FromIterator<QualityValue<Mime>> for Accept {
fn from_iter<T>(iter: T) -> Self
where
T: IntoIterator<Item = QualityValue<Mime>>,
{
Accept(iter.into_iter().collect())
}
}
impl Accept {
/// A constructor to easily create `Accept: */*`.
pub fn star() -> Accept {
Accept(vec![qitem(mime::STAR_STAR)])
}
/// A constructor to easily create `Accept: application/json`.
pub fn json() -> Accept {
Accept(vec![qitem(mime::APPLICATION_JSON)])
}
/// A constructor to easily create `Accept: text/*`.
pub fn text() -> Accept {
Accept(vec![qitem(mime::TEXT_STAR)])
}
/// A constructor to easily create `Accept: image/*`.
pub fn image() -> Accept {
Accept(vec![qitem(mime::IMAGE_STAR)])
}
/// Returns an iterator over the quality values
pub fn iter(&self) -> impl Iterator<Item = &QualityValue<Mime>> {
self.0.iter()
}
}
#[cfg(test)]
mod tests {
use super::*;
use {
http::HeaderValue,
mime::{TEXT_HTML, TEXT_PLAIN, TEXT_PLAIN_UTF_8},
};
use util::Quality;
macro_rules! test_header {
($name: ident, $input: expr, $expected: expr) => {
#[test]
fn $name() {
assert_eq!(
Accept::decode(
&mut $input
.into_iter()
.map(|s| HeaderValue::from_bytes(s).unwrap())
.collect::<Vec<_>>()
.iter()
)
.ok(),
$expected,
);
}
};
}
// Tests from the RFC
test_header!(
test1,
vec![b"audio/*; q=0.2, audio/basic"],
Some(Accept(vec![
QualityValue::new("audio/*".parse().unwrap(), Quality::from(200)),
qitem("audio/basic".parse().unwrap()),
]))
);
test_header!(
test2,
vec![b"text/plain; q=0.5, text/html, text/x-dvi; q=0.8, text/x-c"],
Some(Accept(vec![
QualityValue::new(TEXT_PLAIN, Quality::from(500)),
qitem(TEXT_HTML),
QualityValue::new("text/x-dvi".parse().unwrap(), Quality::from(800)),
qitem("text/x-c".parse().unwrap()),
]))
);
// Custom tests
test_header!(
test3,
vec![b"text/plain; charset=utf-8"],
Some(Accept(vec![qitem(TEXT_PLAIN_UTF_8),]))
);
test_header!(
test4,
vec![b"text/plain; charset=utf-8; q=0.5"],
Some(Accept(vec![QualityValue::new(
TEXT_PLAIN_UTF_8,
Quality::from(500)
),]))
);
#[test]
#[ignore]
fn test_fuzzing1() {
let raw = HeaderValue::from_static("chunk#;e");
let header = Accept::decode(&mut Some(&raw).into_iter());
assert!(header.is_ok());
}
}