Rocket/core/lib/src/response/responder.rs

316 lines
12 KiB
Rust
Raw Normal View History

use std::fs::File;
use std::io::{Cursor, BufReader};
use futures::compat::AsyncRead01CompatExt;
2019-06-13 01:48:02 +00:00
use crate::http::{Status, ContentType, StatusClass};
use crate::response::{self, Response, Body};
use crate::request::Request;
2016-12-21 08:09:22 +00:00
/// Trait implemented by types that generate responses for clients.
///
/// Types that implement this trait can be used as the return type of a handler,
/// as illustrated below with `T`:
///
/// ```rust
/// # #![feature(proc_macro_hygiene)]
/// # #[macro_use] extern crate rocket;
/// # type T = ();
/// #
/// #[get("/")]
/// fn index() -> T { /* ... */ }
/// ```
///
/// In this example, `T` can be any type, as long as it implements `Responder`.
///
/// # Return Value
///
2016-12-20 04:40:21 +00:00
/// A `Responder` returns an `Ok(Response)` or an `Err(Status)`:
///
2016-12-20 04:40:21 +00:00
/// * An `Ok` variant means that the `Responder` was successful in generating
/// a `Response`. The `Response` will be written out to the client.
///
2016-12-20 04:40:21 +00:00
/// * An `Err` variant means that the `Responder` could not or did not
/// generate a `Response`. The contained `Status` will be used to find the
/// relevant error catcher which then generates an error response.
///
/// # Provided Implementations
///
/// Rocket implements `Responder` for several standard library types. Their
/// behavior is documented here. Note that the `Result` implementation is
/// overloaded, allowing for two `Responder`s to be used at once, depending on
/// the variant.
///
/// * **&str**
///
2016-12-20 04:40:21 +00:00
/// Sets the `Content-Type` to `text/plain`. The string is used as the body
/// of the response, which is fixed size and not streamed. To stream a raw
/// string, use `Stream::from(Cursor::new(string))`.
///
/// * **String**
///
2017-09-22 01:48:39 +00:00
/// Sets the `Content-Type` to `text/plain`. The string is used as the body
/// of the response, which is fixed size and not streamed. To stream a
/// string, use `Stream::from(Cursor::new(string))`.
///
2018-07-14 20:48:56 +00:00
/// * **&\[u8\]**
///
/// Sets the `Content-Type` to `application/octet-stream`. The slice
/// is used as the body of the response, which is fixed size and not
/// streamed. To stream a slice of bytes, use
/// `Stream::from(Cursor::new(data))`.
///
/// * **Vec<u8>**
2017-09-22 01:48:39 +00:00
///
/// Sets the `Content-Type` to `application/octet-stream`. The vector's data
/// is used as the body of the response, which is fixed size and not
/// streamed. To stream a vector of bytes, use
/// `Stream::from(Cursor::new(vec))`.
///
/// * **File**
///
/// Responds with a streamed body containing the data in the `File`. No
/// `Content-Type` is set. To automatically have a `Content-Type` set based
2019-06-13 01:48:02 +00:00
/// on the file's extension, use [`NamedFile`](crate::response::NamedFile).
///
2016-12-20 04:40:21 +00:00
/// * **()**
///
/// Responds with an empty body. No `Content-Type` is set.
///
/// * **Option<T>**
///
/// If the `Option` is `Some`, the wrapped responder is used to respond to
2016-12-20 04:40:21 +00:00
/// the client. Otherwise, an `Err` with status **404 Not Found** is
/// returned and a warning is printed to the console.
///
/// * **Result<T, E>** _where_ **E: Debug**
///
/// If the `Result` is `Ok`, the wrapped responder is used to respond to the
/// client. Otherwise, an `Err` with status **500 Internal Server Error** is
/// returned and the error is printed to the console using the `Debug`
/// implementation.
///
/// * **Result<T, E>** _where_ **E: Debug + Responder**
///
/// If the `Result` is `Ok`, the wrapped `Ok` responder is used to respond
/// to the client. If the `Result` is `Err`, the wrapped `Err` responder is
/// used to respond to the client.
///
/// # Implementation Tips
///
/// This section describes a few best practices to take into account when
/// implementing `Responder`.
///
/// ## Debug
///
/// A type implementing `Responder` should implement the `Debug` trait when
/// possible. This is because the `Responder` implementation for `Result`
/// requires its `Err` type to implement `Debug`. Therefore, a type implementing
/// `Debug` can more easily be composed.
///
/// ## Joining and Merging
///
/// When chaining/wrapping other `Responder`s, use the
/// [`merge()`](Response::merge()) or [`join()`](Response::join()) methods on
/// the `Response` or `ResponseBuilder` struct. Ensure that you document the
/// merging or joining behavior appropriately.
///
/// ## Inspecting Requests
///
/// A `Responder` has access to the request it is responding to. Even so, you
/// should avoid using the `Request` value as much as possible. This is because
/// using the `Request` object makes your responder _impure_, and so the use of
/// the type as a `Responder` has less intrinsic meaning associated with it. If
/// the `Responder` were pure, however, it would always respond in the same manner,
/// regardless of the incoming request. Thus, knowing the type is sufficient to
/// fully determine its functionality.
///
/// # Example
///
/// Say that you have a custom type, `Person`:
///
/// ```rust
2017-02-02 10:16:21 +00:00
///
/// # #[allow(dead_code)]
/// struct Person {
/// name: String,
/// age: u16
/// }
/// ```
///
/// You'd like to use `Person` as a `Responder` so that you can return a
/// `Person` directly from a handler:
///
/// ```rust,ignore
/// #[get("/person/<id>")]
/// fn person(id: usize) -> Option<Person> {
/// Person::from_id(id)
/// }
/// ```
///
/// You want the `Person` responder to set two header fields: `X-Person-Name`
/// and `X-Person-Age` as well as supply a custom representation of the object
/// (`Content-Type: application/x-person`) in the body of the response. The
/// following `Responder` implementation accomplishes this:
///
/// ```rust
/// # #![feature(proc_macro_hygiene)]
/// # #[macro_use] extern crate rocket;
2016-12-21 02:07:14 +00:00
/// #
/// # #[derive(Debug)]
/// # struct Person { name: String, age: u16 }
/// #
/// use std::io::Cursor;
///
/// use rocket::request::Request;
/// use rocket::response::{self, Response, Responder};
/// use rocket::http::ContentType;
///
2019-06-13 01:48:02 +00:00
/// impl Responder<'_> for Person {
/// fn respond_to(self, _: &Request) -> response::Result<'static> {
/// Response::build()
2016-12-21 02:07:14 +00:00
/// .sized_body(Cursor::new(format!("{}:{}", self.name, self.age)))
/// .raw_header("X-Person-Name", self.name)
/// .raw_header("X-Person-Age", self.age.to_string())
/// .header(ContentType::new("application", "x-person"))
/// .ok()
/// }
/// }
2016-12-21 08:09:22 +00:00
/// #
2016-12-21 02:07:14 +00:00
/// # #[get("/person")]
/// # fn person() -> Person { Person { name: "a".to_string(), age: 20 } }
/// # fn main() { }
/// ```
pub trait Responder<'r> {
2016-12-20 21:40:02 +00:00
/// Returns `Ok` if a `Response` could be generated successfully. Otherwise,
/// returns an `Err` with a failing `Status`.
///
/// The `request` parameter is the `Request` that this `Responder` is
/// responding to.
///
2016-12-20 21:40:02 +00:00
/// When using Rocket's code generation, if an `Ok(Response)` is returned,
/// the response will be written out to the client. If an `Err(Status)` is
/// returned, the error catcher for the given status is retrieved and called
/// to generate a final error response, which is then written out to the
/// client.
2019-06-13 01:48:02 +00:00
fn respond_to(self, request: &Request<'_>) -> response::Result<'r>;
}
2016-12-20 21:40:02 +00:00
/// Returns a response with Content-Type `text/plain` and a fixed-size body
/// containing the string `self`. Always returns `Ok`.
impl<'r> Responder<'r> for &'r str {
2019-06-13 01:48:02 +00:00
fn respond_to(self, _: &Request<'_>) -> response::Result<'r> {
Response::build()
.header(ContentType::Plain)
.sized_body(Cursor::new(self))
.ok()
}
}
/// Returns a response with Content-Type `text/plain` and a fixed-size body
2016-12-20 21:40:02 +00:00
/// containing the string `self`. Always returns `Ok`.
2019-06-13 01:48:02 +00:00
impl Responder<'_> for String {
fn respond_to(self, _: &Request<'_>) -> response::Result<'static> {
Response::build()
.header(ContentType::Plain)
.sized_body(Cursor::new(self))
.ok()
}
}
2018-07-14 20:48:56 +00:00
/// Returns a response with Content-Type `application/octet-stream` and a
/// fixed-size body containing the data in `self`. Always returns `Ok`.
impl<'r> Responder<'r> for &'r [u8] {
2019-06-13 01:48:02 +00:00
fn respond_to(self, _: &Request<'_>) -> response::Result<'r> {
2018-07-14 20:48:56 +00:00
Response::build()
.header(ContentType::Binary)
.sized_body(Cursor::new(self))
.ok()
}
}
2017-09-22 01:48:39 +00:00
/// Returns a response with Content-Type `application/octet-stream` and a
/// fixed-size body containing the data in `self`. Always returns `Ok`.
2019-06-13 01:48:02 +00:00
impl Responder<'_> for Vec<u8> {
fn respond_to(self, _: &Request<'_>) -> response::Result<'static> {
2017-09-22 01:48:39 +00:00
Response::build()
.header(ContentType::Binary)
.sized_body(Cursor::new(self))
.ok()
}
}
/// Returns a response with a sized body for the file. Always returns `Ok`.
2019-06-13 01:48:02 +00:00
impl Responder<'_> for File {
fn respond_to(self, _: &Request<'_>) -> response::Result<'static> {
let metadata = self.metadata();
let stream = BufReader::new(tokio::fs::File::from_std(self)).compat();
match metadata {
Ok(md) => Response::build().raw_body(Body::Sized(stream, md.len())).ok(),
Err(_) => Response::build().streamed_body(stream).ok()
}
}
}
2016-12-20 21:40:02 +00:00
/// Returns an empty, default `Response`. Always returns `Ok`.
2019-06-13 01:48:02 +00:00
impl Responder<'_> for () {
fn respond_to(self, _: &Request<'_>) -> response::Result<'static> {
Ok(Response::new())
}
}
2016-12-20 21:40:02 +00:00
/// If `self` is `Some`, responds with the wrapped `Responder`. Otherwise prints
/// a warning message and returns an `Err` of `Status::NotFound`.
impl<'r, R: Responder<'r>> Responder<'r> for Option<R> {
2019-06-13 01:48:02 +00:00
fn respond_to(self, req: &Request<'_>) -> response::Result<'r> {
self.map_or_else(|| {
2016-10-09 11:29:02 +00:00
warn_!("Response was `None`.");
Err(Status::NotFound)
}, |r| r.respond_to(req))
}
}
2016-12-20 21:40:02 +00:00
/// Responds with the wrapped `Responder` in `self`, whether it is `Ok` or
/// `Err`.
impl<'r, R: Responder<'r>, E: Responder<'r>> Responder<'r> for Result<R, E> {
2019-06-13 01:48:02 +00:00
fn respond_to(self, req: &Request<'_>) -> response::Result<'r> {
match self {
Ok(responder) => responder.respond_to(req),
Err(responder) => responder.respond_to(req),
}
}
}
/// The response generated by `Status` depends on the status code itself. The
/// table below summarizes the functionality:
///
/// | Status Code Range | Response |
/// |-------------------|---------------------------------------|
/// | [400, 599] | Forwards to catcher for given status. |
/// | 100, [200, 205] | Empty with status of `self`. |
/// | All others. | Invalid. Errors to `500` catcher. |
///
/// In short, a client or server error status codes will forward to the
/// corresponding error catcher, a successful status code less than `206` or
/// `100` responds with any empty body and the given status code, and all other
/// status code emit an error message and forward to the `500` (internal server
/// error) catcher.
2019-06-13 01:48:02 +00:00
impl Responder<'_> for Status {
fn respond_to(self, _: &Request<'_>) -> response::Result<'static> {
match self.class() {
StatusClass::ClientError | StatusClass::ServerError => Err(self),
StatusClass::Success if self.code < 206 => {
Response::build().status(self).ok()
}
StatusClass::Informational if self.code == 100 => {
Response::build().status(self).ok()
}
_ => {
error_!("Invalid status used as responder: {}.", self);
warn_!("Fowarding to 500 (Internal Server Error) catcher.");
Err(Status::InternalServerError)
}
}
}
}