Skip to content

Commit 507f15a

Browse files
authored
Merge pull request #315 from http-rs/header-trait
Implement the `Header` trait
2 parents bf5ace6 + 338508d commit 507f15a

33 files changed

+340
-11
lines changed

src/auth/authorization.rs

+12-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use crate::auth::AuthenticationScheme;
22
use crate::bail_status as bail;
3-
use crate::headers::{HeaderName, HeaderValue, Headers, AUTHORIZATION};
3+
use crate::headers::{Header, HeaderName, HeaderValue, Headers, AUTHORIZATION};
44

55
/// Credentials to authenticate a user agent with a server.
66
///
@@ -78,7 +78,7 @@ impl Authorization {
7878

7979
/// Get the `HeaderName`.
8080
pub fn name(&self) -> HeaderName {
81-
AUTHORIZATION
81+
self.header_name()
8282
}
8383

8484
/// Get the `HeaderValue`.
@@ -110,6 +110,16 @@ impl Authorization {
110110
}
111111
}
112112

113+
impl Header for Authorization {
114+
fn header_name(&self) -> HeaderName {
115+
AUTHORIZATION
116+
}
117+
118+
fn header_value(&self) -> HeaderValue {
119+
self.value()
120+
}
121+
}
122+
113123
#[cfg(test)]
114124
mod test {
115125
use super::*;

src/auth/basic_auth.rs

+10
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,16 @@ impl BasicAuth {
113113
}
114114
}
115115

116+
impl crate::headers::Header for BasicAuth {
117+
fn header_name(&self) -> HeaderName {
118+
AUTHORIZATION
119+
}
120+
121+
fn header_value(&self) -> HeaderValue {
122+
self.value()
123+
}
124+
}
125+
116126
#[cfg(test)]
117127
mod test {
118128
use super::*;

src/auth/www_authenticate.rs

+10
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,16 @@ impl WwwAuthenticate {
132132
}
133133
}
134134

135+
impl crate::headers::Header for WwwAuthenticate {
136+
fn header_name(&self) -> HeaderName {
137+
WWW_AUTHENTICATE
138+
}
139+
140+
fn header_value(&self) -> HeaderValue {
141+
self.value()
142+
}
143+
}
144+
135145
#[cfg(test)]
136146
mod test {
137147
use super::*;

src/cache/age.rs

+10
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,16 @@ impl ToHeaderValues for Age {
9595
}
9696
}
9797

98+
impl crate::headers::Header for Age {
99+
fn header_name(&self) -> HeaderName {
100+
AGE
101+
}
102+
103+
fn header_value(&self) -> HeaderValue {
104+
self.value()
105+
}
106+
}
107+
98108
#[cfg(test)]
99109
mod test {
100110
use super::*;

src/cache/cache_control/cache_control.rs

+9
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,15 @@ impl CacheControl {
104104
}
105105
}
106106

107+
impl crate::headers::Header for CacheControl {
108+
fn header_name(&self) -> HeaderName {
109+
CACHE_CONTROL
110+
}
111+
fn header_value(&self) -> HeaderValue {
112+
self.value()
113+
}
114+
}
115+
107116
impl IntoIterator for CacheControl {
108117
type Item = CacheDirective;
109118
type IntoIter = IntoIter;

src/cache/clear_site_data/mod.rs

+9
Original file line numberDiff line numberDiff line change
@@ -249,6 +249,15 @@ impl Debug for ClearSiteData {
249249
}
250250
}
251251

252+
impl crate::headers::Header for ClearSiteData {
253+
fn header_name(&self) -> HeaderName {
254+
CLEAR_SITE_DATA
255+
}
256+
fn header_value(&self) -> HeaderValue {
257+
self.value()
258+
}
259+
}
260+
252261
#[cfg(test)]
253262
mod test {
254263
use crate::cache::{ClearDirective, ClearSiteData};

src/cache/expires.rs

+9
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,15 @@ impl Expires {
9090
}
9191
}
9292

