//! Pieces pertaining to the HTTP message protocol. use std::{io, mem, str}; use std::error::Error as Error; use std::convert::Into; use cookie::CookieJar; use http::{StatusCode, Version, HeaderMap, HttpTryFrom, Error as HttpError}; use http::header::{self, HeaderName, HeaderValue}; use Cookie; use body::Body; /// Represents various types of connection #[derive(Copy, Clone, PartialEq, Debug)] pub enum ConnectionType { /// Close connection after response Close, /// Keep connection alive after response KeepAlive, /// Connection is upgraded to different type Upgrade, } #[derive(Debug)] /// An HTTP Response pub struct HttpResponse { pub version: Option, pub headers: HeaderMap, pub status: StatusCode, reason: Option<&'static str>, body: Body, chunked: bool, connection_type: Option, error: Option>, } impl HttpResponse { #[inline] pub fn builder(status: StatusCode) -> HttpResponseBuilder { HttpResponseBuilder { parts: Some(Parts::new(status)), err: None, } } /// Constructs a response #[inline] pub fn new(status: StatusCode, body: Body) -> HttpResponse { HttpResponse { version: None, headers: Default::default(), status: status, reason: None, body: body, chunked: false, // compression: None, connection_type: None, error: None, } } /// Constructs a response from error #[inline] pub fn from_error(status: StatusCode, error: E) -> HttpResponse { HttpResponse { version: None, headers: Default::default(), status: status, reason: None, body: Body::from_slice(error.description().as_ref()), chunked: false, // compression: None, connection_type: None, error: Some(Box::new(error)), } } /// The `error` which is responsible for this response #[inline] #[cfg_attr(feature="cargo-clippy", allow(borrowed_box))] pub fn error(&self) -> Option<&Box> { self.error.as_ref() } /// Get the HTTP version of this response. #[inline] pub fn version(&self) -> Option { self.version } /// Get the headers from the response. #[inline] pub fn headers(&self) -> &HeaderMap { &self.headers } /// Get a mutable reference to the headers. #[inline] pub fn headers_mut(&mut self) -> &mut HeaderMap { &mut self.headers } /// Get the status from the server. #[inline] pub fn status(&self) -> StatusCode { self.status } /// Set the `StatusCode` for this response. #[inline] pub fn status_mut(&mut self) -> &mut StatusCode { &mut self.status } /// Get custom reason for the response. #[inline] pub fn reason(&self) -> &str { if let Some(reason) = self.reason { reason } else { "" } } /// Set the custom reason for the response. #[inline] pub fn set_reason(&mut self, reason: &'static str) -> &mut Self { self.reason = Some(reason); self } /// Set connection type pub fn set_connection_type(&mut self, conn: ConnectionType) -> &mut Self { self.connection_type = Some(conn); self } /// Connection upgrade status pub fn upgrade(&self) -> bool { self.connection_type == Some(ConnectionType::Upgrade) } /// Keep-alive status for this connection pub fn keep_alive(&self) -> Option { if let Some(ct) = self.connection_type { match ct { ConnectionType::KeepAlive => Some(true), ConnectionType::Close | ConnectionType::Upgrade => Some(false), } } else { None } } /// is chunked encoding enabled pub fn chunked(&self) -> bool { self.chunked } /// Enables automatic chunked transfer encoding pub fn enable_chunked_encoding(&mut self) -> Result<(), io::Error> { if self.headers.contains_key(header::CONTENT_LENGTH) { Err(io::Error::new(io::ErrorKind::Other, "You can't enable chunked encoding when a content length is set")) } else { self.chunked = true; Ok(()) } } /// Get body os this response pub fn body(&self) -> &Body { &self.body } /// Set a body pub fn set_body>(&mut self, body: B) { self.body = body.into(); } /// Set a body and return previous body value pub fn replace_body>(&mut self, body: B) -> Body { mem::replace(&mut self.body, body.into()) } } /// Helper conversion implementation impl, E: Into> From> for HttpResponse { fn from(res: Result) -> Self { match res { Ok(val) => val.into(), Err(err) => err.into(), } } } #[derive(Debug)] struct Parts { version: Option, headers: HeaderMap, status: StatusCode, reason: Option<&'static str>, chunked: bool, connection_type: Option, cookies: CookieJar, } impl Parts { fn new(status: StatusCode) -> Self { Parts { version: None, headers: HeaderMap::new(), status: status, reason: None, chunked: false, connection_type: None, cookies: CookieJar::new(), } } } /// An HTTP response builder /// /// This type can be used to construct an instance of `HttpResponse` through a /// builder-like pattern. #[derive(Debug)] pub struct HttpResponseBuilder { parts: Option, err: Option, } impl HttpResponseBuilder { /// Get the HTTP version of this response. #[inline] pub fn version(&mut self, version: Version) -> &mut Self { if let Some(parts) = parts(&mut self.parts, &self.err) { parts.version = Some(version); } self } /// Set the `StatusCode` for this response. #[inline] pub fn status(&mut self, status: StatusCode) -> &mut Self { if let Some(parts) = parts(&mut self.parts, &self.err) { parts.status = status; } self } /// Set a header. #[inline] pub fn header(&mut self, key: K, value: V) -> &mut Self where HeaderName: HttpTryFrom, HeaderValue: HttpTryFrom { if let Some(parts) = parts(&mut self.parts, &self.err) { match HeaderName::try_from(key) { Ok(key) => { match HeaderValue::try_from(value) { Ok(value) => { parts.headers.append(key, value); } Err(e) => self.err = Some(e.into()), } }, Err(e) => self.err = Some(e.into()), }; } self } /// Set the custom reason for the response. #[inline] pub fn reason(&mut self, reason: &'static str) -> &mut Self { if let Some(parts) = parts(&mut self.parts, &self.err) { parts.reason = Some(reason); } self } /// Set connection type pub fn connection_type(&mut self, conn: ConnectionType) -> &mut Self { if let Some(parts) = parts(&mut self.parts, &self.err) { parts.connection_type = Some(conn); } self } /// Set connection type to Upgrade pub fn upgrade(&mut self) -> &mut Self { self.connection_type(ConnectionType::Upgrade) } /// Force close connection, even if it is marked as keep-alive pub fn force_close(&mut self) -> &mut Self { self.connection_type(ConnectionType::Close) } /// Enables automatic chunked transfer encoding pub fn enable_chunked(&mut self) -> &mut Self { if let Some(parts) = parts(&mut self.parts, &self.err) { parts.chunked = true; } self } /// Set response content type pub fn content_type(&mut self, value: V) -> &mut Self where HeaderValue: HttpTryFrom { if let Some(parts) = parts(&mut self.parts, &self.err) { match HeaderValue::try_from(value) { Ok(value) => { parts.headers.insert(header::CONTENT_TYPE, value); }, Err(e) => self.err = Some(e.into()), }; } self } /* /// Set response content charset pub fn charset(&mut self, value: V) -> &mut Self where HeaderValue: HttpTryFrom { if let Some(parts) = parts(&mut self.parts, &self.err) { match HeaderValue::try_from(value) { Ok(value) => { parts.headers.insert(header::CONTENT_TYPE, value); }, Err(e) => self.err = Some(e.into()), }; } self }*/ /// Set a cookie pub fn cookie<'c>(&mut self, cookie: Cookie<'c>) -> &mut Self { if let Some(parts) = parts(&mut self.parts, &self.err) { parts.cookies.add(cookie.into_owned()); } self } /// Remote cookie, cookie has to be cookie from `HttpRequest::cookies()` method. pub fn del_cookie<'a>(&mut self, cookie: &Cookie<'a>) -> &mut Self { if let Some(parts) = parts(&mut self.parts, &self.err) { let cookie = cookie.clone().into_owned(); parts.cookies.add_original(cookie.clone()); parts.cookies.remove(cookie); } self } /// Set a body pub fn body>(&mut self, body: B) -> Result { let mut parts = self.parts.take().expect("cannot reuse response builder"); if let Some(e) = self.err.take() { return Err(e) } for cookie in parts.cookies.delta() { parts.headers.append( header::SET_COOKIE, HeaderValue::from_str(&cookie.to_string())?); } Ok(HttpResponse { version: parts.version, headers: parts.headers, status: parts.status, reason: parts.reason, body: body.into(), chunked: parts.chunked, connection_type: parts.connection_type, error: None, }) } /// Set an empty body pub fn finish(&mut self) -> Result { self.body(Body::Empty) } } fn parts<'a>(parts: &'a mut Option, err: &Option) -> Option<&'a mut Parts> { if err.is_some() { return None } parts.as_mut() } #[cfg(test)] mod tests { use super::*; #[test] fn test_body() { assert!(Body::Length(10).has_body()); assert!(Body::Streaming.has_body()); } #[test] fn test_upgrade() { let resp = HttpResponse::builder(StatusCode::OK) .upgrade().body(Body::Empty).unwrap(); assert!(resp.upgrade()) } #[test] fn test_force_close() { let resp = HttpResponse::builder(StatusCode::OK) .force_close().body(Body::Empty).unwrap(); assert!(!resp.keep_alive().unwrap()) } #[test] fn test_content_type() { let resp = HttpResponse::builder(StatusCode::OK) .content_type("text/plain").body(Body::Empty).unwrap(); assert_eq!(resp.headers().get(header::CONTENT_TYPE).unwrap(), "text/plain") } }