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
use crate::headers::{HeaderName, HeaderValue, Headers, CONTENT_LENGTH};
use crate::Status;

/// The size of the entity-body, in bytes, sent to the recipient.
///
/// # Specifications
///
/// - [RFC 7230, section 3.3.2: Content-Length](https://tools.ietf.org/html/rfc7230#section-3.3.2)
///
/// # Examples
///
/// ```
/// # fn main() -> http_types::Result<()> {
/// #
/// use http_types::Response;
/// use http_types::content::{ContentLength};
///
/// let content_len = ContentLength::new(12);
///
/// let mut res = Response::new(200);
/// content_len.apply(&mut res);
///
/// let content_len = ContentLength::from_headers(res)?.unwrap();
/// assert_eq!(content_len.len(), 12);
/// #
/// # Ok(()) }
/// ```
#[derive(Debug)]
pub struct ContentLength {
    length: u64,
}

#[allow(clippy::len_without_is_empty)]
impl ContentLength {
    /// Create a new instance.
    pub fn new(length: u64) -> Self {
        Self { length }
    }

    /// Create a new instance from headers.
    pub fn from_headers(headers: impl AsRef<Headers>) -> crate::Result<Option<Self>> {
        let headers = match headers.as_ref().get(CONTENT_LENGTH) {
            Some(headers) => headers,
            None => return Ok(None),
        };

        // If we successfully parsed the header then there's always at least one
        // entry. We want the last entry.
        let value = headers.iter().last().unwrap();
        let length = value.as_str().trim().parse().status(400)?;
        Ok(Some(Self { length }))
    }

    /// Sets the header.
    pub fn apply(&self, mut headers: impl AsMut<Headers>) {
        headers.as_mut().insert(self.name(), self.value());
    }

    /// Get the `HeaderName`.
    pub fn name(&self) -> HeaderName {
        CONTENT_LENGTH
    }

    /// Get the `HeaderValue`.
    pub fn value(&self) -> HeaderValue {
        let output = format!("{}", self.length);

        // SAFETY: the internal string is validated to be ASCII.
        unsafe { HeaderValue::from_bytes_unchecked(output.into()) }
    }

    /// Get the content length.
    pub fn len(&self) -> u64 {
        self.length
    }

    /// Set the content length.
    pub fn set_len(&mut self, len: u64) {
        self.length = len;
    }
}

#[cfg(test)]
mod test {
    use super::*;
    use crate::headers::Headers;

    #[test]
    fn smoke() -> crate::Result<()> {
        let content_len = ContentLength::new(12);

        let mut headers = Headers::new();
        content_len.apply(&mut headers);

        let content_len = ContentLength::from_headers(headers)?.unwrap();
        assert_eq!(content_len.len(), 12);
        Ok(())
    }

    #[test]
    fn bad_request_on_parse_error() -> crate::Result<()> {
        let mut headers = Headers::new();
        headers.insert(CONTENT_LENGTH, "<nori ate the tag. yum.>");
        let err = ContentLength::from_headers(headers).unwrap_err();
        assert_eq!(err.status(), 400);
        Ok(())
    }
}