2019-03-10 18:53:56 +01:00
|
|
|
//! Query extractor
|
|
|
|
|
2019-05-14 22:54:30 +02:00
|
|
|
use std::sync::Arc;
|
2019-03-10 18:53:56 +01:00
|
|
|
use std::{fmt, ops};
|
|
|
|
|
|
|
|
use actix_http::error::Error;
|
|
|
|
use serde::de;
|
|
|
|
use serde_urlencoded;
|
|
|
|
|
2019-04-07 23:43:07 +02:00
|
|
|
use crate::dev::Payload;
|
2019-05-15 19:31:40 +02:00
|
|
|
use crate::error::QueryPayloadError;
|
2019-03-10 18:53:56 +01:00
|
|
|
use crate::extract::FromRequest;
|
2019-04-07 23:43:07 +02:00
|
|
|
use crate::request::HttpRequest;
|
2019-03-10 18:53:56 +01:00
|
|
|
|
|
|
|
#[derive(PartialEq, Eq, PartialOrd, Ord)]
|
2019-07-05 16:46:55 +02:00
|
|
|
/// Extract typed information from the request's query.
|
2019-03-10 18:53:56 +01:00
|
|
|
///
|
|
|
|
/// ## Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// #[macro_use] extern crate serde_derive;
|
|
|
|
/// use actix_web::{web, App};
|
|
|
|
///
|
|
|
|
/// #[derive(Debug, Deserialize)]
|
|
|
|
/// pub enum ResponseType {
|
|
|
|
/// Token,
|
|
|
|
/// Code
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// #[derive(Deserialize)]
|
|
|
|
/// pub struct AuthRequest {
|
|
|
|
/// id: u64,
|
|
|
|
/// response_type: ResponseType,
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// // Use `Query` extractor for query information.
|
|
|
|
/// // This handler get called only if request's query contains `username` field
|
|
|
|
/// // The correct request for this handler would be `/index.html?id=64&response_type=Code"`
|
|
|
|
/// fn index(info: web::Query<AuthRequest>) -> String {
|
|
|
|
/// format!("Authorization request for client with id={} and type={:?}!", info.id, info.response_type)
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// fn main() {
|
|
|
|
/// let app = App::new().service(
|
|
|
|
/// web::resource("/index.html").route(web::get().to(index))); // <- use `Query` extractor
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
pub struct Query<T>(T);
|
|
|
|
|
|
|
|
impl<T> Query<T> {
|
|
|
|
/// Deconstruct to a inner value
|
|
|
|
pub fn into_inner(self) -> T {
|
|
|
|
self.0
|
|
|
|
}
|
2019-05-17 22:10:46 +02:00
|
|
|
|
|
|
|
/// Get query parameters from the path
|
|
|
|
pub fn from_query(query_str: &str) -> Result<Self, QueryPayloadError>
|
|
|
|
where
|
|
|
|
T: de::DeserializeOwned,
|
|
|
|
{
|
|
|
|
serde_urlencoded::from_str::<T>(query_str)
|
|
|
|
.map(|val| Ok(Query(val)))
|
|
|
|
.unwrap_or_else(move |e| Err(QueryPayloadError::Deserialize(e)))
|
|
|
|
}
|
2019-03-10 18:53:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> ops::Deref for Query<T> {
|
|
|
|
type Target = T;
|
|
|
|
|
|
|
|
fn deref(&self) -> &T {
|
|
|
|
&self.0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> ops::DerefMut for Query<T> {
|
|
|
|
fn deref_mut(&mut self) -> &mut T {
|
|
|
|
&mut self.0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: fmt::Debug> fmt::Debug for Query<T> {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
self.0.fmt(f)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: fmt::Display> fmt::Display for Query<T> {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
self.0.fmt(f)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-05 16:46:55 +02:00
|
|
|
/// Extract typed information from the request's query.
|
2019-03-10 18:53:56 +01:00
|
|
|
///
|
|
|
|
/// ## Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// #[macro_use] extern crate serde_derive;
|
|
|
|
/// use actix_web::{web, App};
|
|
|
|
///
|
|
|
|
/// #[derive(Debug, Deserialize)]
|
|
|
|
/// pub enum ResponseType {
|
|
|
|
/// Token,
|
|
|
|
/// Code
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// #[derive(Deserialize)]
|
|
|
|
/// pub struct AuthRequest {
|
|
|
|
/// id: u64,
|
|
|
|
/// response_type: ResponseType,
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// // Use `Query` extractor for query information.
|
|
|
|
/// // This handler get called only if request's query contains `username` field
|
|
|
|
/// // The correct request for this handler would be `/index.html?id=64&response_type=Code"`
|
|
|
|
/// fn index(info: web::Query<AuthRequest>) -> String {
|
|
|
|
/// format!("Authorization request for client with id={} and type={:?}!", info.id, info.response_type)
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// fn main() {
|
|
|
|
/// let app = App::new().service(
|
|
|
|
/// web::resource("/index.html")
|
|
|
|
/// .route(web::get().to(index))); // <- use `Query` extractor
|
|
|
|
/// }
|
|
|
|
/// ```
|
2019-04-13 23:50:54 +02:00
|
|
|
impl<T> FromRequest for Query<T>
|
2019-03-10 18:53:56 +01:00
|
|
|
where
|
|
|
|
T: de::DeserializeOwned,
|
|
|
|
{
|
|
|
|
type Error = Error;
|
|
|
|
type Future = Result<Self, Error>;
|
2019-05-14 22:54:30 +02:00
|
|
|
type Config = QueryConfig;
|
2019-03-10 18:53:56 +01:00
|
|
|
|
|
|
|
#[inline]
|
2019-04-13 23:50:54 +02:00
|
|
|
fn from_request(req: &HttpRequest, _: &mut Payload) -> Self::Future {
|
2019-05-14 22:54:30 +02:00
|
|
|
let error_handler = req
|
|
|
|
.app_data::<Self::Config>()
|
|
|
|
.map(|c| c.ehandler.clone())
|
|
|
|
.unwrap_or(None);
|
|
|
|
|
2019-04-07 23:43:07 +02:00
|
|
|
serde_urlencoded::from_str::<T>(req.query_string())
|
2019-03-10 18:53:56 +01:00
|
|
|
.map(|val| Ok(Query(val)))
|
2019-05-14 22:54:30 +02:00
|
|
|
.unwrap_or_else(move |e| {
|
|
|
|
let e = QueryPayloadError::Deserialize(e);
|
|
|
|
|
2019-04-11 00:05:03 +02:00
|
|
|
log::debug!(
|
|
|
|
"Failed during Query extractor deserialization. \
|
|
|
|
Request path: {:?}",
|
|
|
|
req.path()
|
|
|
|
);
|
2019-05-14 22:54:30 +02:00
|
|
|
|
|
|
|
let e = if let Some(error_handler) = error_handler {
|
|
|
|
(error_handler)(e, req)
|
|
|
|
} else {
|
|
|
|
e.into()
|
|
|
|
};
|
|
|
|
|
|
|
|
Err(e)
|
2019-04-10 21:45:13 +02:00
|
|
|
})
|
2019-03-10 18:53:56 +01:00
|
|
|
}
|
|
|
|
}
|
2019-04-18 20:01:04 +02:00
|
|
|
|
2019-05-14 22:54:30 +02:00
|
|
|
/// Query extractor configuration
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// #[macro_use] extern crate serde_derive;
|
|
|
|
/// use actix_web::{error, web, App, FromRequest, HttpResponse};
|
|
|
|
///
|
|
|
|
/// #[derive(Deserialize)]
|
|
|
|
/// struct Info {
|
|
|
|
/// username: String,
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// /// deserialize `Info` from request's querystring
|
|
|
|
/// fn index(info: web::Query<Info>) -> String {
|
|
|
|
/// format!("Welcome {}!", info.username)
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// fn main() {
|
|
|
|
/// let app = App::new().service(
|
|
|
|
/// web::resource("/index.html").data(
|
|
|
|
/// // change query extractor configuration
|
|
|
|
/// web::Query::<Info>::configure(|cfg| {
|
|
|
|
/// cfg.error_handler(|err, req| { // <- create custom error response
|
|
|
|
/// error::InternalError::from_response(
|
|
|
|
/// err, HttpResponse::Conflict().finish()).into()
|
|
|
|
/// })
|
|
|
|
/// }))
|
|
|
|
/// .route(web::post().to(index))
|
|
|
|
/// );
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
#[derive(Clone)]
|
|
|
|
pub struct QueryConfig {
|
2019-07-17 11:48:37 +02:00
|
|
|
ehandler:
|
|
|
|
Option<Arc<dyn Fn(QueryPayloadError, &HttpRequest) -> Error + Send + Sync>>,
|
2019-05-14 22:54:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl QueryConfig {
|
|
|
|
/// Set custom error handler
|
|
|
|
pub fn error_handler<F>(mut self, f: F) -> Self
|
2019-05-15 19:31:40 +02:00
|
|
|
where
|
|
|
|
F: Fn(QueryPayloadError, &HttpRequest) -> Error + Send + Sync + 'static,
|
2019-05-14 22:54:30 +02:00
|
|
|
{
|
|
|
|
self.ehandler = Some(Arc::new(f));
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for QueryConfig {
|
|
|
|
fn default() -> Self {
|
2019-05-15 19:31:40 +02:00
|
|
|
QueryConfig { ehandler: None }
|
2019-05-14 22:54:30 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-18 20:01:04 +02:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2019-05-15 19:31:40 +02:00
|
|
|
use actix_http::http::StatusCode;
|
2019-04-18 20:01:04 +02:00
|
|
|
use derive_more::Display;
|
|
|
|
use serde_derive::Deserialize;
|
|
|
|
|
|
|
|
use super::*;
|
2019-05-14 22:54:30 +02:00
|
|
|
use crate::error::InternalError;
|
2019-05-15 19:31:40 +02:00
|
|
|
use crate::test::TestRequest;
|
2019-05-14 22:54:30 +02:00
|
|
|
use crate::HttpResponse;
|
2019-04-18 20:01:04 +02:00
|
|
|
|
|
|
|
#[derive(Deserialize, Debug, Display)]
|
|
|
|
struct Id {
|
|
|
|
id: String,
|
|
|
|
}
|
|
|
|
|
2019-05-17 22:10:46 +02:00
|
|
|
#[test]
|
|
|
|
fn test_service_request_extract() {
|
|
|
|
let req = TestRequest::with_uri("/name/user1/").to_srv_request();
|
|
|
|
assert!(Query::<Id>::from_query(&req.query_string()).is_err());
|
|
|
|
|
|
|
|
let req = TestRequest::with_uri("/name/user1/?id=test").to_srv_request();
|
|
|
|
let mut s = Query::<Id>::from_query(&req.query_string()).unwrap();
|
|
|
|
|
|
|
|
assert_eq!(s.id, "test");
|
|
|
|
assert_eq!(format!("{}, {:?}", s, s), "test, Id { id: \"test\" }");
|
|
|
|
|
|
|
|
s.id = "test1".to_string();
|
|
|
|
let s = s.into_inner();
|
|
|
|
assert_eq!(s.id, "test1");
|
|
|
|
}
|
|
|
|
|
2019-04-18 20:01:04 +02:00
|
|
|
#[test]
|
|
|
|
fn test_request_extract() {
|
|
|
|
let req = TestRequest::with_uri("/name/user1/").to_srv_request();
|
|
|
|
let (req, mut pl) = req.into_parts();
|
|
|
|
assert!(Query::<Id>::from_request(&req, &mut pl).is_err());
|
|
|
|
|
|
|
|
let req = TestRequest::with_uri("/name/user1/?id=test").to_srv_request();
|
|
|
|
let (req, mut pl) = req.into_parts();
|
|
|
|
|
|
|
|
let mut s = Query::<Id>::from_request(&req, &mut pl).unwrap();
|
|
|
|
assert_eq!(s.id, "test");
|
|
|
|
assert_eq!(format!("{}, {:?}", s, s), "test, Id { id: \"test\" }");
|
|
|
|
|
|
|
|
s.id = "test1".to_string();
|
|
|
|
let s = s.into_inner();
|
|
|
|
assert_eq!(s.id, "test1");
|
|
|
|
}
|
2019-05-14 22:54:30 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_custom_error_responder() {
|
|
|
|
let req = TestRequest::with_uri("/name/user1/")
|
|
|
|
.data(QueryConfig::default().error_handler(|e, _| {
|
|
|
|
let resp = HttpResponse::UnprocessableEntity().finish();
|
|
|
|
InternalError::from_response(e, resp).into()
|
2019-05-15 19:31:40 +02:00
|
|
|
}))
|
|
|
|
.to_srv_request();
|
2019-05-14 22:54:30 +02:00
|
|
|
|
|
|
|
let (req, mut pl) = req.into_parts();
|
|
|
|
let query = Query::<Id>::from_request(&req, &mut pl);
|
|
|
|
|
|
|
|
assert!(query.is_err());
|
2019-05-15 19:31:40 +02:00
|
|
|
assert_eq!(
|
|
|
|
query
|
|
|
|
.unwrap_err()
|
|
|
|
.as_response_error()
|
|
|
|
.error_response()
|
|
|
|
.status(),
|
|
|
|
StatusCode::UNPROCESSABLE_ENTITY
|
|
|
|
);
|
2019-05-14 22:54:30 +02:00
|
|
|
}
|
2019-04-18 20:01:04 +02:00
|
|
|
}
|