2017-10-16 19:31:31 +02:00
|
|
|
//! HTTP Request message related code.
|
2018-07-04 17:01:27 +02:00
|
|
|
use std::cell::{Ref, RefMut};
|
2018-06-17 04:54:30 +02:00
|
|
|
use std::collections::HashMap;
|
2018-05-02 02:19:15 +02:00
|
|
|
use std::net::SocketAddr;
|
2018-06-25 06:58:04 +02:00
|
|
|
use std::ops::Deref;
|
2018-05-02 02:19:15 +02:00
|
|
|
use std::rc::Rc;
|
2018-07-04 17:01:27 +02:00
|
|
|
use std::{fmt, str};
|
2018-05-02 02:19:15 +02:00
|
|
|
|
2017-12-08 01:40:29 +01:00
|
|
|
use cookie::Cookie;
|
2018-04-14 01:02:01 +02:00
|
|
|
use futures_cpupool::CpuPool;
|
2018-06-16 23:22:08 +02:00
|
|
|
use http::{header, HeaderMap, Method, StatusCode, Uri, Version};
|
2018-04-14 01:02:01 +02:00
|
|
|
use url::{form_urlencoded, Url};
|
2017-10-15 07:52:38 +02:00
|
|
|
|
2018-03-23 05:14:57 +01:00
|
|
|
use body::Body;
|
2018-07-04 17:01:27 +02:00
|
|
|
use error::{CookieParseError, UrlGenerationError};
|
2018-06-16 23:22:08 +02:00
|
|
|
use extensions::Extensions;
|
2018-03-29 22:12:28 +02:00
|
|
|
use handler::FromRequest;
|
2018-02-28 00:03:28 +01:00
|
|
|
use httpmessage::HttpMessage;
|
2018-03-23 05:14:57 +01:00
|
|
|
use httpresponse::{HttpResponse, HttpResponseBuilder};
|
2018-04-14 01:02:01 +02:00
|
|
|
use info::ConnectionInfo;
|
|
|
|
use param::Params;
|
|
|
|
use payload::Payload;
|
2018-07-15 11:24:27 +02:00
|
|
|
use router::ResourceInfo;
|
2018-07-04 17:01:27 +02:00
|
|
|
use server::Request;
|
2017-12-06 02:09:15 +01:00
|
|
|
|
2018-06-17 04:54:30 +02:00
|
|
|
struct Query(HashMap<String, String>);
|
2018-05-15 19:09:48 +02:00
|
|
|
struct Cookies(Vec<Cookie<'static>>);
|
2018-05-15 18:53:58 +02:00
|
|
|
|
2018-06-25 06:58:04 +02:00
|
|
|
/// An HTTP Request
|
|
|
|
pub struct HttpRequest<S = ()> {
|
2018-07-04 18:52:49 +02:00
|
|
|
req: Option<Request>,
|
2018-06-25 06:58:04 +02:00
|
|
|
state: Rc<S>,
|
2018-07-15 11:24:27 +02:00
|
|
|
resource: ResourceInfo,
|
2017-12-09 13:33:40 +01:00
|
|
|
}
|
|
|
|
|
2018-06-25 06:58:04 +02:00
|
|
|
impl<S> HttpMessage for HttpRequest<S> {
|
|
|
|
type Stream = Payload;
|
2017-11-27 05:32:12 +01:00
|
|
|
|
|
|
|
#[inline]
|
2018-06-25 06:58:04 +02:00
|
|
|
fn headers(&self) -> &HeaderMap {
|
2018-07-04 18:52:49 +02:00
|
|
|
self.request().headers()
|
2017-12-15 04:34:31 +01:00
|
|
|
}
|
|
|
|
|
2017-12-16 07:49:48 +01:00
|
|
|
#[inline]
|
2018-06-25 06:58:04 +02:00
|
|
|
fn payload(&self) -> Payload {
|
2018-07-04 18:52:49 +02:00
|
|
|
if let Some(payload) = self.request().inner.payload.borrow_mut().take() {
|
2018-06-25 06:58:04 +02:00
|
|
|
payload
|
|
|
|
} else {
|
|
|
|
Payload::empty()
|
|
|
|
}
|
2018-06-08 04:46:38 +02:00
|
|
|
}
|
2017-11-27 06:18:38 +01:00
|
|
|
}
|
|
|
|
|
2018-06-25 06:58:04 +02:00
|
|
|
impl<S> Deref for HttpRequest<S> {
|
|
|
|
type Target = Request;
|
|
|
|
|
|
|
|
fn deref(&self) -> &Request {
|
2018-07-04 18:52:49 +02:00
|
|
|
self.request()
|
2018-02-28 00:03:28 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-27 06:18:38 +01:00
|
|
|
impl<S> HttpRequest<S> {
|
2018-01-01 02:26:32 +01:00
|
|
|
#[inline]
|
2018-07-15 11:24:27 +02:00
|
|
|
pub(crate) fn new(
|
|
|
|
req: Request, state: Rc<S>, resource: ResourceInfo,
|
|
|
|
) -> HttpRequest<S> {
|
2018-06-25 06:58:04 +02:00
|
|
|
HttpRequest {
|
|
|
|
state,
|
2018-07-15 11:24:27 +02:00
|
|
|
resource,
|
2018-07-04 18:52:49 +02:00
|
|
|
req: Some(req),
|
2018-06-25 06:58:04 +02:00
|
|
|
}
|
2018-01-01 02:26:32 +01:00
|
|
|
}
|
|
|
|
|
2017-12-16 07:49:48 +01:00
|
|
|
#[inline]
|
2018-06-25 06:58:04 +02:00
|
|
|
/// Construct new http request with state.
|
|
|
|
pub(crate) fn with_state<NS>(&self, state: Rc<NS>) -> HttpRequest<NS> {
|
|
|
|
HttpRequest {
|
|
|
|
state,
|
2018-07-04 18:57:40 +02:00
|
|
|
req: self.req.as_ref().map(|r| r.clone()),
|
2018-07-15 11:24:27 +02:00
|
|
|
resource: self.resource.clone(),
|
2018-06-25 06:58:04 +02:00
|
|
|
}
|
2017-12-03 01:37:21 +01:00
|
|
|
}
|
|
|
|
|
2018-08-08 22:57:13 +02:00
|
|
|
/// Construct new http request with empty state.
|
|
|
|
pub fn drop_state(&self) -> HttpRequest {
|
|
|
|
HttpRequest {
|
2018-08-08 23:23:16 +02:00
|
|
|
state: Rc::new(()),
|
2018-08-08 22:57:13 +02:00
|
|
|
req: self.req.as_ref().map(|r| r.clone()),
|
|
|
|
resource: self.resource.clone(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-18 00:41:41 +02:00
|
|
|
#[inline]
|
2018-06-25 06:58:04 +02:00
|
|
|
/// Construct new http request with new RouteInfo.
|
2018-07-15 11:24:27 +02:00
|
|
|
pub(crate) fn with_route_info(&self, mut resource: ResourceInfo) -> HttpRequest<S> {
|
|
|
|
resource.merge(&self.resource);
|
2018-07-15 11:12:21 +02:00
|
|
|
|
2018-06-25 06:58:04 +02:00
|
|
|
HttpRequest {
|
2018-07-15 11:24:27 +02:00
|
|
|
resource,
|
2018-07-04 18:57:40 +02:00
|
|
|
req: self.req.as_ref().map(|r| r.clone()),
|
2018-06-25 06:58:04 +02:00
|
|
|
state: self.state.clone(),
|
|
|
|
}
|
2017-11-27 05:32:12 +01:00
|
|
|
}
|
2017-10-22 07:59:09 +02:00
|
|
|
|
2018-06-25 06:58:04 +02:00
|
|
|
/// Shared application state
|
2018-06-18 00:41:41 +02:00
|
|
|
#[inline]
|
2018-06-25 06:58:04 +02:00
|
|
|
pub fn state(&self) -> &S {
|
|
|
|
&self.state
|
2017-12-15 04:34:31 +01:00
|
|
|
}
|
|
|
|
|
2017-12-07 01:26:27 +01:00
|
|
|
#[inline]
|
2018-06-25 06:58:04 +02:00
|
|
|
/// Server request
|
|
|
|
pub fn request(&self) -> &Request {
|
2018-07-04 18:52:49 +02:00
|
|
|
self.req.as_ref().unwrap()
|
2017-11-27 06:18:38 +01:00
|
|
|
}
|
|
|
|
|
2018-03-07 23:56:53 +01:00
|
|
|
/// Request extensions
|
2017-10-22 07:59:09 +02:00
|
|
|
#[inline]
|
2018-06-25 06:58:04 +02:00
|
|
|
pub fn extensions(&self) -> Ref<Extensions> {
|
2018-07-04 18:52:49 +02:00
|
|
|
self.request().extensions()
|
2017-10-22 07:59:09 +02:00
|
|
|
}
|
|
|
|
|
2018-05-06 18:07:30 +02:00
|
|
|
/// Mutable reference to a the request's extensions
|
2018-04-19 04:05:24 +02:00
|
|
|
#[inline]
|
2018-06-25 06:58:04 +02:00
|
|
|
pub fn extensions_mut(&self) -> RefMut<Extensions> {
|
2018-07-04 18:52:49 +02:00
|
|
|
self.request().extensions_mut()
|
2018-04-19 04:05:24 +02:00
|
|
|
}
|
|
|
|
|
2018-03-07 23:56:53 +01:00
|
|
|
/// Default `CpuPool`
|
|
|
|
#[inline]
|
|
|
|
#[doc(hidden)]
|
2018-03-08 02:40:13 +01:00
|
|
|
pub fn cpu_pool(&self) -> &CpuPool {
|
2018-07-04 18:52:49 +02:00
|
|
|
self.request().server_settings().cpu_pool()
|
2018-03-07 23:56:53 +01:00
|
|
|
}
|
|
|
|
|
2018-06-25 06:58:04 +02:00
|
|
|
#[inline]
|
2018-03-23 05:14:57 +01:00
|
|
|
/// Create http response
|
|
|
|
pub fn response(&self, status: StatusCode, body: Body) -> HttpResponse {
|
2018-07-04 18:52:49 +02:00
|
|
|
self.request().server_settings().get_response(status, body)
|
2018-03-23 05:14:57 +01:00
|
|
|
}
|
|
|
|
|
2018-06-25 06:58:04 +02:00
|
|
|
#[inline]
|
2018-03-23 05:14:57 +01:00
|
|
|
/// Create http response builder
|
|
|
|
pub fn build_response(&self, status: StatusCode) -> HttpResponseBuilder {
|
2018-07-04 18:52:49 +02:00
|
|
|
self.request()
|
|
|
|
.server_settings()
|
|
|
|
.get_response_builder(status)
|
2017-12-06 02:09:15 +01:00
|
|
|
}
|
|
|
|
|
2017-12-01 04:01:25 +01:00
|
|
|
/// Read the Request Uri.
|
|
|
|
#[inline]
|
2018-04-14 01:02:01 +02:00
|
|
|
pub fn uri(&self) -> &Uri {
|
2018-06-25 06:58:04 +02:00
|
|
|
self.request().inner.url.uri()
|
2018-04-14 01:02:01 +02:00
|
|
|
}
|
2017-12-01 04:01:25 +01:00
|
|
|
|
2017-10-15 07:52:38 +02:00
|
|
|
/// Read the Request method.
|
|
|
|
#[inline]
|
2018-04-14 01:02:01 +02:00
|
|
|
pub fn method(&self) -> &Method {
|
2018-06-25 06:58:04 +02:00
|
|
|
&self.request().inner.method
|
2018-04-14 01:02:01 +02:00
|
|
|
}
|
2017-10-15 07:52:38 +02:00
|
|
|
|
|
|
|
/// Read the Request Version.
|
2017-11-10 22:26:12 +01:00
|
|
|
#[inline]
|
2017-10-15 07:52:38 +02:00
|
|
|
pub fn version(&self) -> Version {
|
2018-06-25 06:58:04 +02:00
|
|
|
self.request().inner.version
|
2017-12-06 06:38:52 +01:00
|
|
|
}
|
|
|
|
|
2017-10-15 07:52:38 +02:00
|
|
|
/// The target path of this Request.
|
|
|
|
#[inline]
|
|
|
|
pub fn path(&self) -> &str {
|
2018-06-25 06:58:04 +02:00
|
|
|
self.request().inner.url.path()
|
2018-03-29 01:10:58 +02:00
|
|
|
}
|
|
|
|
|
2018-06-25 06:58:04 +02:00
|
|
|
/// Get *ConnectionInfo* for the correct request.
|
|
|
|
#[inline]
|
|
|
|
pub fn connection_info(&self) -> Ref<ConnectionInfo> {
|
|
|
|
self.request().connection_info()
|
2017-11-30 00:07:49 +01:00
|
|
|
}
|
|
|
|
|
2017-12-19 20:34:51 +01:00
|
|
|
/// Generate url for named resource
|
|
|
|
///
|
|
|
|
/// ```rust
|
2018-06-02 22:45:29 +02:00
|
|
|
/// # extern crate actix_web;
|
|
|
|
/// # use actix_web::{App, HttpRequest, HttpResponse, http};
|
|
|
|
/// #
|
2017-12-19 20:34:51 +01:00
|
|
|
/// fn index(req: HttpRequest) -> HttpResponse {
|
|
|
|
/// let url = req.url_for("foo", &["1", "2", "3"]); // <- generate url for "foo" resource
|
2018-03-31 08:07:33 +02:00
|
|
|
/// HttpResponse::Ok().into()
|
2017-12-19 20:34:51 +01:00
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// fn main() {
|
2018-03-31 09:16:55 +02:00
|
|
|
/// let app = App::new()
|
2017-12-19 20:34:51 +01:00
|
|
|
/// .resource("/test/{one}/{two}/{three}", |r| {
|
|
|
|
/// r.name("foo"); // <- set resource name, then it could be used in `url_for`
|
2018-03-31 08:07:33 +02:00
|
|
|
/// r.method(http::Method::GET).f(|_| HttpResponse::Ok());
|
2017-12-19 20:34:51 +01:00
|
|
|
/// })
|
|
|
|
/// .finish();
|
|
|
|
/// }
|
|
|
|
/// ```
|
2018-04-14 01:02:01 +02:00
|
|
|
pub fn url_for<U, I>(
|
2018-05-17 21:20:20 +02:00
|
|
|
&self, name: &str, elements: U,
|
2018-04-14 01:02:01 +02:00
|
|
|
) -> Result<Url, UrlGenerationError>
|
|
|
|
where
|
|
|
|
U: IntoIterator<Item = I>,
|
|
|
|
I: AsRef<str>,
|
2017-12-07 01:26:27 +01:00
|
|
|
{
|
2018-07-15 11:24:27 +02:00
|
|
|
self.resource.url_for(&self, name, elements)
|
2017-12-07 01:26:27 +01:00
|
|
|
}
|
|
|
|
|
2018-06-02 20:44:09 +02:00
|
|
|
/// Generate url for named resource
|
|
|
|
///
|
|
|
|
/// This method is similar to `HttpRequest::url_for()` but it can be used
|
|
|
|
/// for urls that do not contain variable parts.
|
|
|
|
pub fn url_for_static(&self, name: &str) -> Result<Url, UrlGenerationError> {
|
|
|
|
const NO_PARAMS: [&str; 0] = [];
|
|
|
|
self.url_for(name, &NO_PARAMS)
|
|
|
|
}
|
|
|
|
|
2018-10-14 17:08:12 +02:00
|
|
|
/// This method returns reference to current `ResourceInfo` object.
|
2017-12-07 01:26:27 +01:00
|
|
|
#[inline]
|
2018-07-15 11:24:27 +02:00
|
|
|
pub fn resource(&self) -> &ResourceInfo {
|
|
|
|
&self.resource
|
2018-04-02 02:37:22 +02:00
|
|
|
}
|
|
|
|
|
2017-12-19 20:34:51 +01:00
|
|
|
/// Peer socket address
|
|
|
|
///
|
2018-01-15 22:47:25 +01:00
|
|
|
/// Peer address is actual socket address, if proxy is used in front of
|
2017-12-19 20:34:51 +01:00
|
|
|
/// actix http server, then peer address would be address of this proxy.
|
|
|
|
///
|
2018-04-14 01:02:01 +02:00
|
|
|
/// To get client connection information `connection_info()` method should
|
|
|
|
/// be used.
|
2017-11-10 22:26:12 +01:00
|
|
|
#[inline]
|
2018-04-23 00:28:04 +02:00
|
|
|
pub fn peer_addr(&self) -> Option<SocketAddr> {
|
2018-06-25 06:58:04 +02:00
|
|
|
self.request().inner.addr
|
2017-11-10 22:08:15 +01:00
|
|
|
}
|
|
|
|
|
2018-06-17 04:57:51 +02:00
|
|
|
/// url query parameters.
|
2018-06-25 06:58:04 +02:00
|
|
|
pub fn query(&self) -> Ref<HashMap<String, String>> {
|
2018-05-17 21:23:37 +02:00
|
|
|
if self.extensions().get::<Query>().is_none() {
|
2018-06-17 04:54:30 +02:00
|
|
|
let mut query = HashMap::new();
|
2017-12-28 04:02:29 +01:00
|
|
|
for (key, val) in form_urlencoded::parse(self.query_string().as_ref()) {
|
2018-06-17 04:54:30 +02:00
|
|
|
query.insert(key.as_ref().to_string(), val.to_string());
|
2017-12-28 04:02:29 +01:00
|
|
|
}
|
2018-06-25 06:58:04 +02:00
|
|
|
self.extensions_mut().insert(Query(query));
|
2017-10-29 14:03:21 +01:00
|
|
|
}
|
2018-06-25 06:58:04 +02:00
|
|
|
Ref::map(self.extensions(), |ext| &ext.get::<Query>().unwrap().0)
|
2017-10-16 18:43:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/// The query string in the URL.
|
|
|
|
///
|
|
|
|
/// E.g., id=10
|
|
|
|
#[inline]
|
|
|
|
pub fn query_string(&self) -> &str {
|
2017-12-19 20:46:11 +01:00
|
|
|
if let Some(query) = self.uri().query().as_ref() {
|
2017-12-01 04:01:25 +01:00
|
|
|
query
|
|
|
|
} else {
|
|
|
|
""
|
|
|
|
}
|
2017-10-15 07:52:38 +02:00
|
|
|
}
|
|
|
|
|
2017-12-08 03:00:20 +01:00
|
|
|
/// Load request cookies.
|
2018-06-25 06:58:04 +02:00
|
|
|
#[inline]
|
|
|
|
pub fn cookies(&self) -> Result<Ref<Vec<Cookie<'static>>>, CookieParseError> {
|
|
|
|
if self.extensions().get::<Cookies>().is_none() {
|
2017-12-08 03:00:20 +01:00
|
|
|
let mut cookies = Vec::new();
|
2018-06-25 06:58:04 +02:00
|
|
|
for hdr in self.request().inner.headers.get_all(header::COOKIE) {
|
2018-08-23 18:48:01 +02:00
|
|
|
let s =
|
|
|
|
str::from_utf8(hdr.as_bytes()).map_err(CookieParseError::from)?;
|
2018-03-08 20:16:54 +01:00
|
|
|
for cookie_str in s.split(';').map(|s| s.trim()) {
|
|
|
|
if !cookie_str.is_empty() {
|
|
|
|
cookies.push(Cookie::parse_encoded(cookie_str)?.into_owned());
|
|
|
|
}
|
|
|
|
}
|
2017-12-08 03:00:20 +01:00
|
|
|
}
|
2018-06-25 06:58:04 +02:00
|
|
|
self.extensions_mut().insert(Cookies(cookies));
|
2017-12-08 03:00:20 +01:00
|
|
|
}
|
2018-06-25 06:58:04 +02:00
|
|
|
Ok(Ref::map(self.extensions(), |ext| {
|
|
|
|
&ext.get::<Cookies>().unwrap().0
|
|
|
|
}))
|
2017-12-08 03:00:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Return request cookie.
|
2018-06-25 06:58:04 +02:00
|
|
|
#[inline]
|
|
|
|
pub fn cookie(&self, name: &str) -> Option<Cookie<'static>> {
|
2017-12-08 03:00:20 +01:00
|
|
|
if let Ok(cookies) = self.cookies() {
|
2018-06-25 06:58:04 +02:00
|
|
|
for cookie in cookies.iter() {
|
2017-12-08 03:00:20 +01:00
|
|
|
if cookie.name() == name {
|
2018-06-25 06:58:04 +02:00
|
|
|
return Some(cookie.to_owned());
|
2017-11-09 06:01:56 +01:00
|
|
|
}
|
2017-10-15 07:52:38 +02:00
|
|
|
}
|
|
|
|
}
|
2017-12-08 03:00:20 +01:00
|
|
|
None
|
2017-10-15 07:52:38 +02:00
|
|
|
}
|
|
|
|
|
2018-05-15 19:09:48 +02:00
|
|
|
pub(crate) fn set_cookies(&mut self, cookies: Option<Vec<Cookie<'static>>>) {
|
|
|
|
if let Some(cookies) = cookies {
|
|
|
|
self.extensions_mut().insert(Cookies(cookies));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-15 07:52:38 +02:00
|
|
|
/// Get a reference to the Params object.
|
2018-03-27 03:18:38 +02:00
|
|
|
///
|
2017-10-15 07:52:38 +02:00
|
|
|
/// Params is a container for url parameters.
|
2018-04-17 16:51:06 +02:00
|
|
|
/// A variable segment is specified in the form `{identifier}`,
|
|
|
|
/// where the identifier can be used later in a request handler to
|
|
|
|
/// access the matched value for that segment.
|
2017-10-15 07:52:38 +02:00
|
|
|
#[inline]
|
2017-12-08 01:22:26 +01:00
|
|
|
pub fn match_info(&self) -> &Params {
|
2018-07-15 11:24:27 +02:00
|
|
|
&self.resource.match_info()
|
2017-10-15 07:52:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Check if request requires connection upgrade
|
|
|
|
pub(crate) fn upgrade(&self) -> bool {
|
2018-06-25 06:58:04 +02:00
|
|
|
self.request().upgrade()
|
2017-10-15 07:52:38 +02:00
|
|
|
}
|
|
|
|
|
2018-03-12 18:01:56 +01:00
|
|
|
/// Set read buffer capacity
|
|
|
|
///
|
|
|
|
/// Default buffer capacity is 32Kb.
|
|
|
|
pub fn set_read_buffer_capacity(&mut self, cap: usize) {
|
2018-06-25 06:58:04 +02:00
|
|
|
if let Some(payload) = self.request().inner.payload.borrow_mut().as_mut() {
|
2018-03-12 18:01:56 +01:00
|
|
|
payload.set_read_buffer_capacity(cap)
|
|
|
|
}
|
|
|
|
}
|
2017-11-27 07:20:28 +01:00
|
|
|
}
|
|
|
|
|
2018-07-04 18:52:49 +02:00
|
|
|
impl<S> Drop for HttpRequest<S> {
|
|
|
|
fn drop(&mut self) {
|
|
|
|
if let Some(req) = self.req.take() {
|
|
|
|
req.release();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-27 06:18:38 +01:00
|
|
|
impl<S> Clone for HttpRequest<S> {
|
|
|
|
fn clone(&self) -> HttpRequest<S> {
|
2018-06-25 06:58:04 +02:00
|
|
|
HttpRequest {
|
2018-07-04 18:57:40 +02:00
|
|
|
req: self.req.as_ref().map(|r| r.clone()),
|
2018-06-25 06:58:04 +02:00
|
|
|
state: self.state.clone(),
|
2018-07-15 11:24:27 +02:00
|
|
|
resource: self.resource.clone(),
|
2018-06-25 06:58:04 +02:00
|
|
|
}
|
2017-11-27 05:32:12 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-02 15:07:30 +02:00
|
|
|
impl<S> FromRequest<S> for HttpRequest<S> {
|
2018-04-04 07:06:18 +02:00
|
|
|
type Config = ();
|
2018-05-02 02:19:15 +02:00
|
|
|
type Result = Self;
|
2018-03-29 22:12:28 +02:00
|
|
|
|
|
|
|
#[inline]
|
2018-05-02 15:07:30 +02:00
|
|
|
fn from_request(req: &HttpRequest<S>, _: &Self::Config) -> Self::Result {
|
2018-05-02 02:19:15 +02:00
|
|
|
req.clone()
|
2018-03-29 22:12:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-27 06:18:38 +01:00
|
|
|
impl<S> fmt::Debug for HttpRequest<S> {
|
2017-10-19 08:43:50 +02:00
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
2018-09-11 13:57:55 +02:00
|
|
|
writeln!(
|
2018-04-14 01:02:01 +02:00
|
|
|
f,
|
|
|
|
"\nHttpRequest {:?} {}:{}",
|
2018-06-25 06:58:04 +02:00
|
|
|
self.version(),
|
|
|
|
self.method(),
|
2018-04-17 21:55:13 +02:00
|
|
|
self.path()
|
2018-09-11 13:57:55 +02:00
|
|
|
)?;
|
2017-10-29 14:03:21 +01:00
|
|
|
if !self.query_string().is_empty() {
|
2018-09-11 13:57:55 +02:00
|
|
|
writeln!(f, " query: ?{:?}", self.query_string())?;
|
2017-10-29 14:03:21 +01:00
|
|
|
}
|
2017-12-08 01:22:26 +01:00
|
|
|
if !self.match_info().is_empty() {
|
2018-09-11 13:57:55 +02:00
|
|
|
writeln!(f, " params: {:?}", self.match_info())?;
|
2017-10-19 08:43:50 +02:00
|
|
|
}
|
2018-09-11 13:57:55 +02:00
|
|
|
writeln!(f, " headers:")?;
|
2018-06-25 06:58:04 +02:00
|
|
|
for (key, val) in self.headers().iter() {
|
2018-09-11 13:57:55 +02:00
|
|
|
writeln!(f, " {:?}: {:?}", key, val)?;
|
2017-10-18 01:46:57 +02:00
|
|
|
}
|
2018-09-11 13:57:55 +02:00
|
|
|
Ok(())
|
2017-10-18 01:46:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-23 23:26:01 +02:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
2018-07-12 11:30:01 +02:00
|
|
|
use resource::Resource;
|
|
|
|
use router::{ResourceDef, Router};
|
2018-04-14 01:02:01 +02:00
|
|
|
use test::TestRequest;
|
2017-10-23 23:26:01 +02:00
|
|
|
|
2017-12-13 20:16:26 +01:00
|
|
|
#[test]
|
|
|
|
fn test_debug() {
|
2017-12-27 04:48:02 +01:00
|
|
|
let req = TestRequest::with_header("content-type", "text/plain").finish();
|
2017-12-13 20:16:26 +01:00
|
|
|
let dbg = format!("{:?}", req);
|
|
|
|
assert!(dbg.contains("HttpRequest"));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_no_request_cookies() {
|
2018-06-25 06:58:04 +02:00
|
|
|
let req = TestRequest::default().finish();
|
2017-12-13 20:16:26 +01:00
|
|
|
assert!(req.cookies().unwrap().is_empty());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_request_cookies() {
|
2018-03-08 00:41:46 +01:00
|
|
|
let req = TestRequest::default()
|
|
|
|
.header(header::COOKIE, "cookie1=value1")
|
|
|
|
.header(header::COOKIE, "cookie2=value2")
|
|
|
|
.finish();
|
2017-12-13 20:16:26 +01:00
|
|
|
{
|
|
|
|
let cookies = req.cookies().unwrap();
|
|
|
|
assert_eq!(cookies.len(), 2);
|
|
|
|
assert_eq!(cookies[0].name(), "cookie1");
|
|
|
|
assert_eq!(cookies[0].value(), "value1");
|
|
|
|
assert_eq!(cookies[1].name(), "cookie2");
|
|
|
|
assert_eq!(cookies[1].value(), "value2");
|
|
|
|
}
|
|
|
|
|
|
|
|
let cookie = req.cookie("cookie1");
|
|
|
|
assert!(cookie.is_some());
|
|
|
|
let cookie = cookie.unwrap();
|
|
|
|
assert_eq!(cookie.name(), "cookie1");
|
|
|
|
assert_eq!(cookie.value(), "value1");
|
|
|
|
|
|
|
|
let cookie = req.cookie("cookie-unknown");
|
|
|
|
assert!(cookie.is_none());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_request_query() {
|
2018-01-03 19:57:57 +01:00
|
|
|
let req = TestRequest::with_uri("/?id=test").finish();
|
2017-12-13 20:16:26 +01:00
|
|
|
assert_eq!(req.query_string(), "id=test");
|
|
|
|
let query = req.query();
|
|
|
|
assert_eq!(&query["id"], "test");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_request_match_info() {
|
2018-08-01 00:40:52 +02:00
|
|
|
let mut router = Router::<()>::default();
|
2018-07-15 11:12:21 +02:00
|
|
|
router.register_resource(Resource::new(ResourceDef::new("/{key}/")));
|
2017-12-13 20:16:26 +01:00
|
|
|
|
2018-06-25 06:58:04 +02:00
|
|
|
let req = TestRequest::with_uri("/value/?id=test").finish();
|
2018-07-15 11:12:21 +02:00
|
|
|
let info = router.recognize(&req, &(), 0);
|
2018-06-25 06:58:04 +02:00
|
|
|
assert_eq!(info.match_info().get("key"), Some("value"));
|
2017-12-13 20:16:26 +01:00
|
|
|
}
|
|
|
|
|
2017-12-07 01:26:27 +01:00
|
|
|
#[test]
|
|
|
|
fn test_url_for() {
|
2018-08-01 00:40:52 +02:00
|
|
|
let mut router = Router::<()>::default();
|
2018-07-15 11:12:21 +02:00
|
|
|
let mut resource = Resource::new(ResourceDef::new("/user/{name}.{ext}"));
|
2017-12-07 01:26:27 +01:00
|
|
|
resource.name("index");
|
2018-07-15 11:12:21 +02:00
|
|
|
router.register_resource(resource);
|
|
|
|
|
2018-07-04 17:01:27 +02:00
|
|
|
let info = router.default_route_info();
|
2018-07-20 06:48:57 +02:00
|
|
|
assert!(!info.has_prefixed_resource("/use/"));
|
2018-07-16 07:33:29 +02:00
|
|
|
assert!(info.has_resource("/user/test.html"));
|
|
|
|
assert!(info.has_prefixed_resource("/user/test.html"));
|
|
|
|
assert!(!info.has_resource("/test/unknown"));
|
|
|
|
assert!(!info.has_prefixed_resource("/test/unknown"));
|
2017-12-07 01:26:27 +01:00
|
|
|
|
2018-03-07 23:56:53 +01:00
|
|
|
let req = TestRequest::with_header(header::HOST, "www.rust-lang.org")
|
|
|
|
.finish_with_router(router);
|
2017-12-07 01:26:27 +01:00
|
|
|
|
2018-04-14 01:02:01 +02:00
|
|
|
assert_eq!(
|
|
|
|
req.url_for("unknown", &["test"]),
|
|
|
|
Err(UrlGenerationError::ResourceNotFound)
|
|
|
|
);
|
|
|
|
assert_eq!(
|
|
|
|
req.url_for("index", &["test"]),
|
|
|
|
Err(UrlGenerationError::NotEnoughElements)
|
|
|
|
);
|
2017-12-07 01:26:27 +01:00
|
|
|
let url = req.url_for("index", &["test", "html"]);
|
2018-04-14 01:02:01 +02:00
|
|
|
assert_eq!(
|
|
|
|
url.ok().unwrap().as_str(),
|
|
|
|
"http://www.rust-lang.org/user/test.html"
|
|
|
|
);
|
2017-12-07 01:26:27 +01:00
|
|
|
}
|
2017-12-08 01:22:26 +01:00
|
|
|
|
2017-12-29 23:04:13 +01:00
|
|
|
#[test]
|
|
|
|
fn test_url_for_with_prefix() {
|
2018-07-15 11:12:21 +02:00
|
|
|
let mut resource = Resource::new(ResourceDef::new("/user/{name}.html"));
|
2017-12-29 23:04:13 +01:00
|
|
|
resource.name("index");
|
2018-08-01 00:40:52 +02:00
|
|
|
let mut router = Router::<()>::default();
|
|
|
|
router.set_prefix("/prefix");
|
2018-07-15 11:12:21 +02:00
|
|
|
router.register_resource(resource);
|
|
|
|
|
2018-07-15 12:24:22 +02:00
|
|
|
let mut info = router.default_route_info();
|
|
|
|
info.set_prefix(7);
|
2018-07-20 06:48:57 +02:00
|
|
|
assert!(!info.has_prefixed_resource("/use/"));
|
2018-07-16 07:33:29 +02:00
|
|
|
assert!(info.has_resource("/user/test.html"));
|
|
|
|
assert!(!info.has_prefixed_resource("/user/test.html"));
|
|
|
|
assert!(!info.has_resource("/prefix/user/test.html"));
|
|
|
|
assert!(info.has_prefixed_resource("/prefix/user/test.html"));
|
2017-12-29 23:04:13 +01:00
|
|
|
|
2018-07-15 12:24:22 +02:00
|
|
|
let req = TestRequest::with_uri("/prefix/test")
|
|
|
|
.prefix(7)
|
|
|
|
.header(header::HOST, "www.rust-lang.org")
|
2018-06-25 06:58:04 +02:00
|
|
|
.finish_with_router(router);
|
2018-06-02 20:44:09 +02:00
|
|
|
let url = req.url_for("index", &["test"]);
|
2018-04-14 01:02:01 +02:00
|
|
|
assert_eq!(
|
|
|
|
url.ok().unwrap().as_str(),
|
|
|
|
"http://www.rust-lang.org/prefix/user/test.html"
|
|
|
|
);
|
2017-12-29 23:04:13 +01:00
|
|
|
}
|
|
|
|
|
2018-06-02 20:44:09 +02:00
|
|
|
#[test]
|
|
|
|
fn test_url_for_static() {
|
2018-07-15 11:12:21 +02:00
|
|
|
let mut resource = Resource::new(ResourceDef::new("/index.html"));
|
2018-06-02 20:44:09 +02:00
|
|
|
resource.name("index");
|
2018-08-01 00:40:52 +02:00
|
|
|
let mut router = Router::<()>::default();
|
|
|
|
router.set_prefix("/prefix");
|
2018-07-15 11:12:21 +02:00
|
|
|
router.register_resource(resource);
|
|
|
|
|
2018-07-15 12:24:22 +02:00
|
|
|
let mut info = router.default_route_info();
|
|
|
|
info.set_prefix(7);
|
2018-07-16 07:33:29 +02:00
|
|
|
assert!(info.has_resource("/index.html"));
|
|
|
|
assert!(!info.has_prefixed_resource("/index.html"));
|
|
|
|
assert!(!info.has_resource("/prefix/index.html"));
|
|
|
|
assert!(info.has_prefixed_resource("/prefix/index.html"));
|
2018-06-02 20:44:09 +02:00
|
|
|
|
2018-07-15 12:24:22 +02:00
|
|
|
let req = TestRequest::with_uri("/prefix/test")
|
|
|
|
.prefix(7)
|
2018-06-25 06:58:04 +02:00
|
|
|
.header(header::HOST, "www.rust-lang.org")
|
|
|
|
.finish_with_router(router);
|
2018-06-02 20:44:09 +02:00
|
|
|
let url = req.url_for_static("index");
|
|
|
|
assert_eq!(
|
|
|
|
url.ok().unwrap().as_str(),
|
|
|
|
"http://www.rust-lang.org/prefix/index.html"
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-12-08 01:22:26 +01:00
|
|
|
#[test]
|
|
|
|
fn test_url_for_external() {
|
2018-08-01 00:40:52 +02:00
|
|
|
let mut router = Router::<()>::default();
|
2018-07-15 11:12:21 +02:00
|
|
|
router.register_external(
|
|
|
|
"youtube",
|
|
|
|
ResourceDef::external("https://youtube.com/watch/{video_id}"),
|
|
|
|
);
|
|
|
|
|
2018-07-04 17:01:27 +02:00
|
|
|
let info = router.default_route_info();
|
2018-07-16 07:33:29 +02:00
|
|
|
assert!(!info.has_resource("https://youtube.com/watch/unknown"));
|
|
|
|
assert!(!info.has_prefixed_resource("https://youtube.com/watch/unknown"));
|
2017-12-08 01:22:26 +01:00
|
|
|
|
2018-06-25 06:58:04 +02:00
|
|
|
let req = TestRequest::default().finish_with_router(router);
|
2017-12-08 01:22:26 +01:00
|
|
|
let url = req.url_for("youtube", &["oHg5SJYRHA0"]);
|
2018-04-29 18:09:08 +02:00
|
|
|
assert_eq!(
|
|
|
|
url.ok().unwrap().as_str(),
|
|
|
|
"https://youtube.com/watch/oHg5SJYRHA0"
|
|
|
|
);
|
2017-12-08 01:22:26 +01:00
|
|
|
}
|
2017-10-23 23:26:01 +02:00
|
|
|
}
|