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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
use compio::bytes::Bytes;
#[cfg(feature = "cookies")]
use cookie_store::RawCookie;
use encoding_rs::{Encoding, UTF_8};
use http::{HeaderMap, StatusCode, Version, header::CONTENT_TYPE};
use http_body_util::BodyExt;
use hyper::body::{Body, Incoming};
use mime::Mime;
use url::Url;
use crate::{ResponseBody, Result};
/// A Response to a submitted `Request`.
#[derive(Debug)]
pub struct Response {
pub(super) res: hyper::Response<()>,
pub(crate) body: ResponseBody,
url: Url,
}
impl Response {
pub(super) fn new(res: hyper::Response<Incoming>, url: Url) -> Self {
let (res, body) = res.into_parts();
let res = hyper::Response::from_parts(res, ());
Self {
res,
body: ResponseBody::Incoming(body),
url,
}
}
#[cfg(feature = "http3")]
pub(crate) fn with_body(res: hyper::Response<()>, body: Bytes, url: Url) -> Self {
Self {
res,
body: ResponseBody::Blob(body),
url,
}
}
/// Get the `StatusCode` of this `Response`.
#[inline]
pub fn status(&self) -> StatusCode {
self.res.status()
}
/// Get the HTTP `Version` of this `Response`.
#[inline]
pub fn version(&self) -> Version {
self.res.version()
}
/// Get the `Headers` of this `Response`.
#[inline]
pub fn headers(&self) -> &HeaderMap {
self.res.headers()
}
/// Get a mutable reference to the `Headers` of this `Response`.
#[inline]
pub fn headers_mut(&mut self) -> &mut HeaderMap {
self.res.headers_mut()
}
/// Get the content-length of this response, if known.
///
/// Reasons it may not be known:
///
/// - The server didn't send a `content-length` header.
/// - The response is compressed and automatically decoded (thus changing
/// the actual decoded length).
pub fn content_length(&self) -> Option<u64> {
self.body.size_hint().exact()
}
/// Get the final `Url` of this `Response`.
#[inline]
pub fn url(&self) -> &Url {
&self.url
}
/// Returns a reference to the associated extensions.
pub fn extensions(&self) -> &http::Extensions {
self.res.extensions()
}
/// Returns a mutable reference to the associated extensions.
pub fn extensions_mut(&mut self) -> &mut http::Extensions {
self.res.extensions_mut()
}
// body methods
/// Get the full response text.
///
/// This method decodes the response body with BOM sniffing
/// and with malformed sequences replaced with the REPLACEMENT CHARACTER.
/// Encoding is determined from the `charset` parameter of `Content-Type`
/// header, and defaults to `utf-8` if not presented.
///
/// Note that the BOM is stripped from the returned String.
///
/// # Example
///
/// ```
/// # async fn run() -> Result<(), Box<dyn std::error::Error>> {
/// let client = cyper::Client::new();
/// let content = client
/// .get("http://httpbin.org/range/26")?
/// .send()
/// .await?
/// .text()
/// .await?;
///
/// println!("text: {:?}", content);
/// # Ok(())
/// # }
/// ```
pub async fn text(self) -> Result<String> {
self.text_with_charset("utf-8").await
}
/// Get the full response text given a specific encoding.
///
/// This method decodes the response body with BOM sniffing
/// and with malformed sequences replaced with the REPLACEMENT CHARACTER.
/// You can provide a default encoding for decoding the raw message, while
/// the `charset` parameter of `Content-Type` header is still
/// prioritized. For more information about the possible encoding name,
/// please go to [`encoding_rs`] docs.
///
/// Note that the BOM is stripped from the returned String.
///
/// [`encoding_rs`]: https://docs.rs/encoding_rs/0.8/encoding_rs/#relationship-with-windows-code-pages
///
/// # Example
///
/// ```
/// # async fn run() -> Result<(), Box<dyn std::error::Error>> {
/// let client = cyper::Client::new();
/// let content = client
/// .get("http://httpbin.org/range/26")?
/// .send()
/// .await?
/// .text_with_charset("utf-8")
/// .await?;
///
/// println!("text: {:?}", content);
/// # Ok(())
/// # }
/// ```
pub async fn text_with_charset(self, default_encoding: &str) -> Result<String> {
let content_type = self
.headers()
.get(CONTENT_TYPE)
.and_then(|value| value.to_str().ok())
.and_then(|value| value.parse::<Mime>().ok());
let encoding_name = content_type
.as_ref()
.and_then(|mime| mime.get_param("charset").map(|charset| charset.as_str()))
.unwrap_or(default_encoding);
let encoding = Encoding::for_label(encoding_name.as_bytes()).unwrap_or(UTF_8);
let full = self.bytes().await?;
let (text, ..) = encoding.decode(&full);
Ok(text.into_owned())
}
/// Try to deserialize the response body as JSON.
///
/// # Optional
///
/// This requires the optional `json` feature enabled.
///
/// # Examples
///
/// ```
/// # extern crate cyper_core;
/// # extern crate serde;
/// #
/// # use cyper::Error;
/// # use serde::Deserialize;
/// #
/// // This `derive` requires the `serde` dependency.
/// #[derive(Deserialize)]
/// struct Ip {
/// origin: String,
/// }
///
/// # async fn run() -> Result<(), Error> {
/// let client = cyper::Client::new();
/// let ip = client
/// .get("http://httpbin.org/ip")?
/// .send()
/// .await?
/// .json::<Ip>()
/// .await?;
///
/// println!("ip: {}", ip.origin);
/// # Ok(())
/// # }
/// #
/// # fn main() { }
/// ```
///
/// # Errors
///
/// This method fails whenever the response body is not in JSON format
/// or it cannot be properly deserialized to target type `T`. For more
/// details please see [`serde_json::from_reader`].
///
/// [`serde_json::from_reader`]: https://docs.serde.rs/serde_json/fn.from_reader.html
#[cfg(feature = "json")]
pub async fn json<T: serde::de::DeserializeOwned>(self) -> Result<T> {
let full = self.bytes().await?;
Ok(serde_json::from_slice(&full)?)
}
/// Retrieve the cookies contained in the response.
///
/// Note that invalid 'Set-Cookie' headers will be ignored.
#[cfg(feature = "cookies")]
pub fn cookies(&self) -> impl Iterator<Item = RawCookie<'_>> {
self.res
.headers()
.get_all(http::header::SET_COOKIE)
.into_iter()
.filter_map(|val| std::str::from_utf8(val.as_bytes()).ok()?.parse().ok())
}
/// Get the full response body as `Bytes`.
///
/// # Example
///
/// ```
/// # async fn run() -> Result<(), Box<dyn std::error::Error>> {
/// let client = cyper::Client::new();
/// let bytes = client
/// .get("http://httpbin.org/ip")?
/// .send()
/// .await?
/// .bytes()
/// .await?;
///
/// println!("bytes: {:?}", bytes);
/// # Ok(())
/// # }
/// ```
pub async fn bytes(self) -> Result<Bytes> {
Ok(self.body.collect().await?.to_bytes())
}
/// Convert the response into a [`futures_util::Stream`] of [`Bytes`]
///
/// # Example
///
/// ```
/// use futures_util::StreamExt;
///
/// # async fn run() -> cyper::Result<()> {
/// let client = cyper::Client::new();
/// let mut bytes_stream = client
/// .get("http://httpbin.org/stream-bytes/16777216")?
/// .send()
/// .await?
/// .bytes_stream();
///
/// while let Some(bytes) = bytes_stream.next().await {
/// let bytes = bytes?;
/// println!("Collected {} bytes!", bytes.len());
/// }
///
/// # Ok(())
/// # }
/// ```
#[inline]
#[cfg(feature = "stream")]
pub fn bytes_stream(self) -> impl futures_util::Stream<Item = Result<Bytes>> {
self.body
}
}
#[cfg(feature = "stream")]
impl futures_util::Stream for Response {
type Item = Result<Bytes>;
fn poll_next(
mut self: std::pin::Pin<&mut Self>,
cx: &mut std::task::Context<'_>,
) -> std::task::Poll<Option<Self::Item>> {
std::pin::Pin::new(&mut self.body).poll_next(cx)
}
}