2016-03-28 09:34:09 +00:00
|
|
|
use std::fs::File;
|
2016-12-15 08:47:31 +00:00
|
|
|
use std::io::Cursor;
|
2016-03-28 09:34:09 +00:00
|
|
|
use std::fmt;
|
|
|
|
|
2016-12-15 08:47:31 +00:00
|
|
|
use http::{Status, ContentType};
|
2017-05-19 10:29:08 +00:00
|
|
|
use response::Response;
|
|
|
|
use request::Request;
|
2016-10-25 11:03:50 +00:00
|
|
|
|
2016-12-21 08:09:22 +00:00
|
|
|
/// Trait implemented by types that generate responses for clients.
|
2016-11-03 14:09:01 +00:00
|
|
|
///
|
|
|
|
/// Types that implement this trait can be used as the return type of a handler,
|
|
|
|
/// as illustrated below:
|
|
|
|
///
|
|
|
|
/// ```rust,ignore
|
|
|
|
/// #[get("/")]
|
|
|
|
/// fn index() -> T { ... }
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// In this example, `T` can be any type that implements `Responder`.
|
|
|
|
///
|
2016-12-15 08:47:31 +00:00
|
|
|
/// # Return Value
|
2016-11-03 14:09:01 +00:00
|
|
|
///
|
2016-12-20 04:40:21 +00:00
|
|
|
/// A `Responder` returns an `Ok(Response)` or an `Err(Status)`:
|
2016-11-03 14:09:01 +00:00
|
|
|
///
|
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-11-03 14:09:01 +00:00
|
|
|
///
|
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.
|
2016-11-03 14:09:01 +00:00
|
|
|
///
|
2016-11-03 16:05:41 +00:00
|
|
|
/// # 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.
|
|
|
|
///
|
2016-12-15 08:47:31 +00:00
|
|
|
/// * **&str**
|
2016-11-03 16:05:41 +00:00
|
|
|
///
|
2016-12-20 04:40:21 +00:00
|
|
|
/// Sets the `Content-Type` to `text/plain`. The string is used as the body
|
2016-12-15 08:47:31 +00:00
|
|
|
/// of the response, which is fixed size and not streamed. To stream a raw
|
|
|
|
/// string, use `Stream::from(Cursor::new(string))`.
|
2016-11-03 16:05:41 +00:00
|
|
|
///
|
2016-12-15 08:47:31 +00:00
|
|
|
/// * **String**
|
2016-11-03 16:05:41 +00:00
|
|
|
///
|
2017-01-31 10:43:19 +00:00
|
|
|
/// Sets the `Content-Type`t to `text/plain`. The string is used as the body
|
2016-12-15 08:47:31 +00:00
|
|
|
/// of the response, which is fixed size and not streamed. To stream a
|
|
|
|
/// string, use `Stream::from(Cursor::new(string))`.
|
2016-11-03 16:05:41 +00:00
|
|
|
///
|
2016-12-15 08:47:31 +00:00
|
|
|
/// * **File**
|
2016-11-03 16:05:41 +00:00
|
|
|
///
|
2017-07-04 08:34:43 +00:00
|
|
|
/// Responds with a streamed body containing the data in the `File`. No
|
2017-05-19 10:29:08 +00:00
|
|
|
/// `Content-Type` is set. To automatically have a `Content-Type` set based
|
|
|
|
/// on the file's extension, use
|
|
|
|
/// [`NamedFile`](/rocket/response/struct.NamedFile.html).
|
2016-11-03 16:05:41 +00:00
|
|
|
///
|
2016-12-20 04:40:21 +00:00
|
|
|
/// * **()**
|
2016-12-10 03:53:13 +00:00
|
|
|
///
|
2017-05-19 10:29:08 +00:00
|
|
|
/// Responds with an empty body. No `Content-Type` is set.
|
2016-12-10 03:53:13 +00:00
|
|
|
///
|
2016-12-15 08:47:31 +00:00
|
|
|
/// * **Option<T>**
|
2016-11-03 16:05:41 +00:00
|
|
|
///
|
|
|
|
/// 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.
|
2016-11-03 16:05:41 +00:00
|
|
|
///
|
2016-12-15 08:47:31 +00:00
|
|
|
/// * **Result<T, E>** _where_ **E: Debug**
|
2016-11-03 16:05:41 +00:00
|
|
|
///
|
|
|
|
/// If the `Result` is `Ok`, the wrapped responder is used to respond to the
|
2016-12-15 08:47:31 +00:00
|
|
|
/// client. Otherwise, an `Err` with status **500 Internal Server Error** is
|
|
|
|
/// returned and the error is printed to the console using the `Debug`
|
2016-11-03 16:05:41 +00:00
|
|
|
/// implementation.
|
|
|
|
///
|
2016-12-15 08:47:31 +00:00
|
|
|
/// * **Result<T, E>** _where_ **E: Debug + Responder**
|
2016-11-03 16:05:41 +00:00
|
|
|
///
|
|
|
|
/// If the `Result` is `Ok`, the wrapped `Ok` responder is used to respond
|
2016-12-15 08:47:31 +00:00
|
|
|
/// to the client. If the `Result` is `Err`, the wrapped `Err` responder is
|
2016-11-03 16:05:41 +00:00
|
|
|
/// used to respond to the client.
|
|
|
|
///
|
2016-11-03 14:09:01 +00:00
|
|
|
/// # 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.
|
|
|
|
///
|
2016-12-15 08:47:31 +00:00
|
|
|
/// ## Joining and Merging
|
2016-11-03 14:09:01 +00:00
|
|
|
///
|
2016-12-15 08:47:31 +00:00
|
|
|
/// When chaining/wrapping other `Responder`s, use the
|
|
|
|
/// [merge](/rocket/struct.Response.html#method.merge) or
|
|
|
|
/// [join](/rocket/struct.Response.html#method.join) methods on the `Response`
|
2016-12-20 21:40:02 +00:00
|
|
|
/// or `ResponseBuilder` struct. Ensure that you document the merging or joining
|
|
|
|
/// behavior appropriately.
|
2016-12-10 04:59:58 +00:00
|
|
|
///
|
2017-05-19 10:29:08 +00:00
|
|
|
/// ## 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 _inpure_, and so the use of
|
|
|
|
/// the type as a `Responder` has less intrinsic meaning associated with it. If
|
|
|
|
/// the `Responder` were pure, however, it always respond in the same manner,
|
|
|
|
/// regardless of the incoming request. Thus, knowing the type is sufficient to
|
|
|
|
/// fully determine its functionality.
|
|
|
|
///
|
2016-12-10 04:59:58 +00:00
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// Say that you have a custom type, `Person`:
|
|
|
|
///
|
|
|
|
/// ```rust
|
2017-02-02 10:16:21 +00:00
|
|
|
///
|
|
|
|
/// # #[allow(dead_code)]
|
2016-12-10 04:59:58 +00:00
|
|
|
/// 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
|
2017-08-29 03:14:59 +00:00
|
|
|
/// # #![feature(plugin, decl_macro)]
|
2016-12-21 02:07:14 +00:00
|
|
|
/// # #![plugin(rocket_codegen)]
|
|
|
|
/// # extern crate rocket;
|
|
|
|
/// #
|
2016-12-10 04:59:58 +00:00
|
|
|
/// # #[derive(Debug)]
|
|
|
|
/// # struct Person { name: String, age: u16 }
|
|
|
|
/// #
|
2016-12-15 08:47:31 +00:00
|
|
|
/// use std::io::Cursor;
|
2016-12-10 04:59:58 +00:00
|
|
|
///
|
2017-05-19 10:29:08 +00:00
|
|
|
/// use rocket::request::Request;
|
2016-12-15 08:47:31 +00:00
|
|
|
/// use rocket::response::{self, Response, Responder};
|
2016-12-10 04:59:58 +00:00
|
|
|
/// use rocket::http::ContentType;
|
|
|
|
///
|
2017-07-14 16:42:33 +00:00
|
|
|
/// impl<'r> Responder<'r> for Person {
|
|
|
|
/// fn respond_to(self, _: &Request) -> response::Result<'r> {
|
2016-12-15 08:47:31 +00:00
|
|
|
/// Response::build()
|
2016-12-21 02:07:14 +00:00
|
|
|
/// .sized_body(Cursor::new(format!("{}:{}", self.name, self.age)))
|
2016-12-15 08:47:31 +00:00
|
|
|
/// .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-10 04:59:58 +00:00
|
|
|
/// }
|
|
|
|
/// }
|
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() { }
|
2016-12-10 04:59:58 +00:00
|
|
|
/// ```
|
2016-12-15 08:47:31 +00:00
|
|
|
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`.
|
2016-11-03 14:09:01 +00:00
|
|
|
///
|
2017-05-19 10:29:08 +00:00
|
|
|
/// 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.
|
2017-05-19 10:29:08 +00:00
|
|
|
fn respond_to(self, request: &Request) -> Result<Response<'r>, Status>;
|
2016-03-28 09:34:09 +00:00
|
|
|
}
|
|
|
|
|
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`.
|
2016-12-15 08:47:31 +00:00
|
|
|
impl<'r> Responder<'r> for &'r str {
|
2017-05-19 10:29:08 +00:00
|
|
|
fn respond_to(self, _: &Request) -> Result<Response<'r>, Status> {
|
2016-12-15 08:47:31 +00:00
|
|
|
Response::build()
|
|
|
|
.header(ContentType::Plain)
|
|
|
|
.sized_body(Cursor::new(self))
|
|
|
|
.ok()
|
2016-03-28 09:34:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-14 07:43:24 +00:00
|
|
|
/// 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`.
|
2017-07-14 13:58:16 +00:00
|
|
|
impl<'r> Responder<'r> for String {
|
|
|
|
fn respond_to(self, _: &Request) -> Result<Response<'r>, Status> {
|
2016-12-15 08:47:31 +00:00
|
|
|
Response::build()
|
2017-01-31 10:43:19 +00:00
|
|
|
.header(ContentType::Plain)
|
2016-12-15 08:47:31 +00:00
|
|
|
.sized_body(Cursor::new(self))
|
|
|
|
.ok()
|
2016-03-28 09:34:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-19 10:29:08 +00:00
|
|
|
/// Returns a response with a sized body for the file. Always returns `Ok`.
|
2017-07-14 13:58:16 +00:00
|
|
|
impl<'r> Responder<'r> for File {
|
|
|
|
fn respond_to(self, _: &Request) -> Result<Response<'r>, Status> {
|
2017-07-04 08:34:43 +00:00
|
|
|
Response::build().streamed_body(self).ok()
|
2016-03-28 09:34:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-20 21:40:02 +00:00
|
|
|
/// Returns an empty, default `Response`. Always returns `Ok`.
|
2017-07-14 13:58:16 +00:00
|
|
|
impl<'r> Responder<'r> for () {
|
|
|
|
fn respond_to(self, _: &Request) -> Result<Response<'r>, Status> {
|
2016-12-15 08:47:31 +00:00
|
|
|
Ok(Response::new())
|
2016-12-10 03:53:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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`.
|
2016-12-15 08:47:31 +00:00
|
|
|
impl<'r, R: Responder<'r>> Responder<'r> for Option<R> {
|
2017-05-19 10:29:08 +00:00
|
|
|
fn respond_to(self, req: &Request) -> Result<Response<'r>, Status> {
|
2016-12-15 08:47:31 +00:00
|
|
|
self.map_or_else(|| {
|
2016-10-09 11:29:02 +00:00
|
|
|
warn_!("Response was `None`.");
|
2016-12-15 08:47:31 +00:00
|
|
|
Err(Status::NotFound)
|
2017-05-19 10:29:08 +00:00
|
|
|
}, |r| r.respond_to(req))
|
2016-03-28 09:34:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-22 06:56:58 +00:00
|
|
|
/// If `self` is `Ok`, responds with the wrapped `Responder`. Otherwise prints
|
|
|
|
/// an error message with the `Err` value returns an `Err` of
|
2016-12-20 21:40:02 +00:00
|
|
|
/// `Status::InternalServerError`.
|
2016-12-15 08:47:31 +00:00
|
|
|
impl<'r, R: Responder<'r>, E: fmt::Debug> Responder<'r> for Result<R, E> {
|
2017-05-19 10:29:08 +00:00
|
|
|
default fn respond_to(self, req: &Request) -> Result<Response<'r>, Status> {
|
|
|
|
self.map(|r| r.respond_to(req)).unwrap_or_else(|e| {
|
2016-12-22 06:56:58 +00:00
|
|
|
error_!("Response was `Err`: {:?}.", e);
|
2016-12-15 08:47:31 +00:00
|
|
|
Err(Status::InternalServerError)
|
|
|
|
})
|
2016-03-28 09:34:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-20 21:40:02 +00:00
|
|
|
/// Responds with the wrapped `Responder` in `self`, whether it is `Ok` or
|
|
|
|
/// `Err`.
|
2016-12-15 08:47:31 +00:00
|
|
|
impl<'r, R: Responder<'r>, E: Responder<'r> + fmt::Debug> Responder<'r> for Result<R, E> {
|
2017-05-19 10:29:08 +00:00
|
|
|
fn respond_to(self, req: &Request) -> Result<Response<'r>, Status> {
|
2016-12-15 08:47:31 +00:00
|
|
|
match self {
|
2017-05-19 10:29:08 +00:00
|
|
|
Ok(responder) => responder.respond_to(req),
|
|
|
|
Err(responder) => responder.respond_to(req),
|
2016-03-28 09:34:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|