|
| 1 | +use std::convert::TryInto; |
| 2 | +use {Header, HeaderValue}; |
| 3 | + |
| 4 | +/// `Content-MD5` header, defined in |
| 5 | +/// [RFC1864](https://datatracker.ietf.org/doc/html/rfc1864) |
| 6 | +/// |
| 7 | +/// ## ABNF |
| 8 | +/// |
| 9 | +/// ```text |
| 10 | +/// Content-Length = 1*DIGIT |
| 11 | +/// ``` |
| 12 | +/// |
| 13 | +/// ## Example values |
| 14 | +/// |
| 15 | +/// * `Q2hlY2sgSW50ZWdyaXR5IQ==` |
| 16 | +/// |
| 17 | +/// # Example |
| 18 | +/// |
| 19 | +/// ``` |
| 20 | +/// # extern crate headers; |
| 21 | +/// # extern crate http; |
| 22 | +/// # extern crate headers_core; |
| 23 | +/// use http::HeaderValue; |
| 24 | +/// use headers::ContentMd5; |
| 25 | +/// use headers_core::Header; |
| 26 | +/// |
| 27 | +/// let value = HeaderValue::from_static("Q2hlY2sgSW50ZWdyaXR5IQ=="); |
| 28 | +/// |
| 29 | +/// let md5 = ContentMd5::decode(&mut [value].into_iter()).unwrap(); |
| 30 | +/// assert_eq!(md5.0, "Check Integrity!".as_bytes()) |
| 31 | +/// ``` |
| 32 | +#[derive(Clone, Copy, Debug, PartialEq)] |
| 33 | +pub struct ContentMd5(pub [u8; 16]); |
| 34 | + |
| 35 | +static CONTENT_MD5: ::http::header::HeaderName = |
| 36 | + ::http::header::HeaderName::from_static("content-md5"); |
| 37 | + |
| 38 | +impl Header for ContentMd5 { |
| 39 | + fn name() -> &'static ::http::header::HeaderName { |
| 40 | + &CONTENT_MD5 |
| 41 | + } |
| 42 | + |
| 43 | + fn decode<'i, I: Iterator<Item = &'i HeaderValue>>(values: &mut I) -> Result<Self, ::Error> { |
| 44 | + let value = values.next().ok_or_else(::Error::invalid)?; |
| 45 | + |
| 46 | + // Ensure base64 encoded length fits the expected MD5 digest length. |
| 47 | + if value.len() < 22 || value.len() > 24 { |
| 48 | + return Err(::Error::invalid()); |
| 49 | + } |
| 50 | + |
| 51 | + let value = value.to_str().map_err(|_| ::Error::invalid())?; |
| 52 | + let vec = base64::decode(value).map_err(|_| ::Error::invalid())?; |
| 53 | + Ok(Self(vec[..16].try_into().map_err(|_| ::Error::invalid())?)) |
| 54 | + } |
| 55 | + |
| 56 | + fn encode<E: Extend<::HeaderValue>>(&self, values: &mut E) { |
| 57 | + let encoded = base64::encode(self.0); |
| 58 | + if let Ok(value) = HeaderValue::from_str(&encoded) { |
| 59 | + values.extend(std::iter::once(value)); |
| 60 | + } |
| 61 | + } |
| 62 | +} |
0 commit comments