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
use crate::Error;
use async_trait::async_trait;
use futures::StreamExt;

#[async_trait]
pub trait ResponseContent
where
    Self::Data: Send + 'static + Unpin,
{
    type Data;

    async fn convert_response(
        response: hyper::Response<hyper::Body>,
    ) -> Result<http::Response<Self::Data>, Error>;
}

pub trait RequestContent
where
    Self::Data: Send + 'static + Unpin,
{
    type Data;

    fn apply_headers(&self, headers: &mut http::HeaderMap);

    fn into_body(self) -> Result<hyper::Body, Error>;
}

pub struct Empty;

#[async_trait]
impl ResponseContent for Empty {
    type Data = ();

    async fn convert_response(
        response: hyper::Response<hyper::Body>,
    ) -> Result<http::Response<Self::Data>, Error> {
        let (parts, _) = response.into_parts();

        Ok(http::Response::from_parts(parts, ()))
    }
}

impl RequestContent for Empty {
    type Data = ();

    fn into_body(self) -> Result<hyper::Body, Error> {
        Ok(hyper::Body::empty())
    }

    fn apply_headers(&self, headers: &mut http::HeaderMap) {
        if !headers.append("Content-Length", http::HeaderValue::from_static("0")) {
            log::warn!("Failed to add Content-Length header for Empty body");
        }
    }
}

pub struct Json<T>(pub T);

#[async_trait]
impl<T> ResponseContent for Json<T>
where
    T: serde::de::DeserializeOwned + Send + 'static + Unpin,
{
    type Data = T;

    async fn convert_response(
        response: hyper::Response<hyper::Body>,
    ) -> Result<http::Response<Self::Data>, Error> {
        let (parts, mut body_stream) = response.into_parts();
        let mut body = bytes::BytesMut::default();

        while let Some(res) = body_stream.next().await {
            let bs = res?;
            body.extend(bs);
        }
        let received_status = parts.status;

        if received_status.as_u16() / 100 != 2 {
            return Err(Error::non_2xx(received_status, &body));
        }

        serde_json::from_slice(&body)
            .map_err(|err| Error::deserialization(err, &body))
            .map(move |body: T| http::Response::from_parts(parts, body))
    }
}

impl<T> RequestContent for Json<T>
where
    T: serde::Serialize + 'static + Send + Unpin,
{
    type Data = T;

    fn apply_headers(&self, headers: &mut http::HeaderMap) {
        if !headers.append(
            "Content-Type",
            http::HeaderValue::from_static("application/json"),
        ) {
            log::warn!("Failed to add Content-Type header for Json body");
        }
    }

    fn into_body(self) -> Result<hyper::Body, Error> {
        serde_json::to_vec(&self.0)
            .map_err(Error::Serialization)
            .map(|bs| {
                log::debug!(
                    "Sending body: `{}`",
                    std::str::from_utf8(&bs).unwrap_or("INVALID UTF8")
                );
                hyper::Body::from(bs)
            })
    }
}

pub struct Bytes(Vec<u8>);

#[async_trait]
impl ResponseContent for Bytes {
    type Data = Vec<u8>;

    async fn convert_response(
        response: hyper::Response<hyper::Body>,
    ) -> Result<http::Response<Self::Data>, Error> {
        let (parts, mut body_stream) = response.into_parts();
        let mut body = bytes::BytesMut::default();

        while let Some(res) = body_stream.next().await {
            let bs = res?;
            body.extend(bs);
        }
        let received_status = parts.status;

        if received_status.as_u16() / 100 != 2 {
            return Err(Error::non_2xx(received_status, &body));
        }

        Ok(http::Response::from_parts(parts, body.to_vec()))
    }
}

impl RequestContent for Bytes {
    type Data = Vec<u8>;

    fn apply_headers(&self, headers: &mut http::HeaderMap) {
        if !headers.append(
            "Content-Type",
            http::HeaderValue::from_static("application/json"),
        ) {
            log::warn!("Failed to add Content-Type header for Json body");
        }
    }

    fn into_body(self) -> Result<hyper::Body, Error> {
        Ok(hyper::Body::from(self.0))
    }
}