2020-09-10 15:46:35 +02:00
|
|
|
#![deny(rust_2018_idioms)]
|
2019-12-08 07:31:16 +01:00
|
|
|
#![allow(
|
|
|
|
clippy::type_complexity,
|
|
|
|
clippy::borrow_interior_mutable_const,
|
|
|
|
clippy::needless_doctest_main
|
|
|
|
)]
|
2020-09-09 15:24:12 +02:00
|
|
|
|
|
|
|
//! `awc` is a HTTP and WebSocket client library built using the Actix ecosystem.
|
|
|
|
//!
|
|
|
|
//! ## Making a GET request
|
|
|
|
//!
|
|
|
|
//! ```rust
|
|
|
|
//! # #[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
|
|
|
|
//! .header("User-Agent", "Actix-web")
|
|
|
|
//! .send() // <- Send http request
|
|
|
|
//! .await?;
|
|
|
|
//!
|
|
|
|
//! println!("Response: {:?}", response);
|
|
|
|
//! # Ok(())
|
|
|
|
//! # }
|
|
|
|
//! ```
|
|
|
|
//!
|
|
|
|
//! ## Making POST requests
|
|
|
|
//!
|
|
|
|
//! ### Raw body contents
|
|
|
|
//!
|
|
|
|
//! ```rust
|
|
|
|
//! # #[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
|
|
|
//!
|
|
|
|
//! ```rust
|
2020-09-09 15:24:12 +02:00
|
|
|
//! # #[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(¶ms)
|
|
|
|
//! .await?;
|
|
|
|
//! # Ok(())
|
|
|
|
//! # }
|
|
|
|
//! ```
|
2019-03-27 17:24:55 +01:00
|
|
|
//!
|
2020-09-09 15:24:12 +02:00
|
|
|
//! ### JSON
|
2019-03-27 17:24:55 +01:00
|
|
|
//!
|
2020-09-09 15:24:12 +02:00
|
|
|
//! ```rust
|
|
|
|
//! # #[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
|
|
|
//!
|
2020-09-09 15:24:12 +02: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
|
|
|
//! ```
|
2020-09-09 15:24:12 +02:00
|
|
|
//!
|
|
|
|
//! ## WebSocket support
|
|
|
|
//!
|
|
|
|
//! ```
|
|
|
|
//! # #[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".to_string()))
|
|
|
|
//! .await?;
|
|
|
|
//! let response = connection.next().await.unwrap()?;
|
|
|
|
//! # assert_eq!(response, awc::ws::Frame::Text("Echo".as_bytes().into()));
|
|
|
|
//! # Ok(())
|
|
|
|
//! # }
|
|
|
|
//! ```
|
|
|
|
|
2019-03-26 05:58:01 +01:00
|
|
|
use std::cell::RefCell;
|
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
|
|
|
|
2019-03-30 05:13:39 +01:00
|
|
|
pub use actix_http::{client::Connector, cookie, 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;
|
2019-09-12 06:40:56 +02:00
|
|
|
mod frozen;
|
2019-03-26 05:58:01 +01:00
|
|
|
mod request;
|
2019-03-26 19:41:38 +01:00
|
|
|
mod response;
|
2019-09-12 06:40:56 +02:00
|
|
|
mod sender;
|
2019-03-27 05:54:57 +01:00
|
|
|
pub mod test;
|
2019-03-29 21:49:21 +01:00
|
|
|
pub mod ws;
|
2019-03-26 05:58:01 +01:00
|
|
|
|
|
|
|
pub use self::builder::ClientBuilder;
|
2019-06-12 11:52:48 +02:00
|
|
|
pub use self::connect::BoxedSocket;
|
2019-09-12 06:40:56 +02:00
|
|
|
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};
|
2019-09-12 06:40:56 +02:00
|
|
|
pub use self::sender::SendClientRequest;
|
2019-03-26 05:58:01 +01:00
|
|
|
|
|
|
|
use self::connect::{Connect, ConnectorWrapper};
|
|
|
|
|
2020-09-09 15:24:12 +02: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
|
|
|
|
/// .header("User-Agent", "Actix-web")
|
|
|
|
/// .send() // <- Send http request
|
|
|
|
/// .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>);
|
2019-03-29 05:48:35 +01:00
|
|
|
|
|
|
|
pub(crate) struct ClientConfig {
|
2019-03-29 06:33:41 +01:00
|
|
|
pub(crate) connector: RefCell<Box<dyn Connect>>,
|
2019-03-29 05:48:35 +01:00
|
|
|
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: RefCell::new(Box::new(ConnectorWrapper(
|
2019-04-05 20:34:27 +02:00
|
|
|
Connector::new().finish(),
|
2019-03-26 05:58:01 +01:00
|
|
|
))),
|
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()
|
|
|
|
}
|
|
|
|
|
2020-09-11 10:24:39 +02:00
|
|
|
/// 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());
|
2019-03-29 05:48:35 +01:00
|
|
|
|
2019-04-07 00:02:02 +02:00
|
|
|
for (key, value) in self.0.headers.iter() {
|
2019-04-02 21:51:16 +02:00
|
|
|
req = req.set_header_if_none(key.clone(), value.clone());
|
2019-03-29 05:48:35 +01:00
|
|
|
}
|
|
|
|
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
|
|
|
{
|
2019-03-29 05:48:35 +01:00
|
|
|
let mut req = self.request(head.method.clone(), url);
|
2019-04-07 00:02:02 +02:00
|
|
|
for (key, value) in head.headers.iter() {
|
2019-04-02 21:51:16 +02:00
|
|
|
req = req.set_header_if_none(key.clone(), value.clone());
|
2019-03-27 07:25:24 +01:00
|
|
|
}
|
|
|
|
req
|
|
|
|
}
|
|
|
|
|
2019-03-29 21:49:21 +01:00
|
|
|
/// 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
|
|
|
{
|
2019-03-29 05:48:35 +01:00
|
|
|
self.request(Method::GET, url)
|
2019-03-26 05:58:01 +01:00
|
|
|
}
|
|
|
|
|
2019-03-29 21:49:21 +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
|
|
|
{
|
2019-03-29 05:48:35 +01:00
|
|
|
self.request(Method::HEAD, url)
|
2019-03-26 05:58:01 +01:00
|
|
|
}
|
|
|
|
|
2019-03-29 21:49:21 +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
|
|
|
{
|
2019-03-29 05:48:35 +01:00
|
|
|
self.request(Method::PUT, url)
|
2019-03-26 05:58:01 +01:00
|
|
|
}
|
|
|
|
|
2019-03-29 21:49:21 +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
|
|
|
{
|
2019-03-29 05:48:35 +01:00
|
|
|
self.request(Method::POST, url)
|
2019-03-26 05:58:01 +01:00
|
|
|
}
|
|
|
|
|
2019-03-29 21:49:21 +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
|
|
|
{
|
2019-03-29 05:48:35 +01:00
|
|
|
self.request(Method::PATCH, url)
|
2019-03-26 05:58:01 +01:00
|
|
|
}
|
|
|
|
|
2019-03-29 21:49:21 +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
|
|
|
{
|
2019-03-29 05:48:35 +01:00
|
|
|
self.request(Method::DELETE, url)
|
2019-03-26 05:58:01 +01:00
|
|
|
}
|
|
|
|
|
2019-03-29 21:49:21 +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
|
|
|
{
|
2019-03-29 05:48:35 +01:00
|
|
|
self.request(Method::OPTIONS, url)
|
2019-03-26 05:58:01 +01:00
|
|
|
}
|
2019-03-28 02:53:19 +01:00
|
|
|
|
2020-09-07 13:04:54 +02:00
|
|
|
/// Initialize a WebSocket connection.
|
|
|
|
/// Returns a WebSocket connection builder.
|
2019-03-29 21:49:21 +01:00
|
|
|
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
|
|
|
{
|
2019-03-29 21:49:21 +01:00
|
|
|
let mut req = ws::WebsocketsRequest::new(url, self.0.clone());
|
2019-04-07 00:02:02 +02:00
|
|
|
for (key, value) in self.0.headers.iter() {
|
2019-03-29 05:48:35 +01:00
|
|
|
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
|
|
|
}
|