2017-10-07 06:48:14 +02:00
|
|
|
//! Pieces pertaining to the HTTP message protocol.
|
2017-10-13 23:43:17 +02:00
|
|
|
use std::{io, mem, str};
|
2017-10-07 06:48:14 +02:00
|
|
|
use std::convert::Into;
|
|
|
|
|
2017-10-13 23:43:17 +02:00
|
|
|
use cookie;
|
2017-10-07 06:48:14 +02:00
|
|
|
use bytes::Bytes;
|
2017-10-11 01:03:32 +02:00
|
|
|
use http::{Method, StatusCode, Version, Uri, HeaderMap, HttpTryFrom, Error};
|
2017-10-10 08:07:32 +02:00
|
|
|
use http::header::{self, HeaderName, HeaderValue};
|
2017-10-07 06:48:14 +02:00
|
|
|
|
|
|
|
use Params;
|
|
|
|
|
2017-10-08 06:48:00 +02:00
|
|
|
#[derive(Copy, Clone, PartialEq, Debug)]
|
|
|
|
pub enum ConnectionType {
|
|
|
|
Close,
|
|
|
|
KeepAlive,
|
|
|
|
Upgrade,
|
|
|
|
}
|
|
|
|
|
2017-10-07 06:48:14 +02:00
|
|
|
#[derive(Debug)]
|
|
|
|
/// An HTTP Request
|
|
|
|
pub struct HttpRequest {
|
|
|
|
version: Version,
|
|
|
|
method: Method,
|
|
|
|
uri: Uri,
|
2017-10-10 08:07:32 +02:00
|
|
|
headers: HeaderMap,
|
2017-10-07 06:48:14 +02:00
|
|
|
params: Params,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl HttpRequest {
|
|
|
|
/// Construct a new Request.
|
|
|
|
#[inline]
|
2017-10-10 08:07:32 +02:00
|
|
|
pub fn new(method: Method, uri: Uri, version: Version, headers: HeaderMap) -> Self {
|
2017-10-07 06:48:14 +02:00
|
|
|
HttpRequest {
|
|
|
|
method: method,
|
|
|
|
uri: uri,
|
|
|
|
version: version,
|
|
|
|
headers: headers,
|
|
|
|
params: Params::new(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Read the Request Uri.
|
|
|
|
#[inline]
|
|
|
|
pub fn uri(&self) -> &Uri { &self.uri }
|
|
|
|
|
|
|
|
/// Read the Request method.
|
|
|
|
#[inline]
|
|
|
|
pub fn method(&self) -> &Method { &self.method }
|
|
|
|
|
2017-10-11 02:14:30 +02:00
|
|
|
/// Read the Request Version.
|
|
|
|
pub fn version(&self) -> Version {
|
|
|
|
self.version
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Read the Request Headers.
|
|
|
|
pub fn headers(&self) -> &HeaderMap {
|
|
|
|
&self.headers
|
|
|
|
}
|
|
|
|
|
2017-10-07 06:48:14 +02:00
|
|
|
// /// The remote socket address of this request
|
|
|
|
// ///
|
|
|
|
// /// This is an `Option`, because some underlying transports may not have
|
|
|
|
// /// a socket address, such as Unix Sockets.
|
|
|
|
// ///
|
|
|
|
// /// This field is not used for outgoing requests.
|
|
|
|
// #[inline]
|
|
|
|
// pub fn remote_addr(&self) -> Option<SocketAddr> { self.remote_addr }
|
|
|
|
|
|
|
|
/// The target path of this Request.
|
|
|
|
#[inline]
|
|
|
|
pub fn path(&self) -> &str {
|
|
|
|
self.uri.path()
|
|
|
|
}
|
|
|
|
|
|
|
|
/// The query string of this Request.
|
|
|
|
#[inline]
|
|
|
|
pub fn query(&self) -> Option<&str> {
|
|
|
|
self.uri.query()
|
|
|
|
}
|
|
|
|
|
2017-10-13 23:43:17 +02:00
|
|
|
/// Return request cookie.
|
|
|
|
pub fn cookie(&self) -> Result<Option<cookie::Cookie>, cookie::ParseError> {
|
|
|
|
if let Some(val) = self.headers.get(header::COOKIE) {
|
|
|
|
let s = str::from_utf8(val.as_bytes())
|
|
|
|
.map_err(|e| cookie::ParseError::from(e))?;
|
|
|
|
cookie::Cookie::parse(s).map(|c| Some(c))
|
|
|
|
} else {
|
|
|
|
Ok(None)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-07 06:48:14 +02:00
|
|
|
/// Get a mutable reference to the Request headers.
|
|
|
|
#[inline]
|
2017-10-10 08:07:32 +02:00
|
|
|
pub fn headers_mut(&mut self) -> &mut HeaderMap {
|
2017-10-07 06:48:14 +02:00
|
|
|
&mut self.headers
|
|
|
|
}
|
|
|
|
|
2017-10-08 08:59:57 +02:00
|
|
|
/// Get a reference to the Params object.
|
|
|
|
/// Params is a container for url parameters.
|
|
|
|
/// Route supports glob patterns: * for a single wildcard segment and :param
|
|
|
|
/// for matching storing that segment of the request url in the Params object.
|
2017-10-07 06:48:14 +02:00
|
|
|
#[inline]
|
|
|
|
pub fn params(&self) -> &Params { &self.params }
|
|
|
|
|
2017-10-08 08:59:57 +02:00
|
|
|
/// Create new request with Params object.
|
2017-10-07 06:48:14 +02:00
|
|
|
pub fn with_params(self, params: Params) -> Self {
|
|
|
|
HttpRequest {
|
|
|
|
method: self.method,
|
|
|
|
uri: self.uri,
|
|
|
|
version: self.version,
|
|
|
|
headers: self.headers,
|
|
|
|
params: params
|
|
|
|
}
|
|
|
|
}
|
2017-10-08 06:48:00 +02:00
|
|
|
|
2017-10-11 01:03:32 +02:00
|
|
|
/// Checks if a connection should be kept alive.
|
|
|
|
pub fn keep_alive(&self) -> bool {
|
|
|
|
if let Some(conn) = self.headers.get(header::CONNECTION) {
|
|
|
|
if let Ok(conn) = conn.to_str() {
|
|
|
|
if self.version == Version::HTTP_10 && !conn.contains("keep-alive") {
|
|
|
|
false
|
|
|
|
} else {
|
|
|
|
self.version == Version::HTTP_11 && conn.contains("close")
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
self.version != Version::HTTP_10
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-08 08:59:57 +02:00
|
|
|
pub(crate) fn is_upgrade(&self) -> bool {
|
2017-10-10 08:10:15 +02:00
|
|
|
if let Some(conn) = self.headers().get(header::CONNECTION) {
|
2017-10-10 08:07:32 +02:00
|
|
|
if let Ok(s) = conn.to_str() {
|
|
|
|
return s.to_lowercase().contains("upgrade")
|
|
|
|
}
|
2017-10-08 06:48:00 +02:00
|
|
|
}
|
2017-10-10 08:07:32 +02:00
|
|
|
false
|
2017-10-08 06:48:00 +02:00
|
|
|
}
|
2017-10-11 02:14:30 +02:00
|
|
|
|
|
|
|
pub fn is_chunked(&self) -> Result<bool, io::Error> {
|
|
|
|
if let Some(encodings) = self.headers().get(header::TRANSFER_ENCODING) {
|
|
|
|
if let Ok(s) = encodings.to_str() {
|
|
|
|
return Ok(s.to_lowercase().contains("chunked"))
|
|
|
|
} else {
|
|
|
|
Err(io::Error::new(
|
|
|
|
io::ErrorKind::Other,
|
|
|
|
"Request with transfer-encoding header, but not chunked"))
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Ok(false)
|
|
|
|
}
|
|
|
|
}
|
2017-10-07 06:48:14 +02:00
|
|
|
}
|
|
|
|
|
2017-10-07 08:14:13 +02:00
|
|
|
/// Represents various types of http message body.
|
2017-10-07 06:48:14 +02:00
|
|
|
#[derive(Debug)]
|
|
|
|
pub enum Body {
|
2017-10-07 08:14:13 +02:00
|
|
|
/// Empty response. `Content-Length` header is set to `0`
|
2017-10-07 06:48:14 +02:00
|
|
|
Empty,
|
2017-10-07 08:14:13 +02:00
|
|
|
/// Specific response body. `Content-Length` header is set to length of bytes.
|
2017-10-07 06:48:14 +02:00
|
|
|
Binary(Bytes),
|
2017-10-07 08:14:13 +02:00
|
|
|
/// Streaming response body with specified length.
|
2017-10-07 06:48:14 +02:00
|
|
|
Length(u64),
|
2017-10-07 08:14:13 +02:00
|
|
|
/// Unspecified streaming response. Developer is responsible for setting
|
|
|
|
/// right `Content-Length` or `Transfer-Encoding` headers.
|
2017-10-07 06:48:14 +02:00
|
|
|
Streaming,
|
2017-10-08 06:48:00 +02:00
|
|
|
/// Upgrade connection.
|
|
|
|
Upgrade,
|
2017-10-07 06:48:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Body {
|
2017-10-07 08:14:13 +02:00
|
|
|
/// Does this body have payload.
|
2017-10-07 06:48:14 +02:00
|
|
|
pub fn has_body(&self) -> bool {
|
|
|
|
match *self {
|
|
|
|
Body::Length(_) | Body::Streaming => true,
|
|
|
|
_ => false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
/// An HTTP Response
|
2017-10-07 08:14:13 +02:00
|
|
|
pub struct HttpResponse {
|
2017-10-11 02:14:30 +02:00
|
|
|
pub version: Option<Version>,
|
2017-10-10 08:07:32 +02:00
|
|
|
pub headers: HeaderMap,
|
2017-10-07 06:48:14 +02:00
|
|
|
pub status: StatusCode,
|
2017-10-08 06:48:00 +02:00
|
|
|
reason: Option<&'static str>,
|
2017-10-07 06:48:14 +02:00
|
|
|
body: Body,
|
|
|
|
chunked: bool,
|
2017-10-08 06:48:00 +02:00
|
|
|
connection_type: Option<ConnectionType>,
|
2017-10-07 06:48:14 +02:00
|
|
|
}
|
|
|
|
|
2017-10-07 08:14:13 +02:00
|
|
|
impl HttpResponse {
|
2017-10-11 01:03:32 +02:00
|
|
|
|
|
|
|
#[inline]
|
|
|
|
pub fn builder(status: StatusCode) -> Builder {
|
|
|
|
Builder {
|
|
|
|
parts: Some(Parts::new(status)),
|
|
|
|
err: None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-07 08:14:13 +02:00
|
|
|
/// Constructs a response
|
2017-10-07 06:48:14 +02:00
|
|
|
#[inline]
|
2017-10-11 01:03:32 +02:00
|
|
|
pub fn new(status: StatusCode, body: Body) -> HttpResponse {
|
2017-10-07 08:14:13 +02:00
|
|
|
HttpResponse {
|
2017-10-11 02:14:30 +02:00
|
|
|
version: None,
|
2017-10-07 06:48:14 +02:00
|
|
|
headers: Default::default(),
|
|
|
|
status: status,
|
2017-10-08 06:48:00 +02:00
|
|
|
reason: None,
|
2017-10-07 06:48:14 +02:00
|
|
|
body: body,
|
|
|
|
chunked: false,
|
2017-10-10 08:07:32 +02:00
|
|
|
// compression: None,
|
2017-10-08 06:48:00 +02:00
|
|
|
connection_type: None,
|
2017-10-07 06:48:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Get the HTTP version of this response.
|
|
|
|
#[inline]
|
2017-10-11 02:14:30 +02:00
|
|
|
pub fn version(&self) -> Option<Version> {
|
2017-10-07 06:48:14 +02:00
|
|
|
self.version
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Get the headers from the response.
|
|
|
|
#[inline]
|
2017-10-10 08:07:32 +02:00
|
|
|
pub fn headers(&self) -> &HeaderMap {
|
2017-10-07 06:48:14 +02:00
|
|
|
&self.headers
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Get a mutable reference to the headers.
|
|
|
|
#[inline]
|
2017-10-10 08:07:32 +02:00
|
|
|
pub fn headers_mut(&mut self) -> &mut HeaderMap {
|
2017-10-07 06:48:14 +02:00
|
|
|
&mut self.headers
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Get the status from the server.
|
|
|
|
#[inline]
|
|
|
|
pub fn status(&self) -> StatusCode {
|
|
|
|
self.status
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Set the `StatusCode` for this response.
|
|
|
|
#[inline]
|
2017-10-11 01:03:32 +02:00
|
|
|
pub fn status_mut(&mut self) -> &mut StatusCode {
|
|
|
|
&mut self.status
|
2017-10-07 06:48:14 +02:00
|
|
|
}
|
|
|
|
|
2017-10-08 06:48:00 +02:00
|
|
|
/// Set the custom reason for the response.
|
|
|
|
#[inline]
|
2017-10-11 01:03:32 +02:00
|
|
|
pub fn set_reason(&mut self, reason: &'static str) -> &mut Self {
|
2017-10-08 06:48:00 +02:00
|
|
|
self.reason = Some(reason);
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Set connection type
|
2017-10-11 01:03:32 +02:00
|
|
|
pub fn set_connection_type(&mut self, conn: ConnectionType) -> &mut Self{
|
2017-10-08 06:48:00 +02:00
|
|
|
self.connection_type = Some(conn);
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Connection upgrade status
|
|
|
|
pub fn upgrade(&self) -> bool {
|
|
|
|
self.connection_type == Some(ConnectionType::Upgrade)
|
|
|
|
}
|
|
|
|
|
2017-10-07 06:48:14 +02:00
|
|
|
/// Keep-alive status for this connection
|
2017-10-11 01:03:32 +02:00
|
|
|
pub fn keep_alive(&self) -> Option<bool> {
|
2017-10-08 06:48:00 +02:00
|
|
|
if let Some(ConnectionType::KeepAlive) = self.connection_type {
|
2017-10-11 01:03:32 +02:00
|
|
|
Some(true)
|
2017-10-07 06:48:14 +02:00
|
|
|
} else {
|
2017-10-11 01:03:32 +02:00
|
|
|
None
|
2017-10-07 06:48:14 +02:00
|
|
|
}
|
|
|
|
}
|
2017-10-08 06:48:00 +02:00
|
|
|
|
2017-10-07 06:48:14 +02:00
|
|
|
/// Force close connection, even if it is marked as keep-alive
|
|
|
|
pub fn force_close(&mut self) {
|
2017-10-08 06:48:00 +02:00
|
|
|
self.connection_type = Some(ConnectionType::Close);
|
2017-10-07 06:48:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/// 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> {
|
2017-10-10 08:07:32 +02:00
|
|
|
if self.headers.contains_key(header::CONTENT_LENGTH) {
|
2017-10-07 06:48:14 +02:00
|
|
|
Err(io::Error::new(io::ErrorKind::Other,
|
|
|
|
"You can't enable chunked encoding when a content length is set"))
|
|
|
|
} else {
|
|
|
|
self.chunked = true;
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-07 08:14:13 +02:00
|
|
|
/// Get body os this response
|
2017-10-07 06:48:14 +02:00
|
|
|
pub fn body(&self) -> &Body {
|
|
|
|
&self.body
|
|
|
|
}
|
|
|
|
|
2017-10-08 06:48:00 +02:00
|
|
|
/// Set a body
|
2017-10-11 01:03:32 +02:00
|
|
|
pub fn set_body<B: Into<Body>>(&mut self, body: B) {
|
2017-10-08 06:48:00 +02:00
|
|
|
self.body = body.into();
|
|
|
|
}
|
|
|
|
|
2017-10-07 08:14:13 +02:00
|
|
|
/// Set a body and return previous body value
|
2017-10-08 06:48:00 +02:00
|
|
|
pub fn replace_body<B: Into<Body>>(&mut self, body: B) -> Body {
|
2017-10-07 06:48:14 +02:00
|
|
|
mem::replace(&mut self.body, body.into())
|
|
|
|
}
|
|
|
|
}
|
2017-10-11 01:03:32 +02:00
|
|
|
|
2017-10-13 23:43:17 +02:00
|
|
|
/// Helper conversion implementation
|
2017-10-11 02:14:30 +02:00
|
|
|
impl<I: Into<HttpResponse>, E: Into<HttpResponse>> From<Result<I, E>> for HttpResponse {
|
|
|
|
fn from(res: Result<I, E>) -> Self {
|
|
|
|
match res {
|
|
|
|
Ok(val) => val.into(),
|
|
|
|
Err(err) => err.into(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-11 01:03:32 +02:00
|
|
|
#[derive(Debug)]
|
|
|
|
struct Parts {
|
2017-10-11 02:14:30 +02:00
|
|
|
version: Option<Version>,
|
2017-10-11 01:03:32 +02:00
|
|
|
headers: HeaderMap,
|
|
|
|
status: StatusCode,
|
|
|
|
reason: Option<&'static str>,
|
|
|
|
chunked: bool,
|
|
|
|
connection_type: Option<ConnectionType>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Parts {
|
|
|
|
fn new(status: StatusCode) -> Self {
|
|
|
|
Parts {
|
2017-10-11 02:14:30 +02:00
|
|
|
version: None,
|
2017-10-11 01:03:32 +02:00
|
|
|
headers: HeaderMap::new(),
|
|
|
|
status: status,
|
|
|
|
reason: None,
|
|
|
|
chunked: false,
|
|
|
|
connection_type: None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// An HTTP response builder
|
|
|
|
///
|
|
|
|
/// This type can be used to construct an instance of `HttpResponse` through a
|
|
|
|
/// builder-like pattern.
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct Builder {
|
|
|
|
parts: Option<Parts>,
|
|
|
|
err: Option<Error>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Builder {
|
|
|
|
/// 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) {
|
2017-10-11 02:14:30 +02:00
|
|
|
parts.version = Some(version);
|
2017-10-11 01:03:32 +02:00
|
|
|
}
|
|
|
|
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<K, V>(&mut self, key: K, value: V) -> &mut Self
|
|
|
|
where HeaderName: HttpTryFrom<K>,
|
|
|
|
HeaderValue: HttpTryFrom<V>
|
|
|
|
{
|
|
|
|
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) -> Self {
|
|
|
|
if let Some(parts) = parts(&mut self.parts, &self.err) {
|
|
|
|
parts.connection_type = Some(conn);
|
|
|
|
}
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
/// 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 a body
|
|
|
|
pub fn body<B: Into<Body>>(&mut self, body: B) -> Result<HttpResponse, Error> {
|
|
|
|
let parts = self.parts.take().expect("cannot reuse response builder");
|
|
|
|
if let Some(e) = self.err.take() {
|
|
|
|
return Err(e)
|
|
|
|
}
|
|
|
|
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,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn parts<'a>(parts: &'a mut Option<Parts>, err: &Option<Error>) -> Option<&'a mut Parts>
|
|
|
|
{
|
|
|
|
if err.is_some() {
|
|
|
|
return None
|
|
|
|
}
|
|
|
|
parts.as_mut()
|
|
|
|
}
|