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
use crate::error::{self, Error};
use std::convert::TryFrom;
pub trait ApiResponse<B>: Sized + TryFrom<http::Response<B>, Error = Error>
where
B: AsRef<[u8]>,
{
fn try_from_parts(resp: http::response::Response<B>) -> Result<Self, Error> {
if resp.status().is_success() {
Self::try_from(resp)
} else {
if let Some(ct) = resp
.headers()
.get(http::header::CONTENT_TYPE)
.and_then(|ct| ct.to_str().ok())
{
if ct.starts_with("application/json") {
if let Ok(api_err) =
serde_json::from_slice::<error::ApiError>(resp.body().as_ref())
{
return Err(Error::API(api_err));
}
}
}
Err(Error::from(resp.status()))
}
}
}
pub struct Response<T> {
body: bytes::BytesMut,
parts: http::response::Builder,
content_len: usize,
_response: std::marker::PhantomData<fn() -> T>,
}
impl<T> Response<T>
where
T: ApiResponse<bytes::Bytes>,
{
pub fn new(parts: http::response::Builder) -> Self {
let body = match parts
.headers_ref()
.and_then(|hm| crate::util::get_content_length(hm))
{
Some(u) => bytes::BytesMut::with_capacity(u),
None => bytes::BytesMut::new(),
};
let content_len = body.capacity();
Self {
body,
parts,
content_len,
_response: Default::default(),
}
}
pub fn get_response(mut self) -> Result<http::Response<bytes::Bytes>, Error> {
if self.body.len() >= self.content_len {
let buf = self.body.split_to(self.content_len);
let response = self.parts.body(buf.freeze())?;
Ok(response)
} else {
Err(Error::InsufficientData)
}
}
pub fn parse(self) -> Result<T, Error> {
let response = self.get_response()?;
T::try_from_parts(response)
}
}
impl<T> std::io::Write for Response<T> {
fn write(&mut self, buf: &[u8]) -> std::io::Result<usize> {
self.body.extend_from_slice(buf);
Ok(buf.len())
}
fn flush(&mut self) -> std::io::Result<()> {
Ok(())
}
}