1
0
mirror of https://github.com/fafhrd91/actix-web synced 2024-11-24 08:22:59 +01:00
actix-web/awc/src/lib.rs

283 lines
7.5 KiB
Rust
Raw Normal View History

2020-10-30 03:50:53 +01:00
//! `awc` is a HTTP and WebSocket client library built on the Actix ecosystem.
//!
//! ## Making a GET request
//!
//! ```no_run
//! # #[actix_rt::main]
//! # async fn main() -> Result<(), awc::error::SendRequestError> {
//! let mut client = awc::Client::default();
//! let response = client.get("http://www.rust-lang.org") // <- Create request builder
2021-01-15 03:11:10 +01:00
//! .insert_header(("User-Agent", "Actix-web"))
//! .send() // <- Send http request
//! .await?;
//!
//! println!("Response: {:?}", response);
//! # Ok(())
//! # }
//! ```
//!
//! ## Making POST requests
//!
//! ### Raw body contents
//!
//! ```no_run
//! # #[actix_rt::main]
//! # async fn main() -> Result<(), awc::error::SendRequestError> {
//! let mut client = awc::Client::default();
//! let response = client.post("http://httpbin.org/post")
//! .send_body("Raw body contents")
//! .await?;
//! # Ok(())
//! # }
//! ```
//!
//! ### Forms
2019-03-27 17:24:55 +01:00
//!
//! ```no_run
//! # #[actix_rt::main]
//! # async fn main() -> Result<(), awc::error::SendRequestError> {
//! let params = [("foo", "bar"), ("baz", "quux")];
//!
//! let mut client = awc::Client::default();
//! let response = client.post("http://httpbin.org/post")
//! .send_form(&params)
//! .await?;
//! # Ok(())
//! # }
//! ```
2019-03-27 17:24:55 +01:00
//!
//! ### JSON
2019-03-27 17:24:55 +01:00
//!
//! ```no_run
//! # #[actix_rt::main]
//! # async fn main() -> Result<(), awc::error::SendRequestError> {
//! let request = serde_json::json!({
//! "lang": "rust",
//! "body": "json"
//! });
2019-11-26 06:25:50 +01:00
//!
//! let mut client = awc::Client::default();
//! let response = client.post("http://httpbin.org/post")
//! .send_json(&request)
//! .await?;
//! # Ok(())
//! # }
2019-03-27 17:24:55 +01:00
//! ```
//!
//! ## WebSocket support
//!
//! ```no_run
//! # #[actix_rt::main]
//! # async fn main() -> Result<(), Box<dyn std::error::Error>> {
//! use futures_util::{sink::SinkExt, stream::StreamExt};
//! let (_resp, mut connection) = awc::Client::new()
//! .ws("ws://echo.websocket.org")
//! .connect()
//! .await?;
//!
//! connection
//! .send(awc::ws::Message::Text("Echo".into()))
//! .await?;
//! let response = connection.next().await.unwrap()?;
//! # assert_eq!(response, awc::ws::Frame::Text("Echo".as_bytes().into()));
//! # Ok(())
//! # }
//! ```
2020-10-30 03:50:53 +01:00
#![deny(rust_2018_idioms)]
#![allow(
clippy::type_complexity,
clippy::borrow_interior_mutable_const,
clippy::needless_doctest_main
)]
#![doc(html_logo_url = "https://actix.rs/img/logo.png")]
#![doc(html_favicon_url = "https://actix.rs/favicon.ico")]
2019-12-05 18:35:43 +01:00
use std::convert::TryFrom;
2019-03-26 05:58:01 +01:00
use std::rc::Rc;
2019-03-29 06:33:41 +01:00
use std::time::Duration;
2019-03-26 05:58:01 +01:00
2021-02-13 16:08:43 +01:00
#[cfg(feature = "cookies")]
pub use actix_http::cookie;
pub use actix_http::{client::Connector, http};
2019-03-26 05:58:01 +01:00
2019-12-05 18:35:43 +01:00
use actix_http::http::{Error as HttpError, HeaderMap, Method, Uri};
2019-03-27 17:24:55 +01:00
use actix_http::RequestHead;
2019-03-26 05:58:01 +01:00
mod builder;
mod connect;
2019-03-28 02:53:19 +01:00
pub mod error;
mod frozen;
2019-03-26 05:58:01 +01:00
mod request;
mod response;
mod sender;
2019-03-27 05:54:57 +01:00
pub mod test;
pub mod ws;
2019-03-26 05:58:01 +01:00
pub use self::builder::ClientBuilder;
pub use self::connect::{BoxedSocket, ConnectRequest, ConnectResponse, ConnectService};
pub use self::frozen::{FrozenClientRequest, FrozenSendBuilder};
2019-03-26 05:58:01 +01:00
pub use self::request::ClientRequest;
2019-04-01 20:51:18 +02:00
pub use self::response::{ClientResponse, JsonBody, MessageBody};
pub use self::sender::SendClientRequest;
2019-03-26 05:58:01 +01:00
use self::connect::ConnectorWrapper;
2019-03-26 05:58:01 +01:00
/// An asynchronous HTTP and WebSocket client.
///
/// ## Examples
2019-03-26 05:58:01 +01:00
///
/// ```rust
/// use awc::Client;
///
2019-12-08 07:31:16 +01:00
/// #[actix_rt::main]
/// async fn main() {
/// let mut client = Client::default();
2019-03-26 05:58:01 +01:00
///
2019-12-08 07:31:16 +01:00
/// let res = client.get("http://www.rust-lang.org") // <- Create request builder
2021-01-15 03:11:10 +01:00
/// .insert_header(("User-Agent", "Actix-web"))
2021-02-11 23:39:54 +01:00
/// .send() // <- Send HTTP request
2019-12-08 07:31:16 +01:00
/// .await; // <- send request and wait for response
///
/// println!("Response: {:?}", res);
2019-03-26 05:58:01 +01:00
/// }
/// ```
#[derive(Clone)]
2019-03-29 06:33:41 +01:00
pub struct Client(Rc<ClientConfig>);
pub(crate) struct ClientConfig {
pub(crate) connector: ConnectService,
pub(crate) headers: HeaderMap,
2019-03-29 06:33:41 +01:00
pub(crate) timeout: Option<Duration>,
2019-03-26 05:58:01 +01:00
}
impl Default for Client {
fn default() -> Self {
2019-03-29 06:33:41 +01:00
Client(Rc::new(ClientConfig {
connector: Box::new(ConnectorWrapper::new(Connector::new().finish())),
2019-03-29 06:33:41 +01:00
headers: HeaderMap::new(),
timeout: Some(Duration::from_secs(5)),
}))
2019-03-26 05:58:01 +01:00
}
}
impl Client {
2019-03-26 17:11:27 +01:00
/// Create new client instance with default settings.
pub fn new() -> Client {
Client::default()
}
/// Create `Client` builder.
/// This function is equivalent of `ClientBuilder::new()`.
pub fn builder() -> ClientBuilder {
2019-03-26 05:58:01 +01:00
ClientBuilder::new()
}
/// Construct HTTP request.
pub fn request<U>(&self, method: Method, url: U) -> ClientRequest
where
2019-12-05 18:35:43 +01:00
Uri: TryFrom<U>,
<Uri as TryFrom<U>>::Error: Into<HttpError>,
2019-03-26 05:58:01 +01:00
{
2019-03-29 06:33:41 +01:00
let mut req = ClientRequest::new(method, url, self.0.clone());
2021-01-15 03:11:10 +01:00
for header in self.0.headers.iter() {
req = req.insert_header_if_none(header);
}
req
2019-03-26 05:58:01 +01:00
}
2019-03-27 07:25:24 +01:00
/// Create `ClientRequest` from `RequestHead`
///
/// It is useful for proxy requests. This implementation
/// copies all headers and the method.
pub fn request_from<U>(&self, url: U, head: &RequestHead) -> ClientRequest
where
2019-12-05 18:35:43 +01:00
Uri: TryFrom<U>,
<Uri as TryFrom<U>>::Error: Into<HttpError>,
2019-03-27 07:25:24 +01:00
{
let mut req = self.request(head.method.clone(), url);
2021-01-15 03:11:10 +01:00
for header in head.headers.iter() {
req = req.insert_header_if_none(header);
2019-03-27 07:25:24 +01:00
}
req
}
/// Construct HTTP *GET* request.
2019-03-26 05:58:01 +01:00
pub fn get<U>(&self, url: U) -> ClientRequest
where
2019-12-05 18:35:43 +01:00
Uri: TryFrom<U>,
<Uri as TryFrom<U>>::Error: Into<HttpError>,
2019-03-26 05:58:01 +01:00
{
self.request(Method::GET, url)
2019-03-26 05:58:01 +01:00
}
/// Construct HTTP *HEAD* request.
2019-03-26 05:58:01 +01:00
pub fn head<U>(&self, url: U) -> ClientRequest
where
2019-12-05 18:35:43 +01:00
Uri: TryFrom<U>,
<Uri as TryFrom<U>>::Error: Into<HttpError>,
2019-03-26 05:58:01 +01:00
{
self.request(Method::HEAD, url)
2019-03-26 05:58:01 +01:00
}
/// Construct HTTP *PUT* request.
2019-03-26 05:58:01 +01:00
pub fn put<U>(&self, url: U) -> ClientRequest
where
2019-12-05 18:35:43 +01:00
Uri: TryFrom<U>,
<Uri as TryFrom<U>>::Error: Into<HttpError>,
2019-03-26 05:58:01 +01:00
{
self.request(Method::PUT, url)
2019-03-26 05:58:01 +01:00
}
/// Construct HTTP *POST* request.
2019-03-26 05:58:01 +01:00
pub fn post<U>(&self, url: U) -> ClientRequest
where
2019-12-05 18:35:43 +01:00
Uri: TryFrom<U>,
<Uri as TryFrom<U>>::Error: Into<HttpError>,
2019-03-26 05:58:01 +01:00
{
self.request(Method::POST, url)
2019-03-26 05:58:01 +01:00
}
/// Construct HTTP *PATCH* request.
2019-03-26 05:58:01 +01:00
pub fn patch<U>(&self, url: U) -> ClientRequest
where
2019-12-05 18:35:43 +01:00
Uri: TryFrom<U>,
<Uri as TryFrom<U>>::Error: Into<HttpError>,
2019-03-26 05:58:01 +01:00
{
self.request(Method::PATCH, url)
2019-03-26 05:58:01 +01:00
}
/// Construct HTTP *DELETE* request.
2019-03-26 05:58:01 +01:00
pub fn delete<U>(&self, url: U) -> ClientRequest
where
2019-12-05 18:35:43 +01:00
Uri: TryFrom<U>,
<Uri as TryFrom<U>>::Error: Into<HttpError>,
2019-03-26 05:58:01 +01:00
{
self.request(Method::DELETE, url)
2019-03-26 05:58:01 +01:00
}
/// Construct HTTP *OPTIONS* request.
2019-03-26 05:58:01 +01:00
pub fn options<U>(&self, url: U) -> ClientRequest
where
2019-12-05 18:35:43 +01:00
Uri: TryFrom<U>,
<Uri as TryFrom<U>>::Error: Into<HttpError>,
2019-03-26 05:58:01 +01:00
{
self.request(Method::OPTIONS, url)
2019-03-26 05:58:01 +01:00
}
2019-03-28 02:53:19 +01:00
/// Initialize a WebSocket connection.
/// Returns a WebSocket connection builder.
pub fn ws<U>(&self, url: U) -> ws::WebsocketsRequest
2019-03-28 02:53:19 +01:00
where
2019-12-05 18:35:43 +01:00
Uri: TryFrom<U>,
<Uri as TryFrom<U>>::Error: Into<HttpError>,
2019-03-28 02:53:19 +01:00
{
let mut req = ws::WebsocketsRequest::new(url, self.0.clone());
for (key, value) in self.0.headers.iter() {
req.head.headers.insert(key.clone(), value.clone());
}
req
2019-03-28 02:53:19 +01:00
}
2019-03-26 05:58:01 +01:00
}