2019-03-10 18:53:56 +01:00
|
|
|
//! Request extractors
|
2018-04-02 23:55:42 +02:00
|
|
|
|
2021-01-09 14:17:19 +01:00
|
|
|
use std::{
|
2021-06-22 18:32:03 +02:00
|
|
|
convert::Infallible,
|
2021-01-09 14:17:19 +01:00
|
|
|
future::Future,
|
|
|
|
pin::Pin,
|
|
|
|
task::{Context, Poll},
|
|
|
|
};
|
2018-04-02 23:55:42 +02:00
|
|
|
|
2021-06-22 18:32:03 +02:00
|
|
|
use actix_http::http::{Method, Uri};
|
|
|
|
use actix_utils::future::{ok, Ready};
|
2021-04-01 16:26:13 +02:00
|
|
|
use futures_core::ready;
|
2021-01-09 14:17:19 +01:00
|
|
|
|
|
|
|
use crate::{dev::Payload, Error, HttpRequest};
|
2018-04-02 23:55:42 +02:00
|
|
|
|
2021-09-11 17:48:47 +02:00
|
|
|
/// A type that implements [`FromRequest`] is called an **extractor** and can extract data from
|
|
|
|
/// the request. Some types that implement this trait are: [`Json`], [`Header`], and [`Path`].
|
2019-03-03 22:53:31 +01:00
|
|
|
///
|
2021-09-11 17:48:47 +02:00
|
|
|
/// # Configuration
|
2021-09-11 02:11:16 +02:00
|
|
|
/// An extractor can be customized by injecting the corresponding configuration with one of:
|
|
|
|
///
|
2021-09-11 17:48:47 +02:00
|
|
|
/// - [`App::app_data()`][crate::App::app_data]
|
|
|
|
/// - [`Scope::app_data()`][crate::Scope::app_data]
|
|
|
|
/// - [`Resource::app_data()`][crate::Resource::app_data]
|
2021-09-11 02:11:16 +02:00
|
|
|
///
|
|
|
|
/// Here are some built-in extractors and their corresponding configuration.
|
|
|
|
/// Please refer to the respective documentation for details.
|
|
|
|
///
|
|
|
|
/// | Extractor | Configuration |
|
|
|
|
/// |-------------|-------------------|
|
2021-09-11 17:48:47 +02:00
|
|
|
/// | [`Header`] | _None_ |
|
|
|
|
/// | [`Path`] | [`PathConfig`] |
|
2021-09-11 02:11:16 +02:00
|
|
|
/// | [`Json`] | [`JsonConfig`] |
|
|
|
|
/// | [`Form`] | [`FormConfig`] |
|
|
|
|
/// | [`Query`] | [`QueryConfig`] |
|
|
|
|
/// | [`Bytes`] | [`PayloadConfig`] |
|
2021-09-11 17:48:47 +02:00
|
|
|
/// | [`String`] | [`PayloadConfig`] |
|
|
|
|
/// | [`Payload`] | [`PayloadConfig`] |
|
|
|
|
///
|
|
|
|
/// # Implementing An Extractor
|
|
|
|
/// To reduce duplicate code in handlers where extracting certain parts of a request has a common
|
|
|
|
/// structure, you can implement `FromRequest` for your own types.
|
|
|
|
///
|
|
|
|
/// Note that the request payload can only be consumed by one extractor.
|
2021-09-11 02:11:16 +02:00
|
|
|
///
|
2021-09-11 17:48:47 +02:00
|
|
|
/// [`Header`]: crate::web::Header
|
2021-09-11 02:11:16 +02:00
|
|
|
/// [`Json`]: crate::web::Json
|
|
|
|
/// [`JsonConfig`]: crate::web::JsonConfig
|
|
|
|
/// [`Form`]: crate::web::Form
|
|
|
|
/// [`FormConfig`]: crate::web::FormConfig
|
|
|
|
/// [`Path`]: crate::web::Path
|
|
|
|
/// [`PathConfig`]: crate::web::PathConfig
|
|
|
|
/// [`Query`]: crate::web::Query
|
|
|
|
/// [`QueryConfig`]: crate::web::QueryConfig
|
|
|
|
/// [`Payload`]: crate::web::Payload
|
|
|
|
/// [`PayloadConfig`]: crate::web::PayloadConfig
|
|
|
|
/// [`String`]: FromRequest#impl-FromRequest-for-String
|
|
|
|
/// [`Bytes`]: crate::web::Bytes#impl-FromRequest
|
2021-09-11 17:48:47 +02:00
|
|
|
/// [`Either`]: crate::web::Either
|
|
|
|
#[doc(alias = "extract", alias = "extractor")]
|
2019-04-13 23:50:54 +02:00
|
|
|
pub trait FromRequest: Sized {
|
2019-03-03 22:53:31 +01:00
|
|
|
/// The associated error which can be returned.
|
|
|
|
type Error: Into<Error>;
|
|
|
|
|
2021-01-09 14:17:19 +01:00
|
|
|
/// Future that resolves to a Self.
|
2019-11-20 18:33:22 +01:00
|
|
|
type Future: Future<Output = Result<Self, Self::Error>>;
|
2019-03-03 22:53:31 +01:00
|
|
|
|
2021-01-09 14:17:19 +01:00
|
|
|
/// Create a Self from request parts asynchronously.
|
2019-04-13 23:50:54 +02:00
|
|
|
fn from_request(req: &HttpRequest, payload: &mut Payload) -> Self::Future;
|
2019-04-07 23:43:07 +02:00
|
|
|
|
2021-01-09 14:17:19 +01:00
|
|
|
/// Create a Self from request head asynchronously.
|
2019-04-07 23:43:07 +02:00
|
|
|
///
|
2021-01-09 14:17:19 +01:00
|
|
|
/// This method is short for `T::from_request(req, &mut Payload::None)`.
|
2019-04-07 23:43:07 +02:00
|
|
|
fn extract(req: &HttpRequest) -> Self::Future {
|
|
|
|
Self::from_request(req, &mut Payload::None)
|
|
|
|
}
|
2019-03-03 22:53:31 +01:00
|
|
|
}
|
|
|
|
|
2018-07-23 15:19:04 +02:00
|
|
|
/// Optionally extract a field from the request
|
|
|
|
///
|
|
|
|
/// If the FromRequest for T fails, return None rather than returning an error response
|
|
|
|
///
|
2021-06-17 18:57:58 +02:00
|
|
|
/// # Examples
|
2021-03-25 09:45:52 +01:00
|
|
|
/// ```
|
2019-04-07 23:43:07 +02:00
|
|
|
/// use actix_web::{web, dev, App, Error, HttpRequest, FromRequest};
|
2018-07-23 15:19:04 +02:00
|
|
|
/// use actix_web::error::ErrorBadRequest;
|
2020-05-18 04:47:20 +02:00
|
|
|
/// use futures_util::future::{ok, err, Ready};
|
2021-06-23 22:30:06 +02:00
|
|
|
/// use serde::Deserialize;
|
2019-03-03 22:53:31 +01:00
|
|
|
/// use rand;
|
2018-07-23 15:19:04 +02:00
|
|
|
///
|
|
|
|
/// #[derive(Debug, Deserialize)]
|
2019-03-03 22:53:31 +01:00
|
|
|
/// struct Thing {
|
|
|
|
/// name: String
|
|
|
|
/// }
|
2018-07-23 15:19:04 +02:00
|
|
|
///
|
2019-04-13 23:50:54 +02:00
|
|
|
/// impl FromRequest for Thing {
|
2019-03-03 22:53:31 +01:00
|
|
|
/// type Error = Error;
|
2019-11-20 18:33:22 +01:00
|
|
|
/// type Future = Ready<Result<Self, Self::Error>>;
|
2018-07-23 15:19:04 +02:00
|
|
|
///
|
2019-04-13 23:50:54 +02:00
|
|
|
/// fn from_request(req: &HttpRequest, payload: &mut dev::Payload) -> Self::Future {
|
2018-07-23 15:19:04 +02:00
|
|
|
/// if rand::random() {
|
2019-11-20 18:33:22 +01:00
|
|
|
/// ok(Thing { name: "thingy".into() })
|
2018-07-23 15:19:04 +02:00
|
|
|
/// } else {
|
2019-11-20 18:33:22 +01:00
|
|
|
/// err(ErrorBadRequest("no luck"))
|
2018-07-23 15:19:04 +02:00
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
///
|
2019-03-03 22:53:31 +01:00
|
|
|
/// /// extract `Thing` from request
|
2019-11-21 16:34:04 +01:00
|
|
|
/// async fn index(supplied_thing: Option<Thing>) -> String {
|
2018-07-23 15:19:04 +02:00
|
|
|
/// match supplied_thing {
|
|
|
|
/// // Puns not intended
|
2019-03-03 22:53:31 +01:00
|
|
|
/// Some(thing) => format!("Got something: {:?}", thing),
|
|
|
|
/// None => format!("No thing!")
|
2018-07-23 15:19:04 +02:00
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// fn main() {
|
2019-03-07 00:47:15 +01:00
|
|
|
/// let app = App::new().service(
|
|
|
|
/// web::resource("/users/:first").route(
|
|
|
|
/// web::post().to(index))
|
|
|
|
/// );
|
2018-07-23 15:19:04 +02:00
|
|
|
/// }
|
|
|
|
/// ```
|
2019-04-13 23:50:54 +02:00
|
|
|
impl<T: 'static> FromRequest for Option<T>
|
2018-07-24 23:52:56 +02:00
|
|
|
where
|
2019-04-13 23:50:54 +02:00
|
|
|
T: FromRequest,
|
2019-03-02 07:51:32 +01:00
|
|
|
T::Future: 'static,
|
2018-07-24 23:52:56 +02:00
|
|
|
{
|
2019-03-02 07:51:32 +01:00
|
|
|
type Error = Error;
|
2020-12-16 19:34:10 +01:00
|
|
|
type Future = FromRequestOptFuture<T::Future>;
|
2018-07-23 15:19:04 +02:00
|
|
|
|
|
|
|
#[inline]
|
2019-04-13 23:50:54 +02:00
|
|
|
fn from_request(req: &HttpRequest, payload: &mut Payload) -> Self::Future {
|
2020-12-16 19:34:10 +01:00
|
|
|
FromRequestOptFuture {
|
|
|
|
fut: T::from_request(req, payload),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[pin_project::pin_project]
|
|
|
|
pub struct FromRequestOptFuture<Fut> {
|
|
|
|
#[pin]
|
|
|
|
fut: Fut,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<Fut, T, E> Future for FromRequestOptFuture<Fut>
|
|
|
|
where
|
|
|
|
Fut: Future<Output = Result<T, E>>,
|
|
|
|
E: Into<Error>,
|
|
|
|
{
|
|
|
|
type Output = Result<Option<T>, Error>;
|
|
|
|
|
|
|
|
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
|
|
|
|
let this = self.project();
|
|
|
|
let res = ready!(this.fut.poll(cx));
|
|
|
|
match res {
|
|
|
|
Ok(t) => Poll::Ready(Ok(Some(t))),
|
|
|
|
Err(e) => {
|
|
|
|
log::debug!("Error for Option<T> extractor: {}", e.into());
|
|
|
|
Poll::Ready(Ok(None))
|
|
|
|
}
|
|
|
|
}
|
2018-07-23 15:19:04 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Optionally extract a field from the request or extract the Error if unsuccessful
|
|
|
|
///
|
2019-03-03 22:53:31 +01:00
|
|
|
/// If the `FromRequest` for T fails, inject Err into handler rather than returning an error response
|
2018-07-23 15:19:04 +02:00
|
|
|
///
|
2021-06-17 18:57:58 +02:00
|
|
|
/// # Examples
|
2021-03-25 09:45:52 +01:00
|
|
|
/// ```
|
2019-04-07 23:43:07 +02:00
|
|
|
/// use actix_web::{web, dev, App, Result, Error, HttpRequest, FromRequest};
|
2018-07-23 15:19:04 +02:00
|
|
|
/// use actix_web::error::ErrorBadRequest;
|
2020-05-18 04:47:20 +02:00
|
|
|
/// use futures_util::future::{ok, err, Ready};
|
2021-06-23 22:30:06 +02:00
|
|
|
/// use serde::Deserialize;
|
2019-03-03 22:53:31 +01:00
|
|
|
/// use rand;
|
2018-07-23 15:19:04 +02:00
|
|
|
///
|
|
|
|
/// #[derive(Debug, Deserialize)]
|
2019-03-03 22:53:31 +01:00
|
|
|
/// struct Thing {
|
|
|
|
/// name: String
|
|
|
|
/// }
|
2018-07-23 15:19:04 +02:00
|
|
|
///
|
2019-04-13 23:50:54 +02:00
|
|
|
/// impl FromRequest for Thing {
|
2019-03-03 22:53:31 +01:00
|
|
|
/// type Error = Error;
|
2019-11-20 18:33:22 +01:00
|
|
|
/// type Future = Ready<Result<Thing, Error>>;
|
2018-07-23 15:19:04 +02:00
|
|
|
///
|
2019-04-13 23:50:54 +02:00
|
|
|
/// fn from_request(req: &HttpRequest, payload: &mut dev::Payload) -> Self::Future {
|
2018-07-23 15:19:04 +02:00
|
|
|
/// if rand::random() {
|
2019-11-20 18:33:22 +01:00
|
|
|
/// ok(Thing { name: "thingy".into() })
|
2018-07-23 15:19:04 +02:00
|
|
|
/// } else {
|
2019-11-20 18:33:22 +01:00
|
|
|
/// err(ErrorBadRequest("no luck"))
|
2018-07-23 15:19:04 +02:00
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
///
|
2019-03-03 22:53:31 +01:00
|
|
|
/// /// extract `Thing` from request
|
2019-11-21 16:34:04 +01:00
|
|
|
/// async fn index(supplied_thing: Result<Thing>) -> String {
|
2018-07-23 15:19:04 +02:00
|
|
|
/// match supplied_thing {
|
2019-03-03 22:53:31 +01:00
|
|
|
/// Ok(thing) => format!("Got thing: {:?}", thing),
|
|
|
|
/// Err(e) => format!("Error extracting thing: {}", e)
|
2018-07-23 15:19:04 +02:00
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// fn main() {
|
2019-03-07 00:47:15 +01:00
|
|
|
/// let app = App::new().service(
|
|
|
|
/// web::resource("/users/:first").route(web::post().to(index))
|
|
|
|
/// );
|
2018-07-23 15:19:04 +02:00
|
|
|
/// }
|
|
|
|
/// ```
|
2019-11-20 18:33:22 +01:00
|
|
|
impl<T> FromRequest for Result<T, T::Error>
|
2018-07-24 23:52:56 +02:00
|
|
|
where
|
2019-11-20 18:33:22 +01:00
|
|
|
T: FromRequest + 'static,
|
2019-03-02 07:51:32 +01:00
|
|
|
T::Error: 'static,
|
2019-11-20 18:33:22 +01:00
|
|
|
T::Future: 'static,
|
2018-07-24 23:52:56 +02:00
|
|
|
{
|
2019-03-02 07:51:32 +01:00
|
|
|
type Error = Error;
|
2020-12-16 19:34:10 +01:00
|
|
|
type Future = FromRequestResFuture<T::Future>;
|
2018-07-23 15:19:04 +02:00
|
|
|
|
|
|
|
#[inline]
|
2019-04-13 23:50:54 +02:00
|
|
|
fn from_request(req: &HttpRequest, payload: &mut Payload) -> Self::Future {
|
2020-12-16 19:34:10 +01:00
|
|
|
FromRequestResFuture {
|
|
|
|
fut: T::from_request(req, payload),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[pin_project::pin_project]
|
|
|
|
pub struct FromRequestResFuture<Fut> {
|
|
|
|
#[pin]
|
|
|
|
fut: Fut,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<Fut, T, E> Future for FromRequestResFuture<Fut>
|
|
|
|
where
|
|
|
|
Fut: Future<Output = Result<T, E>>,
|
|
|
|
{
|
|
|
|
type Output = Result<Result<T, E>, Error>;
|
|
|
|
|
|
|
|
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
|
|
|
|
let this = self.project();
|
|
|
|
let res = ready!(this.fut.poll(cx));
|
|
|
|
Poll::Ready(Ok(res))
|
2018-07-23 15:19:04 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-22 18:32:03 +02:00
|
|
|
/// Extract the request's URI.
|
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
/// ```
|
|
|
|
/// use actix_web::{http::Uri, web, App, Responder};
|
|
|
|
///
|
|
|
|
/// async fn handler(uri: Uri) -> impl Responder {
|
|
|
|
/// format!("Requested path: {}", uri.path())
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// let app = App::new().default_service(web::to(handler));
|
|
|
|
/// ```
|
|
|
|
impl FromRequest for Uri {
|
|
|
|
type Error = Infallible;
|
|
|
|
type Future = Ready<Result<Self, Self::Error>>;
|
|
|
|
|
|
|
|
fn from_request(req: &HttpRequest, _: &mut Payload) -> Self::Future {
|
|
|
|
ok(req.uri().clone())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Extract the request's method.
|
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
/// ```
|
|
|
|
/// use actix_web::{http::Method, web, App, Responder};
|
|
|
|
///
|
|
|
|
/// async fn handler(method: Method) -> impl Responder {
|
|
|
|
/// format!("Request method: {}", method)
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// let app = App::new().default_service(web::to(handler));
|
|
|
|
/// ```
|
|
|
|
impl FromRequest for Method {
|
|
|
|
type Error = Infallible;
|
|
|
|
type Future = Ready<Result<Self, Self::Error>>;
|
|
|
|
|
|
|
|
fn from_request(req: &HttpRequest, _: &mut Payload) -> Self::Future {
|
|
|
|
ok(req.method().clone())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-03 23:45:56 +01:00
|
|
|
#[doc(hidden)]
|
2019-04-13 23:50:54 +02:00
|
|
|
impl FromRequest for () {
|
2021-06-22 18:32:03 +02:00
|
|
|
type Error = Infallible;
|
2021-06-23 22:30:06 +02:00
|
|
|
type Future = Ready<Result<Self, Self::Error>>;
|
2019-03-03 23:45:56 +01:00
|
|
|
|
2019-04-13 23:50:54 +02:00
|
|
|
fn from_request(_: &HttpRequest, _: &mut Payload) -> Self::Future {
|
2021-06-22 18:32:03 +02:00
|
|
|
ok(())
|
2019-03-03 23:45:56 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-02 22:38:25 +02:00
|
|
|
macro_rules! tuple_from_req ({$fut_type:ident, $(($n:tt, $T:ident)),+} => {
|
|
|
|
|
2020-01-28 02:45:26 +01:00
|
|
|
// This module is a trick to get around the inability of
|
|
|
|
// `macro_rules!` macros to make new idents. We want to make
|
|
|
|
// a new `FutWrapper` struct for each distinct invocation of
|
|
|
|
// this macro. Ideally, we would name it something like
|
|
|
|
// `FutWrapper_$fut_type`, but this can't be done in a macro_rules
|
|
|
|
// macro.
|
|
|
|
//
|
|
|
|
// Instead, we put everything in a module named `$fut_type`, thus allowing
|
|
|
|
// us to use the name `FutWrapper` without worrying about conflicts.
|
|
|
|
// This macro only exists to generate trait impls for tuples - these
|
|
|
|
// are inherently global, so users don't have to care about this
|
|
|
|
// weird trick.
|
|
|
|
#[allow(non_snake_case)]
|
|
|
|
mod $fut_type {
|
|
|
|
|
|
|
|
// Bring everything into scope, so we don't need
|
|
|
|
// redundant imports
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
/// A helper struct to allow us to pin-project through
|
|
|
|
/// to individual fields
|
|
|
|
#[pin_project::pin_project]
|
|
|
|
struct FutWrapper<$($T: FromRequest),+>($(#[pin] $T::Future),+);
|
|
|
|
|
|
|
|
/// FromRequest implementation for tuple
|
|
|
|
#[doc(hidden)]
|
|
|
|
#[allow(unused_parens)]
|
|
|
|
impl<$($T: FromRequest + 'static),+> FromRequest for ($($T,)+)
|
|
|
|
{
|
|
|
|
type Error = Error;
|
|
|
|
type Future = $fut_type<$($T),+>;
|
2018-05-02 22:38:25 +02:00
|
|
|
|
2020-01-28 02:45:26 +01:00
|
|
|
fn from_request(req: &HttpRequest, payload: &mut Payload) -> Self::Future {
|
|
|
|
$fut_type {
|
|
|
|
items: <($(Option<$T>,)+)>::default(),
|
|
|
|
futs: FutWrapper($($T::from_request(req, payload),)+),
|
|
|
|
}
|
2019-03-02 07:51:32 +01:00
|
|
|
}
|
2018-05-02 22:38:25 +02:00
|
|
|
}
|
|
|
|
|
2020-01-28 02:45:26 +01:00
|
|
|
#[doc(hidden)]
|
|
|
|
#[pin_project::pin_project]
|
|
|
|
pub struct $fut_type<$($T: FromRequest),+> {
|
|
|
|
items: ($(Option<$T>,)+),
|
|
|
|
#[pin]
|
|
|
|
futs: FutWrapper<$($T,)+>,
|
|
|
|
}
|
2018-05-02 22:38:25 +02:00
|
|
|
|
2020-01-28 02:45:26 +01:00
|
|
|
impl<$($T: FromRequest),+> Future for $fut_type<$($T),+>
|
|
|
|
{
|
|
|
|
type Output = Result<($($T,)+), Error>;
|
2018-05-02 22:38:25 +02:00
|
|
|
|
2020-01-28 02:45:26 +01:00
|
|
|
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
|
|
|
|
let mut this = self.project();
|
2018-05-02 22:38:25 +02:00
|
|
|
|
2020-01-28 02:45:26 +01:00
|
|
|
let mut ready = true;
|
|
|
|
$(
|
|
|
|
if this.items.$n.is_none() {
|
|
|
|
match this.futs.as_mut().project().$n.poll(cx) {
|
|
|
|
Poll::Ready(Ok(item)) => {
|
|
|
|
this.items.$n = Some(item);
|
|
|
|
}
|
|
|
|
Poll::Pending => ready = false,
|
|
|
|
Poll::Ready(Err(e)) => return Poll::Ready(Err(e.into())),
|
2018-05-02 22:38:25 +02:00
|
|
|
}
|
|
|
|
}
|
2020-01-28 02:45:26 +01:00
|
|
|
)+
|
2018-05-02 22:38:25 +02:00
|
|
|
|
2021-03-19 05:08:23 +01:00
|
|
|
if ready {
|
|
|
|
Poll::Ready(Ok(
|
|
|
|
($(this.items.$n.take().unwrap(),)+)
|
|
|
|
))
|
|
|
|
} else {
|
|
|
|
Poll::Pending
|
|
|
|
}
|
2020-01-28 02:45:26 +01:00
|
|
|
}
|
2018-05-02 22:38:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2019-03-03 07:11:24 +01:00
|
|
|
#[rustfmt::skip]
|
|
|
|
mod m {
|
|
|
|
use super::*;
|
|
|
|
|
2021-03-19 05:08:23 +01: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));
|
|
|
|
tuple_from_req!(TupleFromRequest5, (0, A), (1, B), (2, C), (3, D), (4, E));
|
|
|
|
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));
|
2019-03-03 07:11:24 +01:00
|
|
|
}
|
2018-05-02 22:38:25 +02:00
|
|
|
|
2019-03-03 07:03:45 +01:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use actix_http::http::header;
|
|
|
|
use bytes::Bytes;
|
2021-06-23 22:30:06 +02:00
|
|
|
use serde::Deserialize;
|
2019-03-03 07:03:45 +01:00
|
|
|
|
|
|
|
use super::*;
|
2019-11-26 06:25:50 +01:00
|
|
|
use crate::test::TestRequest;
|
2019-04-18 20:01:04 +02:00
|
|
|
use crate::types::{Form, FormConfig};
|
2019-03-03 07:03:45 +01:00
|
|
|
|
|
|
|
#[derive(Deserialize, Debug, PartialEq)]
|
|
|
|
struct Info {
|
|
|
|
hello: String,
|
|
|
|
}
|
2019-03-02 07:51:32 +01:00
|
|
|
|
2019-11-26 06:25:50 +01:00
|
|
|
#[actix_rt::test]
|
|
|
|
async fn test_option() {
|
2021-01-15 03:11:10 +01:00
|
|
|
let (req, mut pl) = TestRequest::default()
|
|
|
|
.insert_header((header::CONTENT_TYPE, "application/x-www-form-urlencoded"))
|
|
|
|
.data(FormConfig::default().limit(4096))
|
|
|
|
.to_http_parts();
|
2019-03-04 00:32:47 +01:00
|
|
|
|
2019-11-26 06:25:50 +01:00
|
|
|
let r = Option::<Form<Info>>::from_request(&req, &mut pl)
|
|
|
|
.await
|
|
|
|
.unwrap();
|
2019-03-04 00:32:47 +01:00
|
|
|
assert_eq!(r, None);
|
|
|
|
|
2021-01-15 03:11:10 +01:00
|
|
|
let (req, mut pl) = TestRequest::default()
|
|
|
|
.insert_header((header::CONTENT_TYPE, "application/x-www-form-urlencoded"))
|
|
|
|
.insert_header((header::CONTENT_LENGTH, "9"))
|
|
|
|
.set_payload(Bytes::from_static(b"hello=world"))
|
|
|
|
.to_http_parts();
|
2019-03-04 00:32:47 +01:00
|
|
|
|
2019-11-26 06:25:50 +01:00
|
|
|
let r = Option::<Form<Info>>::from_request(&req, &mut pl)
|
|
|
|
.await
|
|
|
|
.unwrap();
|
2019-03-04 00:32:47 +01:00
|
|
|
assert_eq!(
|
|
|
|
r,
|
|
|
|
Some(Form(Info {
|
|
|
|
hello: "world".into()
|
|
|
|
}))
|
|
|
|
);
|
|
|
|
|
2021-01-15 03:11:10 +01:00
|
|
|
let (req, mut pl) = TestRequest::default()
|
|
|
|
.insert_header((header::CONTENT_TYPE, "application/x-www-form-urlencoded"))
|
|
|
|
.insert_header((header::CONTENT_LENGTH, "9"))
|
|
|
|
.set_payload(Bytes::from_static(b"bye=world"))
|
|
|
|
.to_http_parts();
|
2019-03-04 00:32:47 +01:00
|
|
|
|
2019-11-26 06:25:50 +01:00
|
|
|
let r = Option::<Form<Info>>::from_request(&req, &mut pl)
|
|
|
|
.await
|
|
|
|
.unwrap();
|
2019-03-04 00:32:47 +01:00
|
|
|
assert_eq!(r, None);
|
|
|
|
}
|
|
|
|
|
2019-11-26 06:25:50 +01:00
|
|
|
#[actix_rt::test]
|
|
|
|
async fn test_result() {
|
2021-01-15 03:11:10 +01:00
|
|
|
let (req, mut pl) = TestRequest::default()
|
|
|
|
.insert_header((header::CONTENT_TYPE, "application/x-www-form-urlencoded"))
|
|
|
|
.insert_header((header::CONTENT_LENGTH, "11"))
|
|
|
|
.set_payload(Bytes::from_static(b"hello=world"))
|
|
|
|
.to_http_parts();
|
2019-03-04 00:32:47 +01:00
|
|
|
|
2019-11-26 06:25:50 +01:00
|
|
|
let r = Result::<Form<Info>, Error>::from_request(&req, &mut pl)
|
|
|
|
.await
|
2019-03-04 00:32:47 +01:00
|
|
|
.unwrap()
|
|
|
|
.unwrap();
|
|
|
|
assert_eq!(
|
|
|
|
r,
|
|
|
|
Form(Info {
|
|
|
|
hello: "world".into()
|
|
|
|
})
|
|
|
|
);
|
|
|
|
|
2021-01-15 03:11:10 +01:00
|
|
|
let (req, mut pl) = TestRequest::default()
|
|
|
|
.insert_header((header::CONTENT_TYPE, "application/x-www-form-urlencoded"))
|
|
|
|
.insert_header((header::CONTENT_LENGTH, 9))
|
|
|
|
.set_payload(Bytes::from_static(b"bye=world"))
|
|
|
|
.to_http_parts();
|
2019-03-04 00:32:47 +01:00
|
|
|
|
2019-11-26 06:25:50 +01:00
|
|
|
let r = Result::<Form<Info>, Error>::from_request(&req, &mut pl)
|
|
|
|
.await
|
|
|
|
.unwrap();
|
2019-03-04 00:32:47 +01:00
|
|
|
assert!(r.is_err());
|
|
|
|
}
|
2021-06-22 18:32:03 +02:00
|
|
|
|
|
|
|
#[actix_rt::test]
|
|
|
|
async fn test_uri() {
|
|
|
|
let req = TestRequest::default().uri("/foo/bar").to_http_request();
|
|
|
|
let uri = Uri::extract(&req).await.unwrap();
|
|
|
|
assert_eq!(uri.path(), "/foo/bar");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[actix_rt::test]
|
|
|
|
async fn test_method() {
|
|
|
|
let req = TestRequest::default().method(Method::GET).to_http_request();
|
|
|
|
let method = Method::extract(&req).await.unwrap();
|
|
|
|
assert_eq!(method, Method::GET);
|
|
|
|
}
|
2019-03-04 00:32:47 +01:00
|
|
|
}
|