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 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402
use crate::http::{
self,
headers::{self, HeaderName, HeaderValues, ToHeaderValues},
Body, Mime, StatusCode, Version,
};
use futures_util::io::AsyncRead;
use serde::de::DeserializeOwned;
use std::fmt;
use std::io;
use std::ops::Index;
use std::pin::Pin;
use std::task::{Context, Poll};
use super::decode::decode_body;
pin_project_lite::pin_project! {
/// An HTTP response that exposes async methods. This is to support async
/// use and middleware.
pub struct ResponseAsync {
#[pin]
res: crate::http::Response,
}
}
impl ResponseAsync {
/// Create a new instance.
pub(crate) fn new(res: http::Response) -> Self {
Self { res }
}
/// Get the HTTP status code.
///
/// # Examples
///
/// ```no_run
/// # use crux_http::client::Client;
/// # async fn middleware(client: Client) -> crux_http::Result<()> {
/// let res = client.get("https://httpbin.org/get").await?;
/// assert_eq!(res.status(), 200);
/// # Ok(()) }
/// ```
pub fn status(&self) -> StatusCode {
self.res.status()
}
/// Get the HTTP protocol version.
///
/// # Examples
///
/// ```no_run
/// # use crux_http::client::Client;
/// # async fn middleware(client: Client) -> crux_http::Result<()> {
/// use crux_http::http::Version;
///
/// let res = client.get("https://httpbin.org/get").await?;
/// assert_eq!(res.version(), Some(Version::Http1_1));
/// # Ok(()) }
/// ```
pub fn version(&self) -> Option<Version> {
self.res.version()
}
/// Get a header.
///
/// # Examples
///
/// ```no_run
/// # use crux_http::client::Client;
/// # async fn middleware(client: Client) -> crux_http::Result<()> {
/// let res = client.get("https://httpbin.org/get").await?;
/// assert!(res.header("Content-Length").is_some());
/// # Ok(()) }
/// ```
pub fn header(&self, name: impl Into<HeaderName>) -> Option<&HeaderValues> {
self.res.header(name)
}
/// Get an HTTP header mutably.
pub fn header_mut(&mut self, name: impl Into<HeaderName>) -> Option<&mut HeaderValues> {
self.res.header_mut(name)
}
/// Remove a header.
pub fn remove_header(&mut self, name: impl Into<HeaderName>) -> Option<HeaderValues> {
self.res.remove_header(name)
}
/// Insert an HTTP header.
pub fn insert_header(&mut self, key: impl Into<HeaderName>, value: impl ToHeaderValues) {
self.res.insert_header(key, value);
}
/// Append an HTTP header.
pub fn append_header(&mut self, key: impl Into<HeaderName>, value: impl ToHeaderValues) {
self.res.append_header(key, value);
}
/// An iterator visiting all header pairs in arbitrary order.
#[must_use]
pub fn iter(&self) -> headers::Iter<'_> {
self.res.iter()
}
/// An iterator visiting all header pairs in arbitrary order, with mutable references to the
/// values.
#[must_use]
pub fn iter_mut(&mut self) -> headers::IterMut<'_> {
self.res.iter_mut()
}
/// An iterator visiting all header names in arbitrary order.
#[must_use]
pub fn header_names(&self) -> headers::Names<'_> {
self.res.header_names()
}
/// An iterator visiting all header values in arbitrary order.
#[must_use]
pub fn header_values(&self) -> headers::Values<'_> {
self.res.header_values()
}
/// Get a response scoped extension value.
#[must_use]
pub fn ext<T: Send + Sync + 'static>(&self) -> Option<&T> {
self.res.ext().get()
}
/// Set a response scoped extension value.
pub fn insert_ext<T: Send + Sync + 'static>(&mut self, val: T) {
self.res.ext_mut().insert(val);
}
/// Get the response content type as a `Mime`.
///
/// Gets the `Content-Type` header and parses it to a `Mime` type.
///
/// [Read more on MDN](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types)
///
/// # Panics
///
/// This method will panic if an invalid MIME type was set as a header.
///
/// # Examples
///
/// ```no_run
/// # use crux_http::client::Client;
/// # async fn middleware(client: Client) -> crux_http::Result<()> {
/// use crux_http::http::mime;
/// let res = client.get("https://httpbin.org/json").await?;
/// assert_eq!(res.content_type(), Some(mime::JSON));
/// # Ok(()) }
/// ```
pub fn content_type(&self) -> Option<Mime> {
self.res.content_type()
}
/// Get the length of the body stream, if it has been set.
///
/// This value is set when passing a fixed-size object into as the body.
/// E.g. a string, or a buffer. Consumers of this API should check this
/// value to decide whether to use `Chunked` encoding, or set the
/// response length.
#[allow(clippy::len_without_is_empty)]
pub fn len(&self) -> Option<usize> {
self.res.len()
}
/// Returns `true` if the set length of the body stream is zero, `false`
/// otherwise.
pub fn is_empty(&self) -> Option<bool> {
self.res.is_empty()
}
/// Set the body reader.
pub fn set_body(&mut self, body: impl Into<Body>) {
self.res.set_body(body);
}
/// Take the response body as a `Body`.
///
/// This method can be called after the body has already been taken or read,
/// but will return an empty `Body`.
///
/// Useful for adjusting the whole body, such as in middleware.
pub fn take_body(&mut self) -> Body {
self.res.take_body()
}
/// Swaps the value of the body with another body, without deinitializing
/// either one.
pub fn swap_body(&mut self, body: &mut Body) {
self.res.swap_body(body)
}
/// Reads the entire request body into a byte buffer.
///
/// This method can be called after the body has already been read, but will
/// produce an empty buffer.
///
/// # Errors
///
/// Any I/O error encountered while reading the body is immediately returned
/// as an `Err`.
///
/// # Examples
///
/// ```no_run
/// # use crux_http::client::Client;
/// # async fn middleware(client: Client) -> crux_http::Result<()> {
/// let mut res = client.get("https://httpbin.org/get").await?;
/// let bytes: Vec<u8> = res.body_bytes().await?;
/// # Ok(()) }
/// ```
pub async fn body_bytes(&mut self) -> crate::Result<Vec<u8>> {
Ok(self.res.body_bytes().await?)
}
/// Reads the entire response body into a string.
///
/// This method can be called after the body has already been read, but will
/// produce an empty buffer.
///
/// # Encodings
///
/// If the "encoding" feature is enabled, this method tries to decode the body
/// with the encoding that is specified in the Content-Type header. If the header
/// does not specify an encoding, UTF-8 is assumed. If the "encoding" feature is
/// disabled, Surf only supports reading UTF-8 response bodies. The "encoding"
/// feature is enabled by default.
///
/// # Errors
///
/// Any I/O error encountered while reading the body is immediately returned
/// as an `Err`.
///
/// If the body cannot be interpreted because the encoding is unsupported or
/// incorrect, an `Err` is returned.
///
/// # Examples
///
/// ```no_run
/// # use crux_http::client::Client;
/// # async fn middleware(client: Client) -> crux_http::Result<()> {
/// let mut res = client.get("https://httpbin.org/get").await?;
/// let string: String = res.body_string().await?;
/// # Ok(()) }
/// ```
pub async fn body_string(&mut self) -> crate::Result<String> {
let bytes = self.body_bytes().await?;
let mime = self.content_type();
let claimed_encoding = mime
.as_ref()
.and_then(|mime| mime.param("charset"))
.map(|name| name.to_string());
Ok(decode_body(bytes, claimed_encoding.as_deref())?)
}
/// Reads and deserialized the entire request body from json.
///
/// # Errors
///
/// Any I/O error encountered while reading the body is immediately returned
/// as an `Err`.
///
/// If the body cannot be interpreted as valid json for the target type `T`,
/// an `Err` is returned.
///
/// # Examples
///
/// ```no_run
/// # use serde::{Deserialize, Serialize};
/// # use crux_http::client::Client;
/// # async fn middleware(client: Client) -> crux_http::Result<()> {
/// #[derive(Deserialize, Serialize)]
/// struct Ip {
/// ip: String
/// }
///
/// let mut res = client.get("https://api.ipify.org?format=json").await?;
/// let Ip { ip } = res.body_json().await?;
/// # Ok(()) }
/// ```
pub async fn body_json<T: DeserializeOwned>(&mut self) -> crate::Result<T> {
let body_bytes = self.body_bytes().await?;
serde_json::from_slice(&body_bytes).map_err(crate::HttpError::from)
}
/// Reads and deserialized the entire request body from form encoding.
///
/// # Errors
///
/// Any I/O error encountered while reading the body is immediately returned
/// as an `Err`.
///
/// If the body cannot be interpreted as valid json for the target type `T`,
/// an `Err` is returned.
///
/// # Examples
///
/// ```no_run
/// # use serde::{Deserialize, Serialize};
/// # use crux_http::client::Client;
/// # async fn middleware(client: Client) -> crux_http::Result<()> {
/// #[derive(Deserialize, Serialize)]
/// struct Body {
/// apples: u32
/// }
///
/// let mut res = client.get("https://api.example.com/v1/response").await?;
/// let Body { apples } = res.body_form().await?;
/// # Ok(()) }
/// ```
pub async fn body_form<T: serde::de::DeserializeOwned>(&mut self) -> crate::Result<T> {
Ok(self.res.body_form().await?)
}
}
impl From<http::Response> for ResponseAsync {
fn from(response: http::Response) -> Self {
Self::new(response)
}
}
#[allow(clippy::from_over_into)]
impl Into<http::Response> for ResponseAsync {
fn into(self) -> http::Response {
self.res
}
}
impl AsRef<http::Headers> for ResponseAsync {
fn as_ref(&self) -> &http::Headers {
self.res.as_ref()
}
}
impl AsMut<http::Headers> for ResponseAsync {
fn as_mut(&mut self) -> &mut http::Headers {
self.res.as_mut()
}
}
impl AsRef<http::Response> for ResponseAsync {
fn as_ref(&self) -> &http::Response {
&self.res
}
}
impl AsMut<http::Response> for ResponseAsync {
fn as_mut(&mut self) -> &mut http::Response {
&mut self.res
}
}
impl AsyncRead for ResponseAsync {
fn poll_read(
mut self: Pin<&mut Self>,
cx: &mut Context<'_>,
buf: &mut [u8],
) -> Poll<Result<usize, io::Error>> {
Pin::new(&mut self.res).poll_read(cx, buf)
}
}
impl fmt::Debug for ResponseAsync {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("Response")
.field("response", &self.res)
.finish()
}
}
impl Index<HeaderName> for ResponseAsync {
type Output = HeaderValues;
/// Returns a reference to the value corresponding to the supplied name.
///
/// # Panics
///
/// Panics if the name is not present in `Response`.
#[inline]
fn index(&self, name: HeaderName) -> &HeaderValues {
&self.res[name]
}
}
impl Index<&str> for ResponseAsync {
type Output = HeaderValues;
/// Returns a reference to the value corresponding to the supplied name.
///
/// # Panics
///
/// Panics if the name is not present in `Response`.
#[inline]
fn index(&self, name: &str) -> &HeaderValues {
&self.res[name]
}
}