2019-03-10 17:53:56 +00:00
|
|
|
//! Request extractors
|
2018-04-02 21:55:42 +00:00
|
|
|
|
2019-03-10 17:01:24 +00:00
|
|
|
use actix_http::error::Error;
|
|
|
|
use futures::future::ok;
|
|
|
|
use futures::{future, Async, Future, IntoFuture, Poll};
|
2018-04-02 21:55:42 +00:00
|
|
|
|
2019-04-07 21:43:07 +00:00
|
|
|
use crate::dev::Payload;
|
|
|
|
use crate::request::HttpRequest;
|
2018-04-02 21:55:42 +00:00
|
|
|
|
2019-03-03 21:53:31 +00:00
|
|
|
/// Trait implemented by types that can be extracted from request.
|
|
|
|
///
|
|
|
|
/// Types that implement this trait can be used with `Route` handlers.
|
2019-04-13 21:50:54 +00:00
|
|
|
pub trait FromRequest: Sized {
|
2019-03-03 21:53:31 +00:00
|
|
|
/// The associated error which can be returned.
|
|
|
|
type Error: Into<Error>;
|
|
|
|
|
|
|
|
/// Future that resolves to a Self
|
|
|
|
type Future: IntoFuture<Item = Self, Error = Self::Error>;
|
|
|
|
|
2019-04-13 23:35:25 +00:00
|
|
|
/// Configuration for this extractor
|
|
|
|
type Config: Default + 'static;
|
|
|
|
|
2019-03-03 21:53:31 +00:00
|
|
|
/// Convert request to a Self
|
2019-04-13 21:50:54 +00:00
|
|
|
fn from_request(req: &HttpRequest, payload: &mut Payload) -> Self::Future;
|
2019-04-07 21:43:07 +00:00
|
|
|
|
|
|
|
/// Convert request to a Self
|
|
|
|
///
|
|
|
|
/// This method uses `Payload::None` as payload stream.
|
|
|
|
fn extract(req: &HttpRequest) -> Self::Future {
|
|
|
|
Self::from_request(req, &mut Payload::None)
|
|
|
|
}
|
2019-04-13 23:35:25 +00:00
|
|
|
|
|
|
|
/// Create and configure config instance.
|
|
|
|
fn configure<F>(f: F) -> Self::Config
|
|
|
|
where
|
|
|
|
F: FnOnce(Self::Config) -> Self::Config,
|
|
|
|
{
|
|
|
|
f(Self::Config::default())
|
|
|
|
}
|
2019-03-03 21:53:31 +00:00
|
|
|
}
|
|
|
|
|
2018-07-23 13:19:04 +00:00
|
|
|
/// Optionally extract a field from the request
|
|
|
|
///
|
|
|
|
/// If the FromRequest for T fails, return None rather than returning an error response
|
|
|
|
///
|
|
|
|
/// ## Example
|
|
|
|
///
|
2019-03-03 21:53:31 +00:00
|
|
|
/// ```rust
|
|
|
|
/// # #[macro_use] extern crate serde_derive;
|
2019-04-07 21:43:07 +00:00
|
|
|
/// use actix_web::{web, dev, App, Error, HttpRequest, FromRequest};
|
2018-07-23 13:19:04 +00:00
|
|
|
/// use actix_web::error::ErrorBadRequest;
|
2019-03-03 21:53:31 +00:00
|
|
|
/// use rand;
|
2018-07-23 13:19:04 +00:00
|
|
|
///
|
|
|
|
/// #[derive(Debug, Deserialize)]
|
2019-03-03 21:53:31 +00:00
|
|
|
/// struct Thing {
|
|
|
|
/// name: String
|
|
|
|
/// }
|
2018-07-23 13:19:04 +00:00
|
|
|
///
|
2019-04-13 21:50:54 +00:00
|
|
|
/// impl FromRequest for Thing {
|
2019-03-03 21:53:31 +00:00
|
|
|
/// type Error = Error;
|
|
|
|
/// type Future = Result<Self, Self::Error>;
|
2019-04-13 23:35:25 +00:00
|
|
|
/// type Config = ();
|
2018-07-23 13:19:04 +00:00
|
|
|
///
|
2019-04-13 21:50:54 +00:00
|
|
|
/// fn from_request(req: &HttpRequest, payload: &mut dev::Payload) -> Self::Future {
|
2018-07-23 13:19:04 +00:00
|
|
|
/// if rand::random() {
|
|
|
|
/// Ok(Thing { name: "thingy".into() })
|
|
|
|
/// } else {
|
|
|
|
/// Err(ErrorBadRequest("no luck"))
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
///
|
2019-03-03 21:53:31 +00:00
|
|
|
/// /// extract `Thing` from request
|
|
|
|
/// fn index(supplied_thing: Option<Thing>) -> String {
|
2018-07-23 13:19:04 +00:00
|
|
|
/// match supplied_thing {
|
|
|
|
/// // Puns not intended
|
2019-03-03 21:53:31 +00:00
|
|
|
/// Some(thing) => format!("Got something: {:?}", thing),
|
|
|
|
/// None => format!("No thing!")
|
2018-07-23 13:19:04 +00:00
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// fn main() {
|
2019-03-06 23:47:15 +00:00
|
|
|
/// let app = App::new().service(
|
|
|
|
/// web::resource("/users/:first").route(
|
|
|
|
/// web::post().to(index))
|
|
|
|
/// );
|
2018-07-23 13:19:04 +00:00
|
|
|
/// }
|
|
|
|
/// ```
|
2019-04-13 21:50:54 +00:00
|
|
|
impl<T: 'static> FromRequest for Option<T>
|
2018-07-24 21:52:56 +00:00
|
|
|
where
|
2019-04-13 21:50:54 +00:00
|
|
|
T: FromRequest,
|
2019-03-02 06:51:32 +00:00
|
|
|
T::Future: 'static,
|
2018-07-24 21:52:56 +00:00
|
|
|
{
|
2019-04-13 23:35:25 +00:00
|
|
|
type Config = T::Config;
|
2019-03-02 06:51:32 +00:00
|
|
|
type Error = Error;
|
2019-07-17 05:44:39 +00:00
|
|
|
type Future = Box<dyn Future<Item = Option<T>, Error = Error>>;
|
2018-07-23 13:19:04 +00:00
|
|
|
|
|
|
|
#[inline]
|
2019-04-13 21:50:54 +00:00
|
|
|
fn from_request(req: &HttpRequest, payload: &mut Payload) -> Self::Future {
|
2019-04-07 21:43:07 +00:00
|
|
|
Box::new(
|
|
|
|
T::from_request(req, payload)
|
|
|
|
.into_future()
|
|
|
|
.then(|r| match r {
|
|
|
|
Ok(v) => future::ok(Some(v)),
|
|
|
|
Err(e) => {
|
|
|
|
log::debug!("Error for Option<T> extractor: {}", e.into());
|
|
|
|
future::ok(None)
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
)
|
2018-07-23 13:19:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Optionally extract a field from the request or extract the Error if unsuccessful
|
|
|
|
///
|
2019-03-03 21:53:31 +00:00
|
|
|
/// If the `FromRequest` for T fails, inject Err into handler rather than returning an error response
|
2018-07-23 13:19:04 +00:00
|
|
|
///
|
|
|
|
/// ## Example
|
|
|
|
///
|
2019-03-03 21:53:31 +00:00
|
|
|
/// ```rust
|
|
|
|
/// # #[macro_use] extern crate serde_derive;
|
2019-04-07 21:43:07 +00:00
|
|
|
/// use actix_web::{web, dev, App, Result, Error, HttpRequest, FromRequest};
|
2018-07-23 13:19:04 +00:00
|
|
|
/// use actix_web::error::ErrorBadRequest;
|
2019-03-03 21:53:31 +00:00
|
|
|
/// use rand;
|
2018-07-23 13:19:04 +00:00
|
|
|
///
|
|
|
|
/// #[derive(Debug, Deserialize)]
|
2019-03-03 21:53:31 +00:00
|
|
|
/// struct Thing {
|
|
|
|
/// name: String
|
|
|
|
/// }
|
2018-07-23 13:19:04 +00:00
|
|
|
///
|
2019-04-13 21:50:54 +00:00
|
|
|
/// impl FromRequest for Thing {
|
2019-03-03 21:53:31 +00:00
|
|
|
/// type Error = Error;
|
|
|
|
/// type Future = Result<Thing, Error>;
|
2019-04-13 23:35:25 +00:00
|
|
|
/// type Config = ();
|
2018-07-23 13:19:04 +00:00
|
|
|
///
|
2019-04-13 21:50:54 +00:00
|
|
|
/// fn from_request(req: &HttpRequest, payload: &mut dev::Payload) -> Self::Future {
|
2018-07-23 13:19:04 +00:00
|
|
|
/// if rand::random() {
|
|
|
|
/// Ok(Thing { name: "thingy".into() })
|
|
|
|
/// } else {
|
|
|
|
/// Err(ErrorBadRequest("no luck"))
|
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
///
|
2019-03-03 21:53:31 +00:00
|
|
|
/// /// extract `Thing` from request
|
|
|
|
/// fn index(supplied_thing: Result<Thing>) -> String {
|
2018-07-23 13:19:04 +00:00
|
|
|
/// match supplied_thing {
|
2019-03-03 21:53:31 +00:00
|
|
|
/// Ok(thing) => format!("Got thing: {:?}", thing),
|
|
|
|
/// Err(e) => format!("Error extracting thing: {}", e)
|
2018-07-23 13:19:04 +00:00
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// fn main() {
|
2019-03-06 23:47:15 +00:00
|
|
|
/// let app = App::new().service(
|
|
|
|
/// web::resource("/users/:first").route(web::post().to(index))
|
|
|
|
/// );
|
2018-07-23 13:19:04 +00:00
|
|
|
/// }
|
|
|
|
/// ```
|
2019-04-13 21:50:54 +00:00
|
|
|
impl<T: 'static> FromRequest for Result<T, T::Error>
|
2018-07-24 21:52:56 +00:00
|
|
|
where
|
2019-04-13 21:50:54 +00:00
|
|
|
T: FromRequest,
|
2019-03-02 06:51:32 +00:00
|
|
|
T::Future: 'static,
|
|
|
|
T::Error: 'static,
|
2018-07-24 21:52:56 +00:00
|
|
|
{
|
2019-04-13 23:35:25 +00:00
|
|
|
type Config = T::Config;
|
2019-03-02 06:51:32 +00:00
|
|
|
type Error = Error;
|
2019-07-17 05:44:39 +00:00
|
|
|
type Future = Box<dyn Future<Item = Result<T, T::Error>, Error = Error>>;
|
2018-07-23 13:19:04 +00:00
|
|
|
|
|
|
|
#[inline]
|
2019-04-13 21:50:54 +00:00
|
|
|
fn from_request(req: &HttpRequest, payload: &mut Payload) -> Self::Future {
|
2019-04-07 21:43:07 +00:00
|
|
|
Box::new(
|
|
|
|
T::from_request(req, payload)
|
|
|
|
.into_future()
|
|
|
|
.then(|res| match res {
|
|
|
|
Ok(v) => ok(Ok(v)),
|
|
|
|
Err(e) => ok(Err(e)),
|
|
|
|
}),
|
|
|
|
)
|
2018-07-23 13:19:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-03 22:45:56 +00:00
|
|
|
#[doc(hidden)]
|
2019-04-13 21:50:54 +00:00
|
|
|
impl FromRequest for () {
|
2019-04-13 23:35:25 +00:00
|
|
|
type Config = ();
|
2019-03-03 22:45:56 +00:00
|
|
|
type Error = Error;
|
2019-03-03 23:32:47 +00:00
|
|
|
type Future = Result<(), Error>;
|
2019-03-03 22:45:56 +00:00
|
|
|
|
2019-04-13 21:50:54 +00:00
|
|
|
fn from_request(_: &HttpRequest, _: &mut Payload) -> Self::Future {
|
2019-03-03 23:32:47 +00:00
|
|
|
Ok(())
|
2019-03-03 22:45:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-02 20:38:25 +00:00
|
|
|
macro_rules! tuple_from_req ({$fut_type:ident, $(($n:tt, $T:ident)),+} => {
|
|
|
|
|
|
|
|
/// FromRequest implementation for tuple
|
2019-03-03 22:45:56 +00:00
|
|
|
#[doc(hidden)]
|
2019-04-13 21:50:54 +00:00
|
|
|
impl<$($T: FromRequest + 'static),+> FromRequest for ($($T,)+)
|
2018-05-02 20:38:25 +00:00
|
|
|
{
|
2019-03-02 06:51:32 +00:00
|
|
|
type Error = Error;
|
2019-04-13 21:50:54 +00:00
|
|
|
type Future = $fut_type<$($T),+>;
|
2019-04-13 23:35:25 +00:00
|
|
|
type Config = ($($T::Config),+);
|
2018-05-02 20:38:25 +00:00
|
|
|
|
2019-04-13 21:50:54 +00:00
|
|
|
fn from_request(req: &HttpRequest, payload: &mut Payload) -> Self::Future {
|
2019-03-02 06:51:32 +00:00
|
|
|
$fut_type {
|
2018-05-02 20:38:25 +00:00
|
|
|
items: <($(Option<$T>,)+)>::default(),
|
2019-04-07 21:43:07 +00:00
|
|
|
futs: ($($T::from_request(req, payload).into_future(),)+),
|
2019-03-02 06:51:32 +00:00
|
|
|
}
|
2018-05-02 20:38:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-02 06:51:32 +00:00
|
|
|
#[doc(hidden)]
|
2019-04-13 21:50:54 +00:00
|
|
|
pub struct $fut_type<$($T: FromRequest),+> {
|
2018-05-02 20:38:25 +00:00
|
|
|
items: ($(Option<$T>,)+),
|
2019-03-03 21:53:31 +00:00
|
|
|
futs: ($(<$T::Future as futures::IntoFuture>::Future,)+),
|
2018-05-02 20:38:25 +00:00
|
|
|
}
|
|
|
|
|
2019-04-13 21:50:54 +00:00
|
|
|
impl<$($T: FromRequest),+> Future for $fut_type<$($T),+>
|
2018-05-02 20:38:25 +00:00
|
|
|
{
|
|
|
|
type Item = ($($T,)+);
|
|
|
|
type Error = Error;
|
|
|
|
|
|
|
|
fn poll(&mut self) -> Poll<Self::Item, Self::Error> {
|
|
|
|
let mut ready = true;
|
|
|
|
|
|
|
|
$(
|
2019-03-02 06:51:32 +00:00
|
|
|
if self.items.$n.is_none() {
|
|
|
|
match self.futs.$n.poll() {
|
2018-05-02 20:38:25 +00:00
|
|
|
Ok(Async::Ready(item)) => {
|
|
|
|
self.items.$n = Some(item);
|
|
|
|
}
|
|
|
|
Ok(Async::NotReady) => ready = false,
|
2019-03-02 06:51:32 +00:00
|
|
|
Err(e) => return Err(e.into()),
|
2018-05-02 20:38:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
)+
|
|
|
|
|
|
|
|
if ready {
|
|
|
|
Ok(Async::Ready(
|
|
|
|
($(self.items.$n.take().unwrap(),)+)
|
|
|
|
))
|
|
|
|
} else {
|
|
|
|
Ok(Async::NotReady)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2019-03-03 06:11:24 +00:00
|
|
|
#[rustfmt::skip]
|
|
|
|
mod m {
|
|
|
|
use super::*;
|
|
|
|
|
2018-05-02 20:38:25 +00:00
|
|
|
tuple_from_req!(TupleFromRequest1, (0, A));
|
|
|
|
tuple_from_req!(TupleFromRequest2, (0, A), (1, B));
|
|
|
|
tuple_from_req!(TupleFromRequest3, (0, A), (1, B), (2, C));
|
|
|
|
tuple_from_req!(TupleFromRequest4, (0, A), (1, B), (2, C), (3, D));
|
2018-05-17 19:20:20 +00:00
|
|
|
tuple_from_req!(TupleFromRequest5, (0, A), (1, B), (2, C), (3, D), (4, E));
|
2019-03-03 06:11:24 +00:00
|
|
|
tuple_from_req!(TupleFromRequest6, (0, A), (1, B), (2, C), (3, D), (4, E), (5, F));
|
|
|
|
tuple_from_req!(TupleFromRequest7, (0, A), (1, B), (2, C), (3, D), (4, E), (5, F), (6, G));
|
|
|
|
tuple_from_req!(TupleFromRequest8, (0, A), (1, B), (2, C), (3, D), (4, E), (5, F), (6, G), (7, H));
|
|
|
|
tuple_from_req!(TupleFromRequest9, (0, A), (1, B), (2, C), (3, D), (4, E), (5, F), (6, G), (7, H), (8, I));
|
|
|
|
tuple_from_req!(TupleFromRequest10, (0, A), (1, B), (2, C), (3, D), (4, E), (5, F), (6, G), (7, H), (8, I), (9, J));
|
|
|
|
}
|
2018-05-02 20:38:25 +00:00
|
|
|
|
2019-03-03 06:03:45 +00:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use actix_http::http::header;
|
|
|
|
use bytes::Bytes;
|
|
|
|
use serde_derive::Deserialize;
|
|
|
|
|
|
|
|
use super::*;
|
2019-03-04 21:25:35 +00:00
|
|
|
use crate::test::{block_on, TestRequest};
|
2019-04-18 18:01:04 +00:00
|
|
|
use crate::types::{Form, FormConfig};
|
2019-03-03 06:03:45 +00:00
|
|
|
|
|
|
|
#[derive(Deserialize, Debug, PartialEq)]
|
|
|
|
struct Info {
|
|
|
|
hello: String,
|
|
|
|
}
|
2019-03-02 06:51:32 +00:00
|
|
|
|
2019-03-03 23:32:47 +00:00
|
|
|
#[test]
|
|
|
|
fn test_option() {
|
2019-04-07 21:43:07 +00:00
|
|
|
let (req, mut pl) = TestRequest::with_header(
|
2019-03-03 23:32:47 +00:00
|
|
|
header::CONTENT_TYPE,
|
|
|
|
"application/x-www-form-urlencoded",
|
|
|
|
)
|
2019-05-05 02:43:49 +00:00
|
|
|
.data(FormConfig::default().limit(4096))
|
2019-04-07 21:43:07 +00:00
|
|
|
.to_http_parts();
|
2019-03-03 23:32:47 +00:00
|
|
|
|
2019-04-07 21:43:07 +00:00
|
|
|
let r = block_on(Option::<Form<Info>>::from_request(&req, &mut pl)).unwrap();
|
2019-03-03 23:32:47 +00:00
|
|
|
assert_eq!(r, None);
|
|
|
|
|
2019-04-07 21:43:07 +00:00
|
|
|
let (req, mut pl) = TestRequest::with_header(
|
2019-03-03 23:32:47 +00:00
|
|
|
header::CONTENT_TYPE,
|
|
|
|
"application/x-www-form-urlencoded",
|
|
|
|
)
|
|
|
|
.header(header::CONTENT_LENGTH, "9")
|
|
|
|
.set_payload(Bytes::from_static(b"hello=world"))
|
2019-04-07 21:43:07 +00:00
|
|
|
.to_http_parts();
|
2019-03-03 23:32:47 +00:00
|
|
|
|
2019-04-07 21:43:07 +00:00
|
|
|
let r = block_on(Option::<Form<Info>>::from_request(&req, &mut pl)).unwrap();
|
2019-03-03 23:32:47 +00:00
|
|
|
assert_eq!(
|
|
|
|
r,
|
|
|
|
Some(Form(Info {
|
|
|
|
hello: "world".into()
|
|
|
|
}))
|
|
|
|
);
|
|
|
|
|
2019-04-07 21:43:07 +00:00
|
|
|
let (req, mut pl) = TestRequest::with_header(
|
2019-03-03 23:32:47 +00:00
|
|
|
header::CONTENT_TYPE,
|
|
|
|
"application/x-www-form-urlencoded",
|
|
|
|
)
|
|
|
|
.header(header::CONTENT_LENGTH, "9")
|
|
|
|
.set_payload(Bytes::from_static(b"bye=world"))
|
2019-04-07 21:43:07 +00:00
|
|
|
.to_http_parts();
|
2019-03-03 23:32:47 +00:00
|
|
|
|
2019-04-07 21:43:07 +00:00
|
|
|
let r = block_on(Option::<Form<Info>>::from_request(&req, &mut pl)).unwrap();
|
2019-03-03 23:32:47 +00:00
|
|
|
assert_eq!(r, None);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_result() {
|
2019-04-07 21:43:07 +00:00
|
|
|
let (req, mut pl) = TestRequest::with_header(
|
2019-03-03 23:32:47 +00:00
|
|
|
header::CONTENT_TYPE,
|
|
|
|
"application/x-www-form-urlencoded",
|
|
|
|
)
|
|
|
|
.header(header::CONTENT_LENGTH, "11")
|
|
|
|
.set_payload(Bytes::from_static(b"hello=world"))
|
2019-04-07 21:43:07 +00:00
|
|
|
.to_http_parts();
|
2019-03-03 23:32:47 +00:00
|
|
|
|
2019-04-07 21:43:07 +00:00
|
|
|
let r = block_on(Result::<Form<Info>, Error>::from_request(&req, &mut pl))
|
2019-03-03 23:32:47 +00:00
|
|
|
.unwrap()
|
|
|
|
.unwrap();
|
|
|
|
assert_eq!(
|
|
|
|
r,
|
|
|
|
Form(Info {
|
|
|
|
hello: "world".into()
|
|
|
|
})
|
|
|
|
);
|
|
|
|
|
2019-04-07 21:43:07 +00:00
|
|
|
let (req, mut pl) = TestRequest::with_header(
|
2019-03-03 23:32:47 +00:00
|
|
|
header::CONTENT_TYPE,
|
|
|
|
"application/x-www-form-urlencoded",
|
|
|
|
)
|
|
|
|
.header(header::CONTENT_LENGTH, "9")
|
|
|
|
.set_payload(Bytes::from_static(b"bye=world"))
|
2019-04-07 21:43:07 +00:00
|
|
|
.to_http_parts();
|
2019-03-03 23:32:47 +00:00
|
|
|
|
2019-04-07 21:43:07 +00:00
|
|
|
let r =
|
|
|
|
block_on(Result::<Form<Info>, Error>::from_request(&req, &mut pl)).unwrap();
|
2019-03-03 23:32:47 +00:00
|
|
|
assert!(r.is_err());
|
|
|
|
}
|
|
|
|
}
|