93+
impl crate::headers::Header for Expires {
94+
fn header_name(&self) -> HeaderName {
95+
EXPIRES
96+
}
97+
fn header_value(&self) -> HeaderValue {
98+
self.value()
99+
}
100+
}
101+
93102
impl ToHeaderValues for Expires {
94103
type Iter = option::IntoIter<HeaderValue>;
95104
fn to_header_values(&self) -> crate::Result<Self::Iter> {

src/conditional/etag.rs

+9
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,15 @@ impl ETag {
130130
}
131131
}
132132

133+
impl crate::headers::Header for ETag {
134+
fn header_name(&self) -> HeaderName {
135+
ETAG
136+
}
137+
fn header_value(&self) -> HeaderValue {
138+
self.value()
139+
}
140+
}
141+
133142
impl Display for ETag {
134143
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
135144
match self {

src/conditional/if_match.rs

+9
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,15 @@ impl IfMatch {
134134
}
135135
}
136136

137+
impl crate::headers::Header for IfMatch {
138+
fn header_name(&self) -> HeaderName {
139+
IF_MATCH
140+
}
141+
fn header_value(&self) -> HeaderValue {
142+
self.value()
143+
}
144+
}
145+
137146
impl IntoIterator for IfMatch {
138147
type Item = ETag;
139148
type IntoIter = IntoIter;

src/conditional/if_modified_since.rs

+9
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,15 @@ impl ToHeaderValues for IfModifiedSince {
9393
}
9494
}
9595

96+
impl crate::headers::Header for IfModifiedSince {
97+
fn header_name(&self) -> HeaderName {
98+
IF_MODIFIED_SINCE
99+
}
100+
fn header_value(&self) -> HeaderValue {
101+
self.value()
102+
}
103+
}
104+
96105
#[cfg(test)]
97106
mod test {
98107
use super::*;

src/conditional/if_none_match.rs

+9
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,15 @@ impl IfNoneMatch {
140140
}
141141
}
142142

143+
impl crate::headers::Header for IfNoneMatch {
144+
fn header_name(&self) -> HeaderName {
145+
IF_NONE_MATCH
146+
}
147+
fn header_value(&self) -> HeaderValue {
148+
self.value()
149+
}
150+
}
151+
143152
impl IntoIterator for IfNoneMatch {
144153
type Item = ETag;
145154
type IntoIter = IntoIter;

src/conditional/if_unmodified_since.rs

+9
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,15 @@ impl IfUnmodifiedSince {
8585
}
8686
}
8787

88+
impl crate::headers::Header for IfUnmodifiedSince {
89+
fn header_name(&self) -> HeaderName {
90+
IF_UNMODIFIED_SINCE
91+
}
92+
fn header_value(&self) -> HeaderValue {
93+
self.value()
94+
}
95+
}
96+
8897
impl ToHeaderValues for IfUnmodifiedSince {
8998
type Iter = option::IntoIter<HeaderValue>;
9099
fn to_header_values(&self) -> crate::Result<Self::Iter> {

src/conditional/last_modified.rs

+9
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,15 @@ impl LastModified {
8484
}
8585
}
8686

87+
impl crate::headers::Header for LastModified {
88+
fn header_name(&self) -> HeaderName {
89+
LAST_MODIFIED
90+
}
91+
fn header_value(&self) -> HeaderValue {
92+
self.value()
93+
}
94+
}
95+
8796
impl ToHeaderValues for LastModified {
8897
type Iter = option::IntoIter<HeaderValue>;
8998
fn to_header_values(&self) -> crate::Result<Self::Iter> {

src/conditional/vary.rs

+9
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,15 @@ impl Vary {
140140
}
141141
}
142142

143+
impl crate::headers::Header for Vary {
144+
fn header_name(&self) -> HeaderName {
145+
VARY
146+
}
147+
fn header_value(&self) -> HeaderValue {
148+
self.value()
149+
}
150+
}
151+
143152
impl IntoIterator for Vary {
144153
type Item = HeaderName;
145154
type IntoIter = IntoIter;

src/content/accept.rs

+9
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,15 @@ impl Accept {
190190
}
191191
}
192192

193+
impl crate::headers::Header for Accept {
194+
fn header_name(&self) -> HeaderName {
195+
ACCEPT
196+
}
197+
fn header_value(&self) -> HeaderValue {
198+
self.value()
199+
}
200+
}
201+
193202
impl IntoIterator for Accept {
194203
type Item = MediaTypeProposal;
195204
type IntoIter = IntoIter;

src/content/accept_encoding.rs

+9
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,15 @@ impl AcceptEncoding {
182182
}
183183
}
184184

185+
impl crate::headers::Header for AcceptEncoding {
186+
fn header_name(&self) -> HeaderName {
187+
ACCEPT_ENCODING
188+
}
189+
fn header_value(&self) -> HeaderValue {
190+
self.value()
191+
}
192+
}
193+
185194
impl IntoIterator for AcceptEncoding {
186195
type Item = EncodingProposal;
187196
type IntoIter = IntoIter;

src/content/content_encoding.rs

+9
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,15 @@ impl ContentEncoding {
8080
}
8181
}
8282

83+
impl crate::headers::Header for ContentEncoding {
84+
fn header_name(&self) -> HeaderName {
85+
CONTENT_ENCODING
86+
}
87+
fn header_value(&self) -> HeaderValue {
88+
self.value()
89+
}
90+
}
91+
8392
impl ToHeaderValues for ContentEncoding {
8493
type Iter = option::IntoIter<HeaderValue>;
8594
fn to_header_values(&self) -> crate::Result<Self::Iter> {

src/content/content_length.rs

+9
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,15 @@ impl ContentLength {
8080
}
8181
}
8282

83+
impl crate::headers::Header for ContentLength {
84+
fn header_name(&self) -> HeaderName {
85+
CONTENT_LENGTH
86+
}
87+
fn header_value(&self) -> HeaderValue {
88+
self.value()
89+
}
90+
}
91+
8392
#[cfg(test)]
8493
mod test {
8594
use super::*;

src/content/content_location.rs

+9
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,15 @@ impl ContentLocation {
9999
}
100100
}
101101

102+
impl crate::headers::Header for ContentLocation {
103+
fn header_name(&self) -> HeaderName {
104+
CONTENT_LOCATION
105+
}
106+
fn header_value(&self) -> HeaderValue {
107+
self.value()
108+
}
109+
}
110+
102111
#[cfg(test)]
103112
mod test {
104113
use super::*;

src/content/content_type.rs

+9
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,15 @@ impl ContentType {
9292
}
9393
}
9494

95+
impl crate::headers::Header for ContentType {
96+
fn header_name(&self) -> HeaderName {
97+
CONTENT_TYPE
98+
}
99+
fn header_value(&self) -> HeaderValue {
100+
self.value()
101+
}
102+
}
103+
95104
impl PartialEq<Mime> for ContentType {
96105
fn eq(&self, other: &Mime) -> bool {
97106
&self.media_type == other

src/headers/header.rs

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
use crate::headers::{HeaderName, HeaderValue, Headers};
2+
3+
/// A trait representing a [`HeaderName`] and [`HeaderValue`] pair.
4+
pub trait Header {
5+
/// Access the header's name.
6+
fn header_name(&self) -> HeaderName;
7+
8+
/// Access the header's value.
9+
fn header_value(&self) -> HeaderValue;
10+
11+
/// Insert the header name and header value into something that looks like a
12+
/// [`Headers`] map.
13+
fn apply_header<H: AsMut<Headers>>(&self, mut headers: H) {
14+
let name = self.header_name();
15+
let value = self.header_value();
16+
headers.as_mut().insert(name, value);
17+
}
18+
}
19+
20+
impl<'a, 'b> Header for (&'a str, &'b str) {
21+
fn header_name(&self) -> HeaderName {
22+
HeaderName::from(self.0)
23+
}
24+
25+
fn header_value(&self) -> HeaderValue {
26+
HeaderValue::from_bytes(self.1.to_owned().into_bytes())
27+
.expect("String slice should be valid ASCII")
28+
}
29+
}
30+
31+
#[cfg(test)]
32+
mod test {
33+
use super::*;
34+
35+
#[test]
36+
fn header_from_strings() {
37+
let strings = ("Content-Length", "12");
38+
assert_eq!(strings.header_name(), "Content-Length");
39+
assert_eq!(strings.header_value(), "12");
40+
}
41+
}

src/headers/mod.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
//! HTTP headers.
22
33
mod constants;
4+
mod header;
45
mod header_name;
56
mod header_value;
67
mod header_values;
@@ -14,6 +15,7 @@ mod to_header_values;
1415
mod values;
1516

1617
pub use constants::*;
18+
pub use header::Header;
1719
pub use header_name::HeaderName;
1820
pub use header_value::HeaderValue;
1921
pub use header_values::HeaderValues;

0 commit comments

Comments
 (0)