1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-11 01:39:33 +00:00

Export ws sub-module with websockets related types

This commit is contained in:
Nikolay Kim 2019-03-29 13:49:21 -07:00
parent 709475b2bb
commit 058b1d56e6
4 changed files with 20 additions and 6 deletions

View file

@ -1,6 +1,6 @@
# Changes
## [0.1.0-alpha.2] - 2019-04-xx
## [0.1.0-alpha.2] - 2019-03-xx
### Added
@ -12,6 +12,10 @@
* Session wide basic and bearer auth.
### Changed
* Export `ws` sub-module with websockets related types
## [0.1.0-alpha.1] - 2019-03-28

View file

@ -1,6 +1,7 @@
//! Http client errors
pub use actix_http::client::{ConnectError, InvalidUrl, SendRequestError};
pub use actix_http::error::PayloadError;
pub use actix_http::ws::HandshakeError as WsHandshakeError;
pub use actix_http::ws::ProtocolError as WsProtocolError;
use actix_http::http::{header::HeaderValue, Error as HttpError, StatusCode};

View file

@ -35,12 +35,11 @@ pub mod error;
mod request;
mod response;
pub mod test;
mod ws;
pub mod ws;
pub use self::builder::ClientBuilder;
pub use self::request::ClientRequest;
pub use self::response::ClientResponse;
pub use self::ws::WebsocketsRequest;
use self::connect::{Connect, ConnectorWrapper};
@ -126,6 +125,7 @@ impl Client {
req
}
/// Construct HTTP *GET* request.
pub fn get<U>(&self, url: U) -> ClientRequest
where
Uri: HttpTryFrom<U>,
@ -133,6 +133,7 @@ impl Client {
self.request(Method::GET, url)
}
/// Construct HTTP *HEAD* request.
pub fn head<U>(&self, url: U) -> ClientRequest
where
Uri: HttpTryFrom<U>,
@ -140,6 +141,7 @@ impl Client {
self.request(Method::HEAD, url)
}
/// Construct HTTP *PUT* request.
pub fn put<U>(&self, url: U) -> ClientRequest
where
Uri: HttpTryFrom<U>,
@ -147,6 +149,7 @@ impl Client {
self.request(Method::PUT, url)
}
/// Construct HTTP *POST* request.
pub fn post<U>(&self, url: U) -> ClientRequest
where
Uri: HttpTryFrom<U>,
@ -154,6 +157,7 @@ impl Client {
self.request(Method::POST, url)
}
/// Construct HTTP *PATCH* request.
pub fn patch<U>(&self, url: U) -> ClientRequest
where
Uri: HttpTryFrom<U>,
@ -161,6 +165,7 @@ impl Client {
self.request(Method::PATCH, url)
}
/// Construct HTTP *DELETE* request.
pub fn delete<U>(&self, url: U) -> ClientRequest
where
Uri: HttpTryFrom<U>,
@ -168,6 +173,7 @@ impl Client {
self.request(Method::DELETE, url)
}
/// Construct HTTP *OPTIONS* request.
pub fn options<U>(&self, url: U) -> ClientRequest
where
Uri: HttpTryFrom<U>,
@ -175,11 +181,12 @@ impl Client {
self.request(Method::OPTIONS, url)
}
pub fn ws<U>(&self, url: U) -> WebsocketsRequest
/// Construct WebSockets request.
pub fn ws<U>(&self, url: U) -> ws::WebsocketsRequest
where
Uri: HttpTryFrom<U>,
{
let mut req = WebsocketsRequest::new(url, self.0.clone());
let mut req = ws::WebsocketsRequest::new(url, self.0.clone());
for (key, value) in &self.0.headers {
req.head.headers.insert(key.clone(), value.clone());
}

View file

@ -11,6 +11,8 @@ use cookie::{Cookie, CookieJar};
use futures::future::{err, Either, Future};
use tokio_timer::Timeout;
pub use actix_http::ws::{CloseCode, CloseReason, Frame, Message};
use crate::connect::BoxedSocket;
use crate::error::{InvalidUrl, SendRequestError, WsClientError};
use crate::http::header::{
@ -208,7 +210,7 @@ impl WebsocketsRequest {
self.header(AUTHORIZATION, format!("Bearer {}", token))
}
/// Complete request construction and connect.
/// Complete request construction and connect to a websockets server.
pub fn connect(
mut self,
) -> impl Future<