1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-12 10:19:36 +00:00
actix-web/src/responder.rs

435 lines
13 KiB
Rust
Raw Normal View History

2021-01-15 02:11:10 +00:00
use std::fmt;
2019-11-20 17:33:22 +00:00
2021-01-15 02:11:10 +00:00
use actix_http::{
error::InternalError,
http::{header::IntoHeaderPair, Error as HttpError, HeaderMap, StatusCode},
ResponseBuilder,
};
2019-03-02 06:51:32 +00:00
use bytes::{Bytes, BytesMut};
use crate::{Error, HttpRequest, HttpResponse};
2019-03-02 06:51:32 +00:00
2021-01-15 02:11:10 +00:00
/// Trait implemented by types that can be converted to an HTTP response.
2019-03-02 06:51:32 +00:00
///
2021-01-15 02:11:10 +00:00
/// Any types that implement this trait can be used in the return type of a handler.
2019-03-02 06:51:32 +00:00
pub trait Responder {
/// Convert self to `HttpResponse`.
fn respond_to(self, req: &HttpRequest) -> HttpResponse;
2019-04-24 20:21:42 +00:00
/// Override a status code for a Responder.
///
/// ```rust
2021-01-15 02:11:10 +00:00
/// use actix_web::{http::StatusCode, HttpRequest, Responder};
///
/// fn index(req: HttpRequest) -> impl Responder {
/// "Welcome!".with_status(StatusCode::OK)
/// }
/// ```
fn with_status(self, status: StatusCode) -> CustomResponder<Self>
where
Self: Sized,
{
CustomResponder::new(self).with_status(status)
}
2021-01-15 02:11:10 +00:00
/// Insert header to the final response.
///
/// Overrides other headers with the same name.
///
/// ```rust
/// use actix_web::{web, HttpRequest, Responder};
/// use serde::Serialize;
///
/// #[derive(Serialize)]
/// struct MyObj {
/// name: String,
/// }
///
/// fn index(req: HttpRequest) -> impl Responder {
2021-01-15 02:11:10 +00:00
/// web::Json(MyObj { name: "Name".to_owned() })
/// .with_header(("x-version", "1.2.3"))
/// }
/// ```
2021-01-15 02:11:10 +00:00
fn with_header<H>(self, header: H) -> CustomResponder<Self>
where
Self: Sized,
2021-01-15 02:11:10 +00:00
H: IntoHeaderPair,
{
2021-01-15 02:11:10 +00:00
CustomResponder::new(self).with_header(header)
}
2019-03-02 06:51:32 +00:00
}
impl Responder for HttpResponse {
2019-03-02 06:51:32 +00:00
#[inline]
fn respond_to(self, _: &HttpRequest) -> HttpResponse {
self
2019-03-02 06:51:32 +00:00
}
}
impl<T: Responder> Responder for Option<T> {
fn respond_to(self, req: &HttpRequest) -> HttpResponse {
2019-03-02 06:51:32 +00:00
match self {
Some(t) => t.respond_to(req),
None => HttpResponse::build(StatusCode::NOT_FOUND).finish(),
2019-03-02 06:51:32 +00:00
}
}
}
impl<T, E> Responder for Result<T, E>
where
T: Responder,
E: Into<Error>,
{
fn respond_to(self, req: &HttpRequest) -> HttpResponse {
2019-03-02 06:51:32 +00:00
match self {
Ok(val) => val.respond_to(req),
Err(e) => HttpResponse::from_error(e.into()),
2019-03-02 06:51:32 +00:00
}
}
}
impl Responder for ResponseBuilder {
#[inline]
fn respond_to(mut self, _: &HttpRequest) -> HttpResponse {
self.finish()
2019-03-02 06:51:32 +00:00
}
}
impl<T: Responder> Responder for (T, StatusCode) {
fn respond_to(self, req: &HttpRequest) -> HttpResponse {
let mut res = self.0.respond_to(req);
*res.status_mut() = self.1;
res
}
}
2019-03-02 06:51:32 +00:00
impl Responder for &'static str {
fn respond_to(self, _: &HttpRequest) -> HttpResponse {
HttpResponse::Ok()
.content_type(mime::TEXT_PLAIN_UTF_8)
.body(self)
2019-03-02 06:51:32 +00:00
}
}
impl Responder for &'static [u8] {
fn respond_to(self, _: &HttpRequest) -> HttpResponse {
HttpResponse::Ok()
.content_type(mime::APPLICATION_OCTET_STREAM)
.body(self)
2019-03-02 06:51:32 +00:00
}
}
impl Responder for String {
fn respond_to(self, _: &HttpRequest) -> HttpResponse {
HttpResponse::Ok()
.content_type(mime::TEXT_PLAIN_UTF_8)
.body(self)
2019-03-02 06:51:32 +00:00
}
}
impl<'a> Responder for &'a String {
fn respond_to(self, _: &HttpRequest) -> HttpResponse {
HttpResponse::Ok()
.content_type(mime::TEXT_PLAIN_UTF_8)
.body(self)
2019-03-02 06:51:32 +00:00
}
}
impl Responder for Bytes {
fn respond_to(self, _: &HttpRequest) -> HttpResponse {
HttpResponse::Ok()
.content_type(mime::APPLICATION_OCTET_STREAM)
.body(self)
2019-03-02 06:51:32 +00:00
}
}
impl Responder for BytesMut {
fn respond_to(self, _: &HttpRequest) -> HttpResponse {
HttpResponse::Ok()
.content_type(mime::APPLICATION_OCTET_STREAM)
.body(self)
2019-03-02 06:51:32 +00:00
}
}
2021-01-15 02:11:10 +00:00
/// Allows overriding status code and headers for a responder.
pub struct CustomResponder<T> {
responder: T,
status: Option<StatusCode>,
headers: Option<HeaderMap>,
error: Option<HttpError>,
}
impl<T: Responder> CustomResponder<T> {
fn new(responder: T) -> Self {
CustomResponder {
responder,
status: None,
headers: None,
error: None,
}
}
2019-04-24 20:21:42 +00:00
/// Override a status code for the Responder's response.
///
/// ```rust
/// use actix_web::{HttpRequest, Responder, http::StatusCode};
///
/// fn index(req: HttpRequest) -> impl Responder {
/// "Welcome!".with_status(StatusCode::OK)
/// }
/// ```
pub fn with_status(mut self, status: StatusCode) -> Self {
self.status = Some(status);
self
}
2021-01-15 02:11:10 +00:00
/// Insert header to the final response.
///
/// Overrides other headers with the same name.
///
/// ```rust
/// use actix_web::{web, HttpRequest, Responder};
/// use serde::Serialize;
///
/// #[derive(Serialize)]
/// struct MyObj {
/// name: String,
/// }
///
/// fn index(req: HttpRequest) -> impl Responder {
2021-01-15 02:11:10 +00:00
/// web::Json(MyObj { name: "Name".to_string() })
/// .with_header(("x-version", "1.2.3"))
/// .with_header(("x-version", "1.2.3"))
/// }
/// ```
2021-01-15 02:11:10 +00:00
pub fn with_header<H>(mut self, header: H) -> Self
where
2021-01-15 02:11:10 +00:00
H: IntoHeaderPair,
{
if self.headers.is_none() {
self.headers = Some(HeaderMap::new());
}
2021-01-15 02:11:10 +00:00
match header.try_into_header_pair() {
Ok((key, value)) => self.headers.as_mut().unwrap().append(key, value),
Err(e) => self.error = Some(e.into()),
};
2021-01-15 02:11:10 +00:00
self
}
}
impl<T: Responder> Responder for CustomResponder<T> {
fn respond_to(self, req: &HttpRequest) -> HttpResponse {
let mut res = self.responder.respond_to(req);
if let Some(status) = self.status {
*res.status_mut() = status;
}
if let Some(ref headers) = self.headers {
for (k, v) in headers {
2021-01-15 02:11:10 +00:00
// TODO: before v4, decide if this should be append instead
res.headers_mut().insert(k.clone(), v.clone());
}
}
res
}
}
2019-03-06 03:41:50 +00:00
impl<T> Responder for InternalError<T>
where
2021-01-15 02:11:10 +00:00
T: fmt::Debug + fmt::Display + 'static,
2019-03-06 03:41:50 +00:00
{
fn respond_to(self, _: &HttpRequest) -> HttpResponse {
HttpResponse::from_error(self.into())
2019-03-02 06:51:32 +00:00
}
}
#[cfg(test)]
2019-03-17 16:52:41 +00:00
pub(crate) mod tests {
use actix_service::Service;
2019-03-13 05:57:09 +00:00
use bytes::{Bytes, BytesMut};
2019-03-13 05:57:09 +00:00
use super::*;
2019-03-07 23:51:24 +00:00
use crate::dev::{Body, ResponseBody};
2019-03-13 05:57:09 +00:00
use crate::http::{header::CONTENT_TYPE, HeaderValue, StatusCode};
2019-11-26 05:25:50 +00:00
use crate::test::{init_service, TestRequest};
use crate::{error, web, App};
2019-11-26 05:25:50 +00:00
#[actix_rt::test]
async fn test_option_responder() {
let srv = init_service(
2019-11-26 05:25:50 +00:00
App::new()
.service(
web::resource("/none").to(|| async { Option::<&'static str>::None }),
)
.service(web::resource("/some").to(|| async { Some("some") })),
)
.await;
let req = TestRequest::with_uri("/none").to_request();
let resp = srv.call(req).await.unwrap();
assert_eq!(resp.status(), StatusCode::NOT_FOUND);
let req = TestRequest::with_uri("/some").to_request();
let resp = srv.call(req).await.unwrap();
assert_eq!(resp.status(), StatusCode::OK);
match resp.response().body() {
ResponseBody::Body(Body::Bytes(ref b)) => {
let bytes = b.clone();
2019-11-26 05:25:50 +00:00
assert_eq!(bytes, Bytes::from_static(b"some"));
}
2019-11-26 05:25:50 +00:00
_ => panic!(),
}
}
2019-03-13 05:57:09 +00:00
2019-03-17 16:52:41 +00:00
pub(crate) trait BodyTest {
2019-03-13 05:57:09 +00:00
fn bin_ref(&self) -> &[u8];
fn body(&self) -> &Body;
}
impl BodyTest for ResponseBody<Body> {
fn bin_ref(&self) -> &[u8] {
match self {
ResponseBody::Body(ref b) => match b {
Body::Bytes(ref bin) => &bin,
_ => panic!(),
},
ResponseBody::Other(ref b) => match b {
Body::Bytes(ref bin) => &bin,
_ => panic!(),
},
}
}
fn body(&self) -> &Body {
match self {
ResponseBody::Body(ref b) => b,
ResponseBody::Other(ref b) => b,
}
}
}
2019-11-26 05:25:50 +00:00
#[actix_rt::test]
async fn test_responder() {
let req = TestRequest::default().to_http_request();
let resp = "test".respond_to(&req);
2019-11-26 05:25:50 +00:00
assert_eq!(resp.status(), StatusCode::OK);
assert_eq!(resp.body().bin_ref(), b"test");
assert_eq!(
resp.headers().get(CONTENT_TYPE).unwrap(),
HeaderValue::from_static("text/plain; charset=utf-8")
);
let resp = b"test".respond_to(&req);
2019-11-26 05:25:50 +00:00
assert_eq!(resp.status(), StatusCode::OK);
assert_eq!(resp.body().bin_ref(), b"test");
assert_eq!(
resp.headers().get(CONTENT_TYPE).unwrap(),
HeaderValue::from_static("application/octet-stream")
);
let resp = "test".to_string().respond_to(&req);
2019-11-26 05:25:50 +00:00
assert_eq!(resp.status(), StatusCode::OK);
assert_eq!(resp.body().bin_ref(), b"test");
assert_eq!(
resp.headers().get(CONTENT_TYPE).unwrap(),
HeaderValue::from_static("text/plain; charset=utf-8")
);
let resp = (&"test".to_string()).respond_to(&req);
2019-11-26 05:25:50 +00:00
assert_eq!(resp.status(), StatusCode::OK);
assert_eq!(resp.body().bin_ref(), b"test");
assert_eq!(
resp.headers().get(CONTENT_TYPE).unwrap(),
HeaderValue::from_static("text/plain; charset=utf-8")
);
let resp = Bytes::from_static(b"test").respond_to(&req);
2019-11-26 05:25:50 +00:00
assert_eq!(resp.status(), StatusCode::OK);
assert_eq!(resp.body().bin_ref(), b"test");
assert_eq!(
resp.headers().get(CONTENT_TYPE).unwrap(),
HeaderValue::from_static("application/octet-stream")
);
let resp = BytesMut::from(b"test".as_ref()).respond_to(&req);
2019-11-26 05:25:50 +00:00
assert_eq!(resp.status(), StatusCode::OK);
assert_eq!(resp.body().bin_ref(), b"test");
assert_eq!(
resp.headers().get(CONTENT_TYPE).unwrap(),
HeaderValue::from_static("application/octet-stream")
);
// InternalError
let resp =
error::InternalError::new("err", StatusCode::BAD_REQUEST).respond_to(&req);
2019-11-26 05:25:50 +00:00
assert_eq!(resp.status(), StatusCode::BAD_REQUEST);
2019-03-13 05:57:09 +00:00
}
2019-11-26 05:25:50 +00:00
#[actix_rt::test]
async fn test_result_responder() {
let req = TestRequest::default().to_http_request();
2019-11-20 17:33:22 +00:00
2019-11-26 05:25:50 +00:00
// Result<I, E>
let resp = Ok::<_, Error>("test".to_string()).respond_to(&req);
2019-11-26 05:25:50 +00:00
assert_eq!(resp.status(), StatusCode::OK);
assert_eq!(resp.body().bin_ref(), b"test");
assert_eq!(
resp.headers().get(CONTENT_TYPE).unwrap(),
HeaderValue::from_static("text/plain; charset=utf-8")
);
let res =
Err::<String, _>(error::InternalError::new("err", StatusCode::BAD_REQUEST))
.respond_to(&req);
assert_eq!(res.status(), StatusCode::BAD_REQUEST);
}
2019-11-26 05:25:50 +00:00
#[actix_rt::test]
async fn test_custom_responder() {
let req = TestRequest::default().to_http_request();
let res = "test"
.to_string()
.with_status(StatusCode::BAD_REQUEST)
.respond_to(&req);
2019-11-26 05:25:50 +00:00
assert_eq!(res.status(), StatusCode::BAD_REQUEST);
assert_eq!(res.body().bin_ref(), b"test");
let res = "test"
.to_string()
2021-01-15 02:11:10 +00:00
.with_header(("content-type", "json"))
.respond_to(&req);
2019-11-26 05:25:50 +00:00
assert_eq!(res.status(), StatusCode::OK);
assert_eq!(res.body().bin_ref(), b"test");
assert_eq!(
res.headers().get(CONTENT_TYPE).unwrap(),
HeaderValue::from_static("json")
);
}
2019-11-26 05:25:50 +00:00
#[actix_rt::test]
async fn test_tuple_responder_with_status_code() {
let req = TestRequest::default().to_http_request();
let res = ("test".to_string(), StatusCode::BAD_REQUEST).respond_to(&req);
2019-11-26 05:25:50 +00:00
assert_eq!(res.status(), StatusCode::BAD_REQUEST);
assert_eq!(res.body().bin_ref(), b"test");
let req = TestRequest::default().to_http_request();
let res = ("test".to_string(), StatusCode::OK)
2021-01-15 02:11:10 +00:00
.with_header((CONTENT_TYPE, mime::APPLICATION_JSON))
.respond_to(&req);
2019-11-26 05:25:50 +00:00
assert_eq!(res.status(), StatusCode::OK);
assert_eq!(res.body().bin_ref(), b"test");
assert_eq!(
res.headers().get(CONTENT_TYPE).unwrap(),
2021-01-15 02:11:10 +00:00
HeaderValue::from_static("application/json")
2019-11-26 05:25:50 +00:00
);
}
}