2016-08-26 08:55:11 +00:00
|
|
|
use std::cell::RefCell;
|
2017-01-13 15:50:51 +00:00
|
|
|
use std::net::SocketAddr;
|
2016-08-27 01:37:28 +00:00
|
|
|
use std::fmt;
|
|
|
|
|
|
|
|
use term_painter::Color::*;
|
|
|
|
use term_painter::ToStyle;
|
2016-08-26 08:55:11 +00:00
|
|
|
|
2017-01-21 03:31:46 +00:00
|
|
|
use state::Container;
|
|
|
|
|
2016-03-15 03:43:52 +00:00
|
|
|
use error::Error;
|
2016-09-30 08:25:07 +00:00
|
|
|
use super::{FromParam, FromSegments};
|
2016-03-15 03:43:52 +00:00
|
|
|
|
2016-08-26 08:55:11 +00:00
|
|
|
use router::Route;
|
2016-12-21 08:09:22 +00:00
|
|
|
use http::uri::{URI, Segments};
|
2017-01-27 07:08:15 +00:00
|
|
|
use http::{Method, ContentType, Header, HeaderMap, Cookie, Cookies};
|
2016-12-16 00:34:19 +00:00
|
|
|
|
|
|
|
use http::hyper;
|
2016-08-26 08:55:11 +00:00
|
|
|
|
2016-10-21 09:56:57 +00:00
|
|
|
/// The type of an incoming web request.
|
2016-10-01 03:22:06 +00:00
|
|
|
///
|
|
|
|
/// This should be used sparingly in Rocket applications. In particular, it
|
|
|
|
/// should likely only be used when writing
|
2016-12-21 09:30:45 +00:00
|
|
|
/// [FromRequest](/rocket/request/struct.Request.html) implementations. It
|
|
|
|
/// contains all of the information for a given web request except for the body
|
|
|
|
/// data. This includes the HTTP method, URI, cookies, headers, and more.
|
2016-12-16 11:07:23 +00:00
|
|
|
pub struct Request<'r> {
|
|
|
|
method: Method,
|
2016-12-21 08:09:22 +00:00
|
|
|
uri: URI<'r>,
|
2016-12-16 11:07:23 +00:00
|
|
|
headers: HeaderMap<'r>,
|
2017-01-13 15:50:51 +00:00
|
|
|
remote: Option<SocketAddr>,
|
2016-12-16 11:07:23 +00:00
|
|
|
params: RefCell<Vec<(usize, usize)>>,
|
2016-09-12 01:57:04 +00:00
|
|
|
cookies: Cookies,
|
2017-01-21 03:31:46 +00:00
|
|
|
state: Option<&'r Container>,
|
2016-03-22 05:04:39 +00:00
|
|
|
}
|
|
|
|
|
2016-12-16 11:07:23 +00:00
|
|
|
impl<'r> Request<'r> {
|
2016-12-21 09:30:45 +00:00
|
|
|
/// Create a new `Request` with the given `method` and `uri`. The `uri`
|
|
|
|
/// parameter can be of any type that implements `Into<URI>` including
|
|
|
|
/// `&str` and `String`; it must be a valid absolute URI.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use rocket::Request;
|
|
|
|
/// use rocket::http::Method;
|
|
|
|
///
|
|
|
|
/// let request = Request::new(Method::Get, "/uri");
|
|
|
|
/// ```
|
2016-12-21 08:09:22 +00:00
|
|
|
pub fn new<U: Into<URI<'r>>>(method: Method, uri: U) -> Request<'r> {
|
2016-12-16 11:07:23 +00:00
|
|
|
Request {
|
|
|
|
method: method,
|
|
|
|
uri: uri.into(),
|
|
|
|
headers: HeaderMap::new(),
|
2017-01-13 15:50:51 +00:00
|
|
|
remote: None,
|
2016-12-16 11:07:23 +00:00
|
|
|
params: RefCell::new(Vec::new()),
|
|
|
|
cookies: Cookies::new(&[]),
|
2017-01-21 03:31:46 +00:00
|
|
|
state: None
|
2016-12-16 11:07:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-21 09:30:45 +00:00
|
|
|
/// Retrieve the method from `self`.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use rocket::Request;
|
|
|
|
/// use rocket::http::Method;
|
|
|
|
///
|
|
|
|
/// let request = Request::new(Method::Get, "/uri");
|
|
|
|
/// assert_eq!(request.method(), Method::Get);
|
|
|
|
/// ```
|
2016-12-16 11:07:23 +00:00
|
|
|
#[inline(always)]
|
|
|
|
pub fn method(&self) -> Method {
|
|
|
|
self.method
|
|
|
|
}
|
|
|
|
|
2016-12-21 09:30:45 +00:00
|
|
|
/// Set the method of `self`.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use rocket::Request;
|
|
|
|
/// use rocket::http::Method;
|
|
|
|
///
|
|
|
|
/// let mut request = Request::new(Method::Get, "/uri");
|
|
|
|
/// assert_eq!(request.method(), Method::Get);
|
|
|
|
///
|
|
|
|
/// request.set_method(Method::Post);
|
|
|
|
/// assert_eq!(request.method(), Method::Post);
|
|
|
|
/// ```
|
2016-12-16 11:07:23 +00:00
|
|
|
#[inline(always)]
|
|
|
|
pub fn set_method(&mut self, method: Method) {
|
|
|
|
self.method = method;
|
|
|
|
}
|
|
|
|
|
2016-12-21 09:30:45 +00:00
|
|
|
/// Borrow the URI from `self`, which must be an absolute URI.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use rocket::Request;
|
|
|
|
/// use rocket::http::Method;
|
|
|
|
///
|
|
|
|
/// let mut request = Request::new(Method::Get, "/uri");
|
|
|
|
/// assert_eq!(request.uri().as_str(), "/uri");
|
|
|
|
/// ```
|
2016-12-16 11:07:23 +00:00
|
|
|
#[inline(always)]
|
2016-12-21 08:09:22 +00:00
|
|
|
pub fn uri(&self) -> &URI {
|
|
|
|
&self.uri
|
2016-12-16 11:07:23 +00:00
|
|
|
}
|
|
|
|
|
2016-12-21 09:30:45 +00:00
|
|
|
/// Set the URI in `self`. The `uri` parameter can be of any type that
|
|
|
|
/// implements `Into<URI>` including `&str` and `String`; it must be a valid
|
|
|
|
/// absolute URI.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use rocket::Request;
|
|
|
|
/// use rocket::http::Method;
|
|
|
|
///
|
|
|
|
/// let mut request = Request::new(Method::Get, "/uri");
|
|
|
|
///
|
|
|
|
/// request.set_uri("/hello/Sergio?type=greeting");
|
|
|
|
/// assert_eq!(request.uri().as_str(), "/hello/Sergio?type=greeting");
|
|
|
|
/// ```
|
2016-12-16 11:07:23 +00:00
|
|
|
#[inline(always)]
|
2016-12-21 08:09:22 +00:00
|
|
|
pub fn set_uri<'u: 'r, U: Into<URI<'u>>>(&mut self, uri: U) {
|
2016-12-16 11:07:23 +00:00
|
|
|
self.uri = uri.into();
|
|
|
|
self.params = RefCell::new(Vec::new());
|
|
|
|
}
|
|
|
|
|
2017-01-13 15:50:51 +00:00
|
|
|
/// Returns the address of the remote connection that initiated this
|
|
|
|
/// request if the address is known. If the address is not known, `None` is
|
|
|
|
/// returned.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use rocket::Request;
|
|
|
|
/// use rocket::http::Method;
|
|
|
|
///
|
|
|
|
/// let request = Request::new(Method::Get, "/uri");
|
|
|
|
/// assert!(request.remote().is_none());
|
|
|
|
/// ```
|
|
|
|
#[inline(always)]
|
|
|
|
pub fn remote(&self) -> Option<SocketAddr> {
|
|
|
|
self.remote
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Sets the remote address of `self` to `address`.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// Set the remote address to be 127.0.0.1:8000:
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use rocket::Request;
|
|
|
|
/// use rocket::http::Method;
|
|
|
|
/// use std::net::{SocketAddr, IpAddr, Ipv4Addr};
|
|
|
|
///
|
|
|
|
/// let mut request = Request::new(Method::Get, "/uri");
|
|
|
|
///
|
|
|
|
/// let (ip, port) = (IpAddr::V4(Ipv4Addr::new(127, 0, 0, 1)), 8000);
|
|
|
|
/// let localhost = SocketAddr::new(ip, port);
|
|
|
|
/// request.set_remote(localhost);
|
|
|
|
///
|
|
|
|
/// assert_eq!(request.remote(), Some(localhost));
|
|
|
|
/// ```
|
|
|
|
#[doc(hidden)]
|
|
|
|
#[inline(always)]
|
|
|
|
pub fn set_remote(&mut self, address: SocketAddr) {
|
|
|
|
self.remote = Some(address);
|
|
|
|
}
|
|
|
|
|
2016-12-21 09:30:45 +00:00
|
|
|
/// Returns a `HeaderMap` of all of the headers in `self`.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use rocket::Request;
|
|
|
|
/// use rocket::http::{Method, ContentType};
|
|
|
|
///
|
|
|
|
/// let mut request = Request::new(Method::Get, "/uri");
|
|
|
|
/// let header_map = request.headers();
|
|
|
|
/// assert!(header_map.is_empty());
|
|
|
|
/// ```
|
|
|
|
#[inline(always)]
|
|
|
|
pub fn headers(&self) -> &HeaderMap<'r> {
|
|
|
|
&self.headers
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Add the `header` to `self`'s headers.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use rocket::Request;
|
|
|
|
/// use rocket::http::{Method, ContentType};
|
|
|
|
///
|
|
|
|
/// let mut request = Request::new(Method::Get, "/uri");
|
|
|
|
/// assert!(request.headers().is_empty());
|
|
|
|
///
|
2017-02-01 11:12:24 +00:00
|
|
|
/// request.add_header(ContentType::HTML);
|
2016-12-21 09:30:45 +00:00
|
|
|
/// assert!(request.headers().contains("Content-Type"));
|
|
|
|
/// assert_eq!(request.headers().len(), 1);
|
|
|
|
/// ```
|
2016-12-16 11:07:23 +00:00
|
|
|
#[inline(always)]
|
2017-02-01 11:12:24 +00:00
|
|
|
pub fn add_header<H: Into<Header<'r>>>(&mut self, header: H) {
|
|
|
|
self.headers.add(header.into());
|
2016-12-16 11:07:23 +00:00
|
|
|
}
|
|
|
|
|
2016-12-21 09:30:45 +00:00
|
|
|
/// Replaces the value of the header with `header.name` with `header.value`.
|
|
|
|
/// If no such header existed, `header` is added.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use rocket::Request;
|
|
|
|
/// use rocket::http::{Method, ContentType};
|
|
|
|
///
|
|
|
|
/// let mut request = Request::new(Method::Get, "/uri");
|
|
|
|
/// assert!(request.headers().is_empty());
|
|
|
|
///
|
2017-02-01 11:12:24 +00:00
|
|
|
/// request.add_header(ContentType::HTML);
|
|
|
|
/// assert_eq!(request.content_type(), Some(ContentType::HTML));
|
2016-12-21 09:30:45 +00:00
|
|
|
///
|
2017-02-01 11:12:24 +00:00
|
|
|
/// request.replace_header(ContentType::JSON);
|
|
|
|
/// assert_eq!(request.content_type(), Some(ContentType::JSON));
|
2016-12-21 09:30:45 +00:00
|
|
|
/// ```
|
2016-12-16 11:07:23 +00:00
|
|
|
#[inline(always)]
|
2017-02-01 11:12:24 +00:00
|
|
|
pub fn replace_header<H: Into<Header<'r>>>(&mut self, header: H) {
|
|
|
|
self.headers.replace(header.into());
|
2016-12-16 11:07:23 +00:00
|
|
|
}
|
|
|
|
|
2016-12-21 09:30:45 +00:00
|
|
|
/// Returns a borrow to the cookies in `self`.
|
|
|
|
///
|
2017-01-13 15:50:51 +00:00
|
|
|
/// Note that `Cookies` implements internal mutability, so this method
|
|
|
|
/// allows you to get _and_ set cookies in `self`.
|
2016-12-21 09:30:45 +00:00
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// Add a new cookie to a request's cookies:
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use rocket::Request;
|
|
|
|
/// use rocket::http::{Cookie, Method, ContentType};
|
|
|
|
///
|
|
|
|
/// let mut request = Request::new(Method::Get, "/uri");
|
2017-01-27 07:08:15 +00:00
|
|
|
/// request.cookies().add(Cookie::new("key", "val"));
|
|
|
|
/// request.cookies().add(Cookie::new("ans", format!("life: {}", 38 + 4)));
|
2016-12-21 09:30:45 +00:00
|
|
|
/// ```
|
2016-12-16 11:07:23 +00:00
|
|
|
#[inline(always)]
|
|
|
|
pub fn cookies(&self) -> &Cookies {
|
|
|
|
&self.cookies
|
|
|
|
}
|
|
|
|
|
2016-12-21 09:30:45 +00:00
|
|
|
/// Replace all of the cookies in `self` with `cookies`.
|
|
|
|
#[doc(hidden)]
|
2016-12-16 11:07:23 +00:00
|
|
|
#[inline(always)]
|
|
|
|
pub fn set_cookies(&mut self, cookies: Cookies) {
|
|
|
|
self.cookies = cookies;
|
|
|
|
}
|
|
|
|
|
2017-02-01 11:12:24 +00:00
|
|
|
/// Returns `Some` of the Content-Type header of `self`. If the header is
|
|
|
|
/// not present, returns `None`.
|
2016-12-21 09:30:45 +00:00
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use rocket::Request;
|
|
|
|
/// use rocket::http::{Method, ContentType};
|
|
|
|
///
|
|
|
|
/// let mut request = Request::new(Method::Get, "/uri");
|
2017-02-01 11:12:24 +00:00
|
|
|
/// assert_eq!(request.content_type(), None);
|
2016-12-21 09:30:45 +00:00
|
|
|
///
|
2017-02-01 11:12:24 +00:00
|
|
|
/// request.replace_header(ContentType::JSON);
|
|
|
|
/// assert_eq!(request.content_type(), Some(ContentType::JSON));
|
2016-12-21 09:30:45 +00:00
|
|
|
/// ```
|
2016-12-16 11:07:23 +00:00
|
|
|
#[inline(always)]
|
2017-02-01 11:12:24 +00:00
|
|
|
pub fn content_type(&self) -> Option<ContentType> {
|
2016-12-16 11:07:23 +00:00
|
|
|
self.headers().get_one("Content-Type")
|
|
|
|
.and_then(|value| value.parse().ok())
|
|
|
|
}
|
|
|
|
|
2016-12-31 05:51:23 +00:00
|
|
|
/// Retrieves and parses into `T` the 0-indexed `n`th dynamic parameter from
|
|
|
|
/// the request. Returns `Error::NoKey` if `n` is greater than the number of
|
2016-10-01 03:22:06 +00:00
|
|
|
/// params. Returns `Error::BadParse` if the parameter type `T` can't be
|
|
|
|
/// parsed from the parameter.
|
|
|
|
///
|
2016-12-21 09:30:45 +00:00
|
|
|
/// This method exists only to be used by manual routing. To retrieve
|
|
|
|
/// parameters from a request, use Rocket's code generation facilities.
|
|
|
|
///
|
2016-10-01 03:22:06 +00:00
|
|
|
/// # Example
|
|
|
|
///
|
2016-12-21 09:30:45 +00:00
|
|
|
/// Retrieve parameter `0`, which is expected to be an `&str`, in a manual
|
|
|
|
/// route:
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use rocket::{Request, Data};
|
|
|
|
/// use rocket::handler::Outcome;
|
2016-10-01 03:22:06 +00:00
|
|
|
///
|
2016-12-21 09:30:45 +00:00
|
|
|
/// fn name<'a>(req: &'a Request, _: Data) -> Outcome<'a> {
|
|
|
|
/// Outcome::of(req.get_param(0).unwrap_or("unnamed"))
|
2016-10-01 03:22:06 +00:00
|
|
|
/// }
|
|
|
|
/// ```
|
2016-12-16 11:07:23 +00:00
|
|
|
pub fn get_param<'a, T: FromParam<'a>>(&'a self, n: usize) -> Result<T, Error> {
|
2016-10-31 17:51:19 +00:00
|
|
|
let param = self.get_param_str(n).ok_or(Error::NoKey)?;
|
|
|
|
T::from_param(param).map_err(|_| Error::BadParse)
|
|
|
|
}
|
|
|
|
|
2016-12-21 09:30:45 +00:00
|
|
|
/// Set `self`'s parameters given that the route used to reach this request
|
|
|
|
/// was `route`. This should only be used internally by `Rocket` as improper
|
|
|
|
/// use may result in out of bounds indexing.
|
2017-01-13 15:50:51 +00:00
|
|
|
/// TODO: Figure out the mount path from here.
|
2016-12-16 11:07:23 +00:00
|
|
|
#[doc(hidden)]
|
|
|
|
#[inline(always)]
|
|
|
|
pub fn set_params(&self, route: &Route) {
|
|
|
|
*self.params.borrow_mut() = route.get_param_indexes(self.uri());
|
|
|
|
}
|
|
|
|
|
2016-12-21 09:30:45 +00:00
|
|
|
/// Get the `n`th path parameter as a string, if it exists.
|
2016-10-31 17:51:19 +00:00
|
|
|
#[doc(hidden)]
|
|
|
|
pub fn get_param_str(&self, n: usize) -> Option<&str> {
|
2016-08-26 08:55:11 +00:00
|
|
|
let params = self.params.borrow();
|
2016-10-07 03:57:17 +00:00
|
|
|
if n >= params.len() {
|
|
|
|
debug!("{} is >= param count {}", n, params.len());
|
2016-12-16 11:07:23 +00:00
|
|
|
return None;
|
2016-08-26 08:55:11 +00:00
|
|
|
}
|
|
|
|
|
2016-12-16 11:07:23 +00:00
|
|
|
let (i, j) = params[n];
|
2016-12-31 05:51:23 +00:00
|
|
|
let path = self.uri.path();
|
|
|
|
if j > path.len() {
|
2016-12-16 11:07:23 +00:00
|
|
|
error!("Couldn't retrieve parameter: internal count incorrect.");
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
2016-12-31 05:51:23 +00:00
|
|
|
Some(&path[i..j])
|
2016-09-12 01:57:04 +00:00
|
|
|
}
|
|
|
|
|
2016-10-01 03:22:06 +00:00
|
|
|
/// Retrieves and parses into `T` all of the path segments in the request
|
2016-12-31 05:51:23 +00:00
|
|
|
/// URI beginning at the 0-indexed `n`th dynamic parameter. `T` must
|
|
|
|
/// implement [FromSegments](/rocket/request/trait.FromSegments.html), which
|
|
|
|
/// is used to parse the segments.
|
|
|
|
///
|
|
|
|
/// This method exists only to be used by manual routing. To retrieve
|
|
|
|
/// segments from a request, use Rocket's code generation facilities.
|
2016-12-21 09:30:45 +00:00
|
|
|
///
|
|
|
|
/// # Error
|
|
|
|
///
|
2016-12-31 05:51:23 +00:00
|
|
|
/// If there are less than `n` segments, returns an `Err` of `NoKey`. If
|
2016-12-21 09:30:45 +00:00
|
|
|
/// parsing the segments failed, returns an `Err` of `BadParse`.
|
|
|
|
///
|
|
|
|
/// # Example
|
2016-10-01 03:22:06 +00:00
|
|
|
///
|
2016-12-31 05:51:23 +00:00
|
|
|
/// If the request URI is `"/hello/there/i/am/here"`, and the matched route
|
|
|
|
/// path for this request is `"/hello/<name>/i/<segs..>"`, then
|
2016-10-01 03:22:06 +00:00
|
|
|
/// `request.get_segments::<T>(1)` will attempt to parse the segments
|
2016-12-31 05:51:23 +00:00
|
|
|
/// `"am/here"` as type `T`.
|
|
|
|
pub fn get_segments<'a, T: FromSegments<'a>>(&'a self, n: usize)
|
2016-12-16 00:34:19 +00:00
|
|
|
-> Result<T, Error> {
|
2016-12-31 05:51:23 +00:00
|
|
|
let segments = self.get_raw_segments(n).ok_or(Error::NoKey)?;
|
2016-10-31 17:51:19 +00:00
|
|
|
T::from_segments(segments).map_err(|_| Error::BadParse)
|
|
|
|
}
|
|
|
|
|
2016-12-31 05:51:23 +00:00
|
|
|
/// Get the segments beginning at the `n`th dynamic parameter, if they
|
|
|
|
/// exist.
|
2016-10-31 17:51:19 +00:00
|
|
|
#[doc(hidden)]
|
2016-12-31 05:51:23 +00:00
|
|
|
pub fn get_raw_segments(&self, n: usize) -> Option<Segments> {
|
|
|
|
let params = self.params.borrow();
|
|
|
|
if n >= params.len() {
|
|
|
|
debug!("{} is >= param (segments) count {}", n, params.len());
|
|
|
|
return None;
|
2016-09-08 07:02:17 +00:00
|
|
|
}
|
2016-12-31 05:51:23 +00:00
|
|
|
|
|
|
|
let (i, j) = params[n];
|
|
|
|
let path = self.uri.path();
|
|
|
|
if j > path.len() {
|
|
|
|
error!("Couldn't retrieve segments: internal count incorrect.");
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
Some(Segments(&path[i..j]))
|
2016-09-08 07:02:17 +00:00
|
|
|
}
|
|
|
|
|
2017-01-21 03:31:46 +00:00
|
|
|
/// Get the managed state container, if it exists. For internal use only!
|
|
|
|
#[doc(hidden)]
|
|
|
|
pub fn get_state(&self) -> Option<&'r Container> {
|
|
|
|
self.state
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Set the state. For internal use only!
|
|
|
|
#[doc(hidden)]
|
|
|
|
pub fn set_state(&mut self, state: &'r Container) {
|
|
|
|
self.state = Some(state);
|
|
|
|
}
|
|
|
|
|
2016-12-21 09:30:45 +00:00
|
|
|
/// Convert from Hyper types into a Rocket Request.
|
2016-10-01 03:22:06 +00:00
|
|
|
#[doc(hidden)]
|
2016-12-16 11:07:23 +00:00
|
|
|
pub fn from_hyp(h_method: hyper::Method,
|
|
|
|
h_headers: hyper::header::Headers,
|
2017-01-13 15:50:51 +00:00
|
|
|
h_uri: hyper::RequestUri,
|
|
|
|
h_addr: SocketAddr,
|
2017-01-21 03:31:46 +00:00
|
|
|
) -> Result<Request<'r>, String> {
|
2016-12-16 11:07:23 +00:00
|
|
|
// Get a copy of the URI for later use.
|
2016-08-26 08:55:11 +00:00
|
|
|
let uri = match h_uri {
|
2016-12-21 08:09:22 +00:00
|
|
|
hyper::RequestUri::AbsolutePath(s) => s,
|
2016-09-30 22:20:11 +00:00
|
|
|
_ => return Err(format!("Bad URI: {}", h_uri)),
|
2016-08-27 01:37:28 +00:00
|
|
|
};
|
|
|
|
|
2016-12-16 11:07:23 +00:00
|
|
|
// Ensure that the method is known. TODO: Allow made-up methods?
|
2016-08-27 01:37:28 +00:00
|
|
|
let method = match Method::from_hyp(&h_method) {
|
2016-10-09 04:37:28 +00:00
|
|
|
Some(method) => method,
|
2016-12-16 11:07:23 +00:00
|
|
|
None => return Err(format!("Invalid method: {}", h_method))
|
2016-08-26 08:55:11 +00:00
|
|
|
};
|
|
|
|
|
2016-12-16 11:07:23 +00:00
|
|
|
// Construct the request object.
|
|
|
|
let mut request = Request::new(method, uri);
|
2016-09-12 01:57:04 +00:00
|
|
|
|
2016-12-16 11:07:23 +00:00
|
|
|
// Set the request cookies, if they exist. TODO: Use session key.
|
2017-01-27 07:08:15 +00:00
|
|
|
if let Some(cookie_headers) = h_headers.get_raw("Cookie") {
|
|
|
|
let mut cookies = Cookies::new(&[]);
|
|
|
|
for header in cookie_headers {
|
|
|
|
let raw_str = match ::std::str::from_utf8(header) {
|
|
|
|
Ok(string) => string,
|
|
|
|
Err(_) => continue
|
|
|
|
};
|
|
|
|
|
|
|
|
for cookie_str in raw_str.split(";") {
|
|
|
|
let cookie = match Cookie::parse_encoded(cookie_str.to_string()) {
|
|
|
|
Ok(cookie) => cookie,
|
|
|
|
Err(_) => continue
|
|
|
|
};
|
|
|
|
|
|
|
|
cookies.add_original(cookie);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
request.set_cookies(cookies);
|
2016-12-16 00:34:19 +00:00
|
|
|
}
|
|
|
|
|
2016-12-16 11:07:23 +00:00
|
|
|
// Set the rest of the headers.
|
|
|
|
for hyp in h_headers.iter() {
|
|
|
|
let header = Header::new(hyp.name().to_string(), hyp.value_string());
|
|
|
|
request.add_header(header);
|
|
|
|
}
|
2016-08-27 01:37:28 +00:00
|
|
|
|
2017-01-13 15:50:51 +00:00
|
|
|
// Set the remote address.
|
|
|
|
request.set_remote(h_addr);
|
|
|
|
|
2016-08-27 01:37:28 +00:00
|
|
|
Ok(request)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-16 11:07:23 +00:00
|
|
|
impl<'r> fmt::Display for Request<'r> {
|
2016-10-01 03:22:06 +00:00
|
|
|
/// Pretty prints a Request. This is primarily used by Rocket's logging
|
|
|
|
/// infrastructure.
|
2016-08-27 01:37:28 +00:00
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
2016-10-13 02:08:19 +00:00
|
|
|
write!(f, "{} {}", Green.paint(&self.method), Blue.paint(&self.uri))?;
|
2017-02-01 11:12:24 +00:00
|
|
|
if let Some(content_type) = self.content_type() {
|
|
|
|
if self.method.supports_payload() {
|
|
|
|
write!(f, " {}", Yellow.paint(content_type))?;
|
|
|
|
}
|
2016-10-13 02:08:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
2016-03-15 03:43:52 +00:00
|
|
|
}
|
|
|
|
}
|