2016-12-15 08:47:31 +00:00
|
|
|
use std::{io, fmt, str};
|
2016-12-15 20:37:17 +00:00
|
|
|
use std::borrow::Cow;
|
2016-10-25 11:03:50 +00:00
|
|
|
|
2016-12-15 20:37:17 +00:00
|
|
|
use http::{Header, HeaderMap};
|
2016-12-16 04:57:14 +00:00
|
|
|
use response::Responder;
|
2016-12-15 08:47:31 +00:00
|
|
|
use http::Status;
|
|
|
|
|
2016-12-20 04:10:24 +00:00
|
|
|
/// The default size, in bytes, of a chunk for streamed responses.
|
2016-12-15 08:47:31 +00:00
|
|
|
pub const DEFAULT_CHUNK_SIZE: u64 = 4096;
|
|
|
|
|
2016-12-20 04:10:24 +00:00
|
|
|
#[derive(PartialEq, Clone, Hash)]
|
|
|
|
/// The body of a response: can be sized or streamed/chunked.
|
2016-12-15 08:47:31 +00:00
|
|
|
pub enum Body<T> {
|
2016-12-20 04:10:24 +00:00
|
|
|
/// A fixed-size body.
|
2016-12-15 08:47:31 +00:00
|
|
|
Sized(T, u64),
|
2016-12-20 04:10:24 +00:00
|
|
|
/// A streamed/chunked body, akin to `Transfer-Encoding: chunked`.
|
2016-12-15 08:47:31 +00:00
|
|
|
Chunked(T, u64)
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> Body<T> {
|
2016-12-20 07:29:20 +00:00
|
|
|
/// Returns a new `Body` with a mutable borrow to `self`'s inner type.
|
2016-12-15 08:47:31 +00:00
|
|
|
pub fn as_mut(&mut self) -> Body<&mut T> {
|
|
|
|
match *self {
|
|
|
|
Body::Sized(ref mut b, n) => Body::Sized(b, n),
|
|
|
|
Body::Chunked(ref mut b, n) => Body::Chunked(b, n)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-20 04:10:24 +00:00
|
|
|
/// Consumes `self`. Passes the inner type as a parameter to `f` and
|
|
|
|
/// constructs a new body with the size of `self` and the return value of
|
|
|
|
/// the call to `f`.
|
2016-12-15 08:47:31 +00:00
|
|
|
pub fn map<U, F: FnOnce(T) -> U>(self, f: F) -> Body<U> {
|
|
|
|
match self {
|
|
|
|
Body::Sized(b, n) => Body::Sized(f(b), n),
|
|
|
|
Body::Chunked(b, n) => Body::Chunked(f(b), n)
|
|
|
|
}
|
|
|
|
}
|
2016-12-21 01:27:31 +00:00
|
|
|
|
|
|
|
/// Returns `true` if `self` is a `Body::Sized`.
|
|
|
|
pub fn is_sized(&self) -> bool {
|
|
|
|
match *self {
|
|
|
|
Body::Sized(..) => true,
|
|
|
|
Body::Chunked(..) => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns `true` if `self` is a `Body::Chunked`.
|
|
|
|
pub fn is_chunked(&self) -> bool {
|
|
|
|
match *self {
|
|
|
|
Body::Chunked(..) => true,
|
|
|
|
Body::Sized(..) => false,
|
|
|
|
}
|
|
|
|
}
|
2016-12-15 08:47:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: io::Read> Body<T> {
|
2016-12-20 04:10:24 +00:00
|
|
|
/// Attepts to read `self` into a `String` and returns it. If reading or
|
|
|
|
/// conversion fails, returns `None`.
|
2016-12-17 17:18:30 +00:00
|
|
|
pub fn into_string(self) -> Option<String> {
|
2016-12-15 08:47:31 +00:00
|
|
|
let (mut body, mut string) = match self {
|
|
|
|
Body::Sized(b, size) => (b, String::with_capacity(size as usize)),
|
|
|
|
Body::Chunked(b, _) => (b, String::new())
|
|
|
|
};
|
|
|
|
|
|
|
|
if let Err(e) = body.read_to_string(&mut string) {
|
|
|
|
error_!("Error reading body: {:?}", e);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
Some(string)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> fmt::Debug for Body<T> {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
match *self {
|
|
|
|
Body::Sized(_, n) => writeln!(f, "Sized Body [{} bytes]", n),
|
|
|
|
Body::Chunked(_, n) => writeln!(f, "Chunked Body [{} bytes]", n),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-20 07:29:20 +00:00
|
|
|
/// Type for easily building `Response`s.
|
|
|
|
///
|
|
|
|
/// Building a [Response](struct.Response.html) can be a low-level ordeal; this
|
|
|
|
/// structure presents a higher-level API that simplified building `Response`s.
|
|
|
|
///
|
|
|
|
/// # Usage
|
|
|
|
///
|
|
|
|
/// `ResponseBuilder` follows the builder pattern and is usually obtained by
|
|
|
|
/// calling [build](struct.Response.html#method.build) on `Response`. Almost all
|
|
|
|
/// methods take the current builder as a mutable reference and return the same
|
|
|
|
/// mutable reference with field(s) modified in the `Responder` being built.
|
|
|
|
/// These method calls can be chained: `build.a().b()`.
|
|
|
|
///
|
|
|
|
/// To finish building and retrieve the built `Response`, use the
|
|
|
|
/// [finalize](#method.finalize) or [ok](#method.ok) methods.
|
|
|
|
///
|
|
|
|
/// ## Headers
|
|
|
|
///
|
|
|
|
/// When building a `Response`, headers can either be _replaced_ or _adjoined_;
|
|
|
|
/// the default behavior (using `header(..)`) is to _replace_. When a header is
|
|
|
|
/// _replaced_, any existing values for headers with the same name are removed,
|
|
|
|
/// and the new value is set. If no header exists, the header is simply added.
|
|
|
|
/// On the other hand, when a header is `adjoined`, all existing values will
|
|
|
|
/// remain, and the `value` of the adjoined header will be added to the set of
|
|
|
|
/// existing values, if any. Adjoining maintains order: headers adjoined first
|
|
|
|
/// will appear first in the `Response`.
|
|
|
|
///
|
|
|
|
/// ## Joining and Merging
|
|
|
|
///
|
|
|
|
/// It is often necessary to combine multiple `Response`s in some way. The
|
|
|
|
/// [merge](#method.merge) and [join](#method.join) methods facilitate this. The
|
|
|
|
/// `merge` method replaces all of the fields in `self` with those present in
|
|
|
|
/// `other`. The `join` method sets any fields not set in `self` to the value in
|
|
|
|
/// `other`. See their documentation for more details.
|
|
|
|
/// ## Example
|
|
|
|
///
|
|
|
|
/// The following example builds a `Response` with:
|
|
|
|
///
|
|
|
|
/// * **Status**: `418 I'm a teapot`
|
|
|
|
/// * **Content-Type** header: `text/plain; charset=utf-8`
|
|
|
|
/// * **X-Teapot-Make** header: `Rocket`
|
|
|
|
/// * **X-Teapot-Model** headers: `Utopia`, `Series 1`
|
|
|
|
/// * **Body**: fixed-size string `"Brewing the best coffee!"`
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use std::io::Cursor;
|
|
|
|
/// use rocket::response::Response;
|
|
|
|
/// use rocket::http::{Status, ContentType};
|
|
|
|
///
|
2017-02-02 10:16:21 +00:00
|
|
|
/// # #[allow(unused_variables)]
|
2016-12-20 07:29:20 +00:00
|
|
|
/// let response = Response::build()
|
|
|
|
/// .status(Status::ImATeapot)
|
|
|
|
/// .header(ContentType::Plain)
|
|
|
|
/// .raw_header("X-Teapot-Make", "Rocket")
|
|
|
|
/// .raw_header("X-Teapot-Model", "Utopia")
|
|
|
|
/// .raw_header_adjoin("X-Teapot-Model", "Series 1")
|
|
|
|
/// .sized_body(Cursor::new("Brewing the best coffee!"))
|
|
|
|
/// .finalize();
|
|
|
|
/// ```
|
|
|
|
///
|
2016-12-15 08:47:31 +00:00
|
|
|
pub struct ResponseBuilder<'r> {
|
|
|
|
response: Response<'r>
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'r> ResponseBuilder<'r> {
|
2016-12-20 07:29:20 +00:00
|
|
|
/// Creates a new `ResponseBuilder` that will build on top of the `base`
|
|
|
|
/// `Response`.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use rocket::response::{ResponseBuilder, Response};
|
|
|
|
///
|
2017-02-02 10:16:21 +00:00
|
|
|
/// # #[allow(unused_variables)]
|
2016-12-20 07:29:20 +00:00
|
|
|
/// let builder = ResponseBuilder::new(Response::new());
|
|
|
|
/// ```
|
2016-12-15 08:47:31 +00:00
|
|
|
#[inline(always)]
|
|
|
|
pub fn new(base: Response<'r>) -> ResponseBuilder<'r> {
|
|
|
|
ResponseBuilder {
|
|
|
|
response: base
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-20 07:29:20 +00:00
|
|
|
/// Sets the status of the `Response` being built to `status`.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use rocket::Response;
|
|
|
|
/// use rocket::http::Status;
|
|
|
|
///
|
2017-02-02 10:16:21 +00:00
|
|
|
/// # #[allow(unused_variables)]
|
2016-12-20 07:29:20 +00:00
|
|
|
/// let response = Response::build()
|
|
|
|
/// .status(Status::NotFound)
|
|
|
|
/// .finalize();
|
|
|
|
/// ```
|
2016-12-15 08:47:31 +00:00
|
|
|
#[inline(always)]
|
|
|
|
pub fn status(&mut self, status: Status) -> &mut ResponseBuilder<'r> {
|
|
|
|
self.response.set_status(status);
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2016-12-20 07:29:20 +00:00
|
|
|
/// Sets the status of the `Response` being built to a custom status
|
|
|
|
/// constructed from the `code` and `reason` phrase.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use rocket::Response;
|
|
|
|
///
|
2017-02-02 10:16:21 +00:00
|
|
|
/// # #[allow(unused_variables)]
|
2016-12-20 07:29:20 +00:00
|
|
|
/// let response = Response::build()
|
|
|
|
/// .raw_status(699, "Alien Encounter")
|
|
|
|
/// .finalize();
|
|
|
|
/// ```
|
2016-12-15 08:47:31 +00:00
|
|
|
#[inline(always)]
|
|
|
|
pub fn raw_status(&mut self, code: u16, reason: &'static str)
|
|
|
|
-> &mut ResponseBuilder<'r> {
|
|
|
|
self.response.set_raw_status(code, reason);
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2016-12-20 07:29:20 +00:00
|
|
|
/// Adds `header` to the `Response`, replacing any header with the same name
|
|
|
|
/// that already exists in the response. If multiple headers with
|
|
|
|
/// the same name exist, they are all removed, and only the new header and
|
|
|
|
/// value will remain.
|
|
|
|
///
|
2016-12-21 01:27:31 +00:00
|
|
|
/// The type of `header` can be any type that implements `Into<Header>`.
|
|
|
|
/// This includes `Header` itself,
|
|
|
|
/// [ContentType](/rocket/http/struct.ContentType.html) and [hyper::header
|
|
|
|
/// types](/rocket/http/hyper/header/index.html).
|
|
|
|
///
|
2016-12-20 07:29:20 +00:00
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use rocket::Response;
|
|
|
|
/// use rocket::http::ContentType;
|
|
|
|
///
|
|
|
|
/// let response = Response::build()
|
|
|
|
/// .header(ContentType::JSON)
|
|
|
|
/// .header(ContentType::HTML)
|
|
|
|
/// .finalize();
|
|
|
|
///
|
|
|
|
/// assert_eq!(response.header_values("Content-Type").count(), 1);
|
|
|
|
/// ```
|
2016-12-15 08:47:31 +00:00
|
|
|
#[inline(always)]
|
|
|
|
pub fn header<'h: 'r, H>(&mut self, header: H) -> &mut ResponseBuilder<'r>
|
|
|
|
where H: Into<Header<'h>>
|
|
|
|
{
|
|
|
|
self.response.set_header(header);
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2016-12-20 07:29:20 +00:00
|
|
|
/// Adds `header` to the `Response` by adjoining the header with any
|
|
|
|
/// existing headers with the same name that already exist in the
|
|
|
|
/// `Response`. This allow for multiple headers with the same name and
|
|
|
|
/// potentially different values to be present in the `Response`.
|
|
|
|
///
|
2016-12-21 01:27:31 +00:00
|
|
|
/// The type of `header` can be any type that implements `Into<Header>`.
|
|
|
|
/// This includes `Header` itself,
|
|
|
|
/// [ContentType](/rocket/http/struct.ContentType.html) and [hyper::header
|
|
|
|
/// types](/rocket/http/hyper/header/index.html).
|
|
|
|
///
|
2016-12-20 07:29:20 +00:00
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use rocket::Response;
|
|
|
|
/// use rocket::http::hyper::header::Accept;
|
|
|
|
///
|
|
|
|
/// let response = Response::build()
|
|
|
|
/// .header_adjoin(Accept::json())
|
|
|
|
/// .header_adjoin(Accept::text())
|
|
|
|
/// .finalize();
|
|
|
|
///
|
|
|
|
/// assert_eq!(response.header_values("Accept").count(), 2);
|
|
|
|
/// ```
|
2016-12-15 08:47:31 +00:00
|
|
|
#[inline(always)]
|
|
|
|
pub fn header_adjoin<'h: 'r, H>(&mut self, header: H) -> &mut ResponseBuilder<'r>
|
|
|
|
where H: Into<Header<'h>>
|
|
|
|
{
|
|
|
|
self.response.adjoin_header(header);
|
|
|
|
self
|
|
|
|
}
|
2016-10-25 11:03:50 +00:00
|
|
|
|
2016-12-20 07:29:20 +00:00
|
|
|
/// Adds custom a header to the `Response` with the given name and value,
|
|
|
|
/// replacing any header with the same name that already exists in the
|
|
|
|
/// response. If multiple headers with the same name exist, they are all
|
|
|
|
/// removed, and only the new header and value will remain.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use rocket::Response;
|
|
|
|
///
|
|
|
|
/// let response = Response::build()
|
|
|
|
/// .raw_header("X-Custom", "first")
|
|
|
|
/// .raw_header("X-Custom", "second")
|
|
|
|
/// .finalize();
|
|
|
|
///
|
|
|
|
/// assert_eq!(response.header_values("X-Custom").count(), 1);
|
|
|
|
/// ```
|
2016-10-25 11:03:50 +00:00
|
|
|
#[inline(always)]
|
2016-12-15 08:47:31 +00:00
|
|
|
pub fn raw_header<'a: 'r, 'b: 'r, N, V>(&mut self, name: N, value: V)
|
|
|
|
-> &mut ResponseBuilder<'r>
|
|
|
|
where N: Into<Cow<'a, str>>, V: Into<Cow<'b, str>>
|
|
|
|
{
|
|
|
|
self.response.set_raw_header(name, value);
|
|
|
|
self
|
2016-10-25 11:03:50 +00:00
|
|
|
}
|
|
|
|
|
2016-12-20 07:29:20 +00:00
|
|
|
/// Adds custom header to the `Response` with the given name and value,
|
|
|
|
/// adjoining the header with any existing headers with the same name that
|
|
|
|
/// already exist in the `Response`. This allow for multiple headers with
|
|
|
|
/// the same name and potentially different values to be present in the
|
|
|
|
/// `Response`.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use rocket::Response;
|
|
|
|
///
|
|
|
|
/// let response = Response::build()
|
|
|
|
/// .raw_header_adjoin("X-Custom", "first")
|
|
|
|
/// .raw_header_adjoin("X-Custom", "second")
|
|
|
|
/// .finalize();
|
|
|
|
///
|
|
|
|
/// assert_eq!(response.header_values("X-Custom").count(), 2);
|
|
|
|
/// ```
|
2016-10-25 11:03:50 +00:00
|
|
|
#[inline(always)]
|
2016-12-15 08:47:31 +00:00
|
|
|
pub fn raw_header_adjoin<'a: 'r, 'b: 'r, N, V>(&mut self, name: N, value: V)
|
|
|
|
-> &mut ResponseBuilder<'r>
|
|
|
|
where N: Into<Cow<'a, str>>, V: Into<Cow<'b, str>>
|
|
|
|
{
|
|
|
|
self.response.adjoin_raw_header(name, value);
|
|
|
|
self
|
2016-10-25 11:03:50 +00:00
|
|
|
}
|
|
|
|
|
2016-12-20 07:29:20 +00:00
|
|
|
/// Sets the body of the `Response` to be the fixed-sized `body`.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use rocket::Response;
|
|
|
|
/// use std::fs::File;
|
|
|
|
/// # use std::io;
|
|
|
|
///
|
2017-02-02 10:16:21 +00:00
|
|
|
/// # #[allow(dead_code)]
|
2016-12-20 07:29:20 +00:00
|
|
|
/// # fn test() -> io::Result<()> {
|
2017-02-02 10:16:21 +00:00
|
|
|
/// # #[allow(unused_variables)]
|
2016-12-20 07:29:20 +00:00
|
|
|
/// let response = Response::build()
|
|
|
|
/// .sized_body(File::open("body.txt")?)
|
|
|
|
/// .finalize();
|
|
|
|
/// # Ok(())
|
|
|
|
/// # }
|
|
|
|
/// ```
|
2016-10-25 11:03:50 +00:00
|
|
|
#[inline(always)]
|
2016-12-15 08:47:31 +00:00
|
|
|
pub fn sized_body<B>(&mut self, body: B) -> &mut ResponseBuilder<'r>
|
|
|
|
where B: io::Read + io::Seek + 'r
|
|
|
|
{
|
|
|
|
self.response.set_sized_body(body);
|
|
|
|
self
|
2016-10-25 11:03:50 +00:00
|
|
|
}
|
|
|
|
|
2016-12-20 07:29:20 +00:00
|
|
|
/// Sets the body of the `Response` to be the streamed `body`.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use rocket::Response;
|
|
|
|
/// use std::fs::File;
|
|
|
|
/// # use std::io;
|
|
|
|
///
|
2017-02-02 10:16:21 +00:00
|
|
|
/// # #[allow(dead_code)]
|
2016-12-20 07:29:20 +00:00
|
|
|
/// # fn test() -> io::Result<()> {
|
2017-02-02 10:16:21 +00:00
|
|
|
/// # #[allow(unused_variables)]
|
2016-12-20 07:29:20 +00:00
|
|
|
/// let response = Response::build()
|
|
|
|
/// .streamed_body(File::open("body.txt")?)
|
|
|
|
/// .finalize();
|
|
|
|
/// # Ok(())
|
|
|
|
/// # }
|
|
|
|
/// ```
|
2016-10-25 11:03:50 +00:00
|
|
|
#[inline(always)]
|
2016-12-15 08:47:31 +00:00
|
|
|
pub fn streamed_body<B>(&mut self, body: B) -> &mut ResponseBuilder<'r>
|
|
|
|
where B: io::Read + 'r
|
|
|
|
{
|
|
|
|
self.response.set_streamed_body(body);
|
|
|
|
self
|
2016-10-25 11:03:50 +00:00
|
|
|
}
|
|
|
|
|
2016-12-20 07:29:20 +00:00
|
|
|
/// Sets the body of the `Response` to be the streamed `body` with a custom
|
|
|
|
/// chunk size, in bytes.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use rocket::Response;
|
|
|
|
/// use std::fs::File;
|
|
|
|
/// # use std::io;
|
|
|
|
///
|
2017-02-02 10:16:21 +00:00
|
|
|
/// # #[allow(dead_code)]
|
2016-12-20 07:29:20 +00:00
|
|
|
/// # fn test() -> io::Result<()> {
|
2017-02-02 10:16:21 +00:00
|
|
|
/// # #[allow(unused_variables)]
|
2016-12-20 07:29:20 +00:00
|
|
|
/// let response = Response::build()
|
|
|
|
/// .chunked_body(File::open("body.txt")?, 8096)
|
|
|
|
/// .finalize();
|
|
|
|
/// # Ok(())
|
|
|
|
/// # }
|
|
|
|
/// ```
|
2016-10-25 11:03:50 +00:00
|
|
|
#[inline(always)]
|
2016-12-15 08:47:31 +00:00
|
|
|
pub fn chunked_body<B: io::Read + 'r>(&mut self, body: B, chunk_size: u64)
|
|
|
|
-> &mut ResponseBuilder<'r>
|
|
|
|
{
|
|
|
|
self.response.set_chunked_body(body, chunk_size);
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2016-12-20 07:29:20 +00:00
|
|
|
/// Merges the `other` `Response` into `self` by setting any fields in
|
|
|
|
/// `self` to the corresponding value in `other` if they are set in `other`.
|
|
|
|
/// Fields in `self` are unchanged if they are not set in `other`. If a
|
|
|
|
/// header is set in both `self` and `other`, the values in `other` are
|
|
|
|
/// kept. Headers set only in `self` remain.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use rocket::Response;
|
|
|
|
/// use rocket::http::{Status, ContentType};
|
|
|
|
///
|
|
|
|
/// let base = Response::build()
|
|
|
|
/// .status(Status::NotFound)
|
|
|
|
/// .header(ContentType::HTML)
|
|
|
|
/// .raw_header("X-Custom", "value 1")
|
|
|
|
/// .finalize();
|
|
|
|
///
|
|
|
|
/// let response = Response::build()
|
|
|
|
/// .status(Status::ImATeapot)
|
|
|
|
/// .raw_header("X-Custom", "value 2")
|
|
|
|
/// .raw_header_adjoin("X-Custom", "value 3")
|
|
|
|
/// .merge(base)
|
|
|
|
/// .finalize();
|
|
|
|
///
|
|
|
|
/// assert_eq!(response.status(), Status::NotFound);
|
|
|
|
///
|
|
|
|
/// # {
|
|
|
|
/// let ctype: Vec<_> = response.header_values("Content-Type").collect();
|
|
|
|
/// assert_eq!(ctype, vec![ContentType::HTML.to_string()]);
|
|
|
|
/// # }
|
|
|
|
///
|
|
|
|
/// # {
|
|
|
|
/// let custom_values: Vec<_> = response.header_values("X-Custom").collect();
|
|
|
|
/// assert_eq!(custom_values, vec!["value 1"]);
|
|
|
|
/// # }
|
|
|
|
/// ```
|
2016-12-15 08:47:31 +00:00
|
|
|
#[inline(always)]
|
|
|
|
pub fn merge(&mut self, other: Response<'r>) -> &mut ResponseBuilder<'r> {
|
|
|
|
self.response.merge(other);
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2016-12-20 07:29:20 +00:00
|
|
|
/// Joins the `other` `Response` into `self` by setting any fields in `self`
|
|
|
|
/// to the corresponding value in `other` if they are set in `self`. Fields
|
|
|
|
/// in `self` are unchanged if they are already set. If a header is set in
|
|
|
|
/// both `self` and `other`, the values are adjoined, with the values in
|
|
|
|
/// `self` coming first. Headers only in `self` or `other` are set in
|
|
|
|
/// `self`.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use rocket::Response;
|
|
|
|
/// use rocket::http::{Status, ContentType};
|
|
|
|
///
|
|
|
|
/// let other = Response::build()
|
|
|
|
/// .status(Status::NotFound)
|
|
|
|
/// .header(ContentType::HTML)
|
|
|
|
/// .raw_header("X-Custom", "value 1")
|
|
|
|
/// .finalize();
|
|
|
|
///
|
|
|
|
/// let response = Response::build()
|
|
|
|
/// .status(Status::ImATeapot)
|
|
|
|
/// .raw_header("X-Custom", "value 2")
|
|
|
|
/// .raw_header_adjoin("X-Custom", "value 3")
|
|
|
|
/// .join(other)
|
|
|
|
/// .finalize();
|
|
|
|
///
|
|
|
|
/// assert_eq!(response.status(), Status::ImATeapot);
|
|
|
|
///
|
|
|
|
/// # {
|
|
|
|
/// let ctype: Vec<_> = response.header_values("Content-Type").collect();
|
|
|
|
/// assert_eq!(ctype, vec![ContentType::HTML.to_string()]);
|
|
|
|
/// # }
|
|
|
|
///
|
|
|
|
/// # {
|
|
|
|
/// let custom_values: Vec<_> = response.header_values("X-Custom").collect();
|
|
|
|
/// assert_eq!(custom_values, vec!["value 2", "value 3", "value 1"]);
|
|
|
|
/// # }
|
|
|
|
/// ```
|
2016-12-15 08:47:31 +00:00
|
|
|
#[inline(always)]
|
|
|
|
pub fn join(&mut self, other: Response<'r>) -> &mut ResponseBuilder<'r> {
|
|
|
|
self.response.join(other);
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2016-12-20 07:29:20 +00:00
|
|
|
/// Retrieve the built `Response`.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use rocket::Response;
|
|
|
|
///
|
2017-02-02 10:16:21 +00:00
|
|
|
/// # #[allow(unused_variables)]
|
2016-12-20 07:29:20 +00:00
|
|
|
/// let response = Response::build()
|
|
|
|
/// // build the response
|
|
|
|
/// .finalize();
|
|
|
|
/// ```
|
2016-12-15 08:47:31 +00:00
|
|
|
#[inline(always)]
|
|
|
|
pub fn finalize(&mut self) -> Response<'r> {
|
|
|
|
::std::mem::replace(&mut self.response, Response::new())
|
|
|
|
}
|
|
|
|
|
2016-12-20 07:29:20 +00:00
|
|
|
/// Retrieve the built `Response` wrapped in `Ok`.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use rocket::Response;
|
|
|
|
///
|
|
|
|
/// let response: Result<Response, ()> = Response::build()
|
|
|
|
/// // build the response
|
|
|
|
/// .ok();
|
|
|
|
///
|
|
|
|
/// assert!(response.is_ok());
|
|
|
|
/// ```
|
2016-12-15 08:47:31 +00:00
|
|
|
#[inline(always)]
|
|
|
|
pub fn ok<T>(&mut self) -> Result<Response<'r>, T> {
|
|
|
|
Ok(self.finalize())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-20 07:29:20 +00:00
|
|
|
/// An HTTP/Rocket response, returned by `Responder`s.
|
2016-12-17 17:18:30 +00:00
|
|
|
#[derive(Default)]
|
2016-12-15 08:47:31 +00:00
|
|
|
pub struct Response<'r> {
|
|
|
|
status: Option<Status>,
|
2016-12-15 20:37:17 +00:00
|
|
|
headers: HeaderMap<'r>,
|
2016-12-15 08:47:31 +00:00
|
|
|
body: Option<Body<Box<io::Read + 'r>>>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'r> Response<'r> {
|
2016-12-21 01:27:31 +00:00
|
|
|
/// Creates a new, empty `Response` without a status, body, or headers.
|
|
|
|
/// Because all HTTP responses must have a status, if a default `Response`
|
|
|
|
/// is written to the client without a status, the status defaults to `200
|
|
|
|
/// Ok`.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use rocket::Response;
|
|
|
|
/// use rocket::http::Status;
|
|
|
|
///
|
|
|
|
/// let mut response = Response::new();
|
|
|
|
///
|
|
|
|
/// assert_eq!(response.status(), Status::Ok);
|
|
|
|
/// assert_eq!(response.headers().count(), 0);
|
|
|
|
/// assert!(response.body().is_none());
|
|
|
|
/// ```
|
2016-12-15 08:47:31 +00:00
|
|
|
#[inline(always)]
|
|
|
|
pub fn new() -> Response<'r> {
|
|
|
|
Response {
|
|
|
|
status: None,
|
2016-12-15 20:37:17 +00:00
|
|
|
headers: HeaderMap::new(),
|
2016-12-15 08:47:31 +00:00
|
|
|
body: None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-21 01:27:31 +00:00
|
|
|
/// Returns a `ResponseBuilder` with a base of `Response::new()`.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use rocket::Response;
|
|
|
|
///
|
2017-02-02 10:16:21 +00:00
|
|
|
/// # #[allow(unused_variables)]
|
2016-12-21 01:27:31 +00:00
|
|
|
/// let builder = Response::build();
|
|
|
|
/// ```
|
2016-12-15 08:47:31 +00:00
|
|
|
#[inline(always)]
|
|
|
|
pub fn build() -> ResponseBuilder<'r> {
|
|
|
|
Response::build_from(Response::new())
|
|
|
|
}
|
|
|
|
|
2016-12-21 01:27:31 +00:00
|
|
|
/// Returns a `ResponseBuilder` with a base of `other`.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
2017-02-02 10:16:21 +00:00
|
|
|
/// # #![allow(unused_variables)]
|
2016-12-21 01:27:31 +00:00
|
|
|
/// use rocket::Response;
|
|
|
|
///
|
|
|
|
/// let other = Response::new();
|
|
|
|
/// let builder = Response::build_from(other);
|
|
|
|
/// ```
|
2016-12-15 08:47:31 +00:00
|
|
|
#[inline(always)]
|
|
|
|
pub fn build_from(other: Response<'r>) -> ResponseBuilder<'r> {
|
|
|
|
ResponseBuilder::new(other)
|
|
|
|
}
|
|
|
|
|
2016-12-21 01:27:31 +00:00
|
|
|
/// Returns the status of the `self`.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use rocket::Response;
|
|
|
|
/// use rocket::http::Status;
|
|
|
|
///
|
|
|
|
/// let mut response = Response::new();
|
|
|
|
/// assert_eq!(response.status(), Status::Ok);
|
|
|
|
///
|
|
|
|
/// response.set_status(Status::NotFound);
|
|
|
|
/// assert_eq!(response.status(), Status::NotFound);
|
|
|
|
/// ```
|
2016-12-15 08:47:31 +00:00
|
|
|
#[inline(always)]
|
|
|
|
pub fn status(&self) -> Status {
|
|
|
|
self.status.unwrap_or(Status::Ok)
|
|
|
|
}
|
|
|
|
|
2016-12-21 01:27:31 +00:00
|
|
|
/// Sets the status of `self` to `status`.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use rocket::Response;
|
|
|
|
/// use rocket::http::Status;
|
|
|
|
///
|
|
|
|
/// let mut response = Response::new();
|
|
|
|
/// response.set_status(Status::ImATeapot);
|
|
|
|
/// assert_eq!(response.status(), Status::ImATeapot);
|
|
|
|
/// ```
|
2016-12-15 08:47:31 +00:00
|
|
|
#[inline(always)]
|
|
|
|
pub fn set_status(&mut self, status: Status) {
|
|
|
|
self.status = Some(status);
|
|
|
|
}
|
|
|
|
|
2016-12-21 01:27:31 +00:00
|
|
|
/// Sets the status of `self` to a custom `status` with status code `code`
|
|
|
|
/// and reason phrase `reason`. This method should be used sparingly; prefer
|
|
|
|
/// to use [set_status](#method.set_status) instead.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use rocket::Response;
|
|
|
|
/// use rocket::http::Status;
|
|
|
|
///
|
|
|
|
/// let mut response = Response::new();
|
|
|
|
/// response.set_raw_status(699, "Tripped a Wire");
|
|
|
|
/// assert_eq!(response.status(), Status::new(699, "Tripped a Wire"));
|
|
|
|
/// ```
|
2016-12-15 08:47:31 +00:00
|
|
|
#[inline(always)]
|
|
|
|
pub fn set_raw_status(&mut self, code: u16, reason: &'static str) {
|
|
|
|
self.status = Some(Status::new(code, reason));
|
|
|
|
}
|
|
|
|
|
2016-12-21 01:27:31 +00:00
|
|
|
/// Returns an iterator over all of the headers stored in `self`. Multiple
|
|
|
|
/// headers with the same name may be returned, but all of the headers with
|
|
|
|
/// the same name will be appear in a group in the iterator. The values in
|
|
|
|
/// this group will be emitted in the order they were added to `self`. Aside
|
|
|
|
/// from this grouping, there are no other ordering guarantees.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use rocket::Response;
|
|
|
|
/// use rocket::http::Header;
|
|
|
|
///
|
|
|
|
/// let mut response = Response::new();
|
|
|
|
/// response.adjoin_raw_header("X-Custom", "1");
|
|
|
|
/// response.adjoin_raw_header("X-Custom", "2");
|
|
|
|
///
|
|
|
|
/// let mut headers = response.headers();
|
|
|
|
/// assert_eq!(headers.next(), Some(Header::new("X-Custom", "1")));
|
|
|
|
/// assert_eq!(headers.next(), Some(Header::new("X-Custom", "2")));
|
|
|
|
/// assert_eq!(headers.next(), None);
|
|
|
|
/// ```
|
2016-12-15 08:47:31 +00:00
|
|
|
#[inline(always)]
|
|
|
|
pub fn headers<'a>(&'a self) -> impl Iterator<Item=Header<'a>> {
|
2016-12-15 20:37:17 +00:00
|
|
|
self.headers.iter()
|
2016-12-15 08:47:31 +00:00
|
|
|
}
|
|
|
|
|
2016-12-21 01:27:31 +00:00
|
|
|
/// Returns an iterator over all of the values stored in `self` for the
|
|
|
|
/// header with name `name`. The values are returned in FIFO order.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use rocket::Response;
|
|
|
|
///
|
|
|
|
/// let mut response = Response::new();
|
|
|
|
/// response.adjoin_raw_header("X-Custom", "1");
|
|
|
|
/// response.adjoin_raw_header("X-Custom", "2");
|
|
|
|
///
|
|
|
|
/// let values: Vec<_> = response.header_values("X-Custom").collect();
|
|
|
|
/// assert_eq!(values, vec!["1", "2"]);
|
|
|
|
/// ```
|
2016-12-15 08:47:31 +00:00
|
|
|
#[inline(always)]
|
2016-12-20 07:29:20 +00:00
|
|
|
pub fn header_values<'h>(&'h self, name: &str) -> impl Iterator<Item=&'h str> {
|
2016-12-15 20:37:17 +00:00
|
|
|
self.headers.get(name)
|
2016-12-15 08:47:31 +00:00
|
|
|
}
|
|
|
|
|
2016-12-21 01:27:31 +00:00
|
|
|
/// Sets the header `header` in `self`. Any existing headers with the name
|
|
|
|
/// `header.name` will be lost, and only `header` will remain. The type of
|
|
|
|
/// `header` can be any type that implements `Into<Header>`. This includes
|
|
|
|
/// `Header` itself, [ContentType](/rocket/http/struct.ContentType.html) and
|
|
|
|
/// [hyper::header types](/rocket/http/hyper/header/index.html).
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use rocket::Response;
|
|
|
|
/// use rocket::http::ContentType;
|
|
|
|
///
|
|
|
|
/// let mut response = Response::new();
|
|
|
|
///
|
|
|
|
/// response.set_header(ContentType::HTML);
|
|
|
|
/// assert_eq!(response.headers().next(), Some(ContentType::HTML.into()));
|
|
|
|
/// assert_eq!(response.headers().count(), 1);
|
|
|
|
///
|
|
|
|
/// response.set_header(ContentType::JSON);
|
|
|
|
/// assert_eq!(response.headers().next(), Some(ContentType::JSON.into()));
|
|
|
|
/// assert_eq!(response.headers().count(), 1);
|
|
|
|
/// ```
|
2016-12-15 08:47:31 +00:00
|
|
|
#[inline(always)]
|
2016-12-15 20:37:17 +00:00
|
|
|
pub fn set_header<'h: 'r, H: Into<Header<'h>>>(&mut self, header: H) -> bool {
|
|
|
|
self.headers.replace(header)
|
2016-12-15 08:47:31 +00:00
|
|
|
}
|
|
|
|
|
2016-12-21 01:27:31 +00:00
|
|
|
/// Sets the custom header with name `name` and value `value` in `self`. Any
|
|
|
|
/// existing headers with the same `name` will be lost, and the new custom
|
|
|
|
/// header will remain. This method should be used sparingly; prefer to use
|
|
|
|
/// [set_header](#method.set_header) instead.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use rocket::Response;
|
|
|
|
/// use rocket::http::Header;
|
|
|
|
///
|
|
|
|
/// let mut response = Response::new();
|
|
|
|
///
|
|
|
|
/// response.set_raw_header("X-Custom", "1");
|
|
|
|
/// assert_eq!(response.headers().next(), Some(Header::new("X-Custom", "1")));
|
|
|
|
/// assert_eq!(response.headers().count(), 1);
|
|
|
|
///
|
|
|
|
/// response.set_raw_header("X-Custom", "2");
|
|
|
|
/// assert_eq!(response.headers().next(), Some(Header::new("X-Custom", "2")));
|
|
|
|
/// assert_eq!(response.headers().count(), 1);
|
|
|
|
/// ```
|
2016-12-15 08:47:31 +00:00
|
|
|
#[inline(always)]
|
2016-12-15 20:37:17 +00:00
|
|
|
pub fn set_raw_header<'a: 'r, 'b: 'r, N, V>(&mut self, name: N, value: V) -> bool
|
2016-12-15 08:47:31 +00:00
|
|
|
where N: Into<Cow<'a, str>>, V: Into<Cow<'b, str>>
|
|
|
|
{
|
2016-12-15 20:37:17 +00:00
|
|
|
self.set_header(Header::new(name, value))
|
2016-12-15 08:47:31 +00:00
|
|
|
}
|
|
|
|
|
2016-12-21 01:27:31 +00:00
|
|
|
/// Adds the header `header` to `self`. If `self` contains headers with the
|
|
|
|
/// name `header.name`, another header with the same name and value
|
|
|
|
/// `header.value` is added. The type of `header` can be any type that
|
|
|
|
/// implements `Into<Header>`. This includes `Header` itself,
|
|
|
|
/// [ContentType](/rocket/http/struct.ContentType.html) and [hyper::header
|
|
|
|
/// types](/rocket/http/hyper/header/index.html).
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use rocket::Response;
|
|
|
|
/// use rocket::http::hyper::header::Accept;
|
|
|
|
///
|
|
|
|
/// let mut response = Response::new();
|
|
|
|
/// response.adjoin_header(Accept::json());
|
|
|
|
/// response.adjoin_header(Accept::text());
|
|
|
|
///
|
|
|
|
/// let mut accept_headers = response.headers();
|
|
|
|
/// assert_eq!(accept_headers.next(), Some(Accept::json().into()));
|
|
|
|
/// assert_eq!(accept_headers.next(), Some(Accept::text().into()));
|
|
|
|
/// assert_eq!(accept_headers.next(), None);
|
|
|
|
/// ```
|
2016-12-15 08:47:31 +00:00
|
|
|
#[inline(always)]
|
|
|
|
pub fn adjoin_header<'h: 'r, H: Into<Header<'h>>>(&mut self, header: H) {
|
2016-12-15 20:37:17 +00:00
|
|
|
self.headers.add(header)
|
2016-12-15 08:47:31 +00:00
|
|
|
}
|
|
|
|
|
2016-12-21 01:27:31 +00:00
|
|
|
/// Adds a custom header with name `name` and value `value` to `self`. If
|
|
|
|
/// `self` already contains headers with the name `name`, another header
|
|
|
|
/// with the same `name` and `value` is added. The type of `header` can be
|
|
|
|
/// any type that implements `Into<Header>`. This includes `Header` itself,
|
|
|
|
/// [ContentType](/rocket/http/struct.ContentType.html) and [hyper::header
|
|
|
|
/// types](/rocket/http/hyper/header/index.html).
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use rocket::Response;
|
|
|
|
/// use rocket::http::Header;
|
|
|
|
///
|
|
|
|
/// let mut response = Response::new();
|
|
|
|
/// response.adjoin_raw_header("X-Custom", "one");
|
|
|
|
/// response.adjoin_raw_header("X-Custom", "two");
|
|
|
|
///
|
|
|
|
/// let mut custom_headers = response.headers();
|
|
|
|
/// assert_eq!(custom_headers.next(), Some(Header::new("X-Custom", "one")));
|
|
|
|
/// assert_eq!(custom_headers.next(), Some(Header::new("X-Custom", "two")));
|
|
|
|
/// assert_eq!(custom_headers.next(), None);
|
|
|
|
/// ```
|
2016-12-15 08:47:31 +00:00
|
|
|
#[inline(always)]
|
|
|
|
pub fn adjoin_raw_header<'a: 'r, 'b: 'r, N, V>(&mut self, name: N, value: V)
|
|
|
|
where N: Into<Cow<'a, str>>, V: Into<Cow<'b, str>>
|
|
|
|
{
|
|
|
|
self.adjoin_header(Header::new(name, value));
|
|
|
|
}
|
|
|
|
|
2016-12-21 01:27:31 +00:00
|
|
|
/// Removes all headers with the name `name`.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use rocket::Response;
|
|
|
|
///
|
|
|
|
/// let mut response = Response::new();
|
|
|
|
///
|
|
|
|
/// response.adjoin_raw_header("X-Custom", "one");
|
|
|
|
/// response.adjoin_raw_header("X-Custom", "two");
|
|
|
|
/// response.adjoin_raw_header("X-Other", "hi");
|
|
|
|
/// assert_eq!(response.headers().count(), 3);
|
|
|
|
///
|
|
|
|
/// response.remove_header("X-Custom");
|
|
|
|
/// assert_eq!(response.headers().count(), 1);
|
|
|
|
/// ```
|
2016-12-15 08:47:31 +00:00
|
|
|
#[inline(always)]
|
2016-12-15 20:37:17 +00:00
|
|
|
pub fn remove_header(&mut self, name: &str) {
|
2016-12-15 08:47:31 +00:00
|
|
|
self.headers.remove(name);
|
|
|
|
}
|
|
|
|
|
2016-12-21 01:27:31 +00:00
|
|
|
/// Returns a mutable borrow of the body of `self`, if there is one. The
|
|
|
|
/// body is borrowed mutably to allow for reading.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use std::io::Cursor;
|
|
|
|
/// use rocket::Response;
|
|
|
|
///
|
|
|
|
/// let mut response = Response::new();
|
|
|
|
/// assert!(response.body().is_none());
|
|
|
|
///
|
|
|
|
/// response.set_sized_body(Cursor::new("Hello, world!"));
|
|
|
|
///
|
|
|
|
/// let body_string = response.body().and_then(|b| b.into_string());
|
|
|
|
/// assert_eq!(body_string, Some("Hello, world!".to_string()));
|
|
|
|
/// assert!(response.body().is_some());
|
|
|
|
/// ```
|
2016-12-15 08:47:31 +00:00
|
|
|
#[inline(always)]
|
|
|
|
pub fn body(&mut self) -> Option<Body<&mut io::Read>> {
|
|
|
|
// Looks crazy, right? Needed so Rust infers lifetime correctly. Weird.
|
|
|
|
match self.body.as_mut() {
|
|
|
|
Some(body) => Some(match body.as_mut() {
|
2016-12-16 13:17:16 +00:00
|
|
|
Body::Sized(b, size) => Body::Sized(b, size),
|
|
|
|
Body::Chunked(b, chunk_size) => Body::Chunked(b, chunk_size),
|
2016-12-15 08:47:31 +00:00
|
|
|
}),
|
|
|
|
None => None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-21 01:27:31 +00:00
|
|
|
/// Moves the body of `self` out and returns it, if there is one, leaving no
|
|
|
|
/// body in its place.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use std::io::Cursor;
|
|
|
|
/// use rocket::Response;
|
|
|
|
///
|
|
|
|
/// let mut response = Response::new();
|
|
|
|
/// assert!(response.body().is_none());
|
|
|
|
///
|
|
|
|
/// response.set_sized_body(Cursor::new("Hello, world!"));
|
|
|
|
/// assert!(response.body().is_some());
|
|
|
|
///
|
|
|
|
/// let body = response.take_body();
|
|
|
|
/// let body_string = body.and_then(|b| b.into_string());
|
|
|
|
/// assert_eq!(body_string, Some("Hello, world!".to_string()));
|
|
|
|
/// assert!(response.body().is_none());
|
|
|
|
/// ```
|
2016-12-15 08:47:31 +00:00
|
|
|
#[inline(always)]
|
|
|
|
pub fn take_body(&mut self) -> Option<Body<Box<io::Read + 'r>>> {
|
|
|
|
self.body.take()
|
|
|
|
}
|
|
|
|
|
2016-12-21 01:27:31 +00:00
|
|
|
// Makes the `Read`er in the body empty but leaves the size of the body if
|
|
|
|
// it exists. Only meant to be used to handle HEAD requests automatically.
|
2016-12-16 13:17:16 +00:00
|
|
|
#[inline(always)]
|
2017-02-03 10:16:46 +00:00
|
|
|
pub(crate) fn strip_body(&mut self) {
|
2016-12-16 13:17:16 +00:00
|
|
|
if let Some(body) = self.take_body() {
|
|
|
|
self.body = match body {
|
|
|
|
Body::Sized(_, n) => Some(Body::Sized(Box::new(io::empty()), n)),
|
|
|
|
Body::Chunked(..) => None
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-21 01:27:31 +00:00
|
|
|
/// Sets the body of `self` to be the fixed-sized `body`. The size of the
|
|
|
|
/// body is obtained by `seek`ing to the end and then `seek`ing back to the
|
|
|
|
/// start.
|
|
|
|
///
|
|
|
|
/// # Panics
|
|
|
|
///
|
|
|
|
/// If either seek fails, this method panics. If you believe it is possible
|
|
|
|
/// for `seek` to panic for `B`, use [set_raw_body](#method.set_raw_body)
|
|
|
|
/// instead.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use std::io::Cursor;
|
|
|
|
/// use rocket::Response;
|
|
|
|
///
|
|
|
|
/// let mut response = Response::new();
|
|
|
|
/// response.set_sized_body(Cursor::new("Hello, world!"));
|
|
|
|
///
|
|
|
|
/// let body_string = response.body().and_then(|b| b.into_string());
|
|
|
|
/// assert_eq!(body_string, Some("Hello, world!".to_string()));
|
|
|
|
/// ```
|
|
|
|
#[inline]
|
2016-12-15 08:47:31 +00:00
|
|
|
pub fn set_sized_body<B>(&mut self, mut body: B)
|
|
|
|
where B: io::Read + io::Seek + 'r
|
|
|
|
{
|
|
|
|
let size = body.seek(io::SeekFrom::End(0))
|
|
|
|
.expect("Attempted to retrieve size by seeking, but failed.");
|
|
|
|
body.seek(io::SeekFrom::Start(0))
|
|
|
|
.expect("Attempted to reset body by seeking after getting size.");
|
2016-12-21 01:27:31 +00:00
|
|
|
self.body = Some(Body::Sized(Box::new(body.take(size)), size));
|
2016-12-15 08:47:31 +00:00
|
|
|
}
|
|
|
|
|
2016-12-21 01:27:31 +00:00
|
|
|
/// Sets the body of `self` to be `body`, which will be streamed. The chunk
|
|
|
|
/// size of the stream is
|
|
|
|
/// [DEFAULT_CHUNK_SIZE](/rocket/response/constant.DEFAULT_CHUNK_SIZE.html).
|
|
|
|
/// Use [set_chunked_body](#method.set_chunked_body) for custom chunk sizes.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use std::io::{Read, repeat};
|
|
|
|
/// use rocket::Response;
|
|
|
|
///
|
|
|
|
/// let mut response = Response::new();
|
|
|
|
/// response.set_streamed_body(repeat(97).take(5));
|
|
|
|
///
|
|
|
|
/// let body_string = response.body().and_then(|b| b.into_string());
|
|
|
|
/// assert_eq!(body_string, Some("aaaaa".to_string()));
|
|
|
|
/// ```
|
2016-12-15 08:47:31 +00:00
|
|
|
#[inline(always)]
|
|
|
|
pub fn set_streamed_body<B>(&mut self, body: B) where B: io::Read + 'r {
|
|
|
|
self.set_chunked_body(body, DEFAULT_CHUNK_SIZE);
|
|
|
|
}
|
|
|
|
|
2016-12-21 01:27:31 +00:00
|
|
|
/// Sets the body of `self` to be `body`, which will be streamed with chunk
|
|
|
|
/// size `chunk_size`.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use std::io::{Read, repeat};
|
|
|
|
/// use rocket::Response;
|
|
|
|
///
|
|
|
|
/// let mut response = Response::new();
|
|
|
|
/// response.set_chunked_body(repeat(97).take(5), 10);
|
|
|
|
///
|
|
|
|
/// let body_string = response.body().and_then(|b| b.into_string());
|
|
|
|
/// assert_eq!(body_string, Some("aaaaa".to_string()));
|
|
|
|
/// ```
|
2016-12-15 08:47:31 +00:00
|
|
|
#[inline(always)]
|
|
|
|
pub fn set_chunked_body<B>(&mut self, body: B, chunk_size: u64)
|
|
|
|
where B: io::Read + 'r {
|
|
|
|
self.body = Some(Body::Chunked(Box::new(body), chunk_size));
|
|
|
|
}
|
|
|
|
|
2016-12-21 01:27:31 +00:00
|
|
|
/// Sets the body of `self` to be `body`. This method should typically not
|
|
|
|
/// be used, opting instead for one of `set_sized_body`,
|
|
|
|
/// `set_streamed_body`, or `set_chunked_body`.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use std::io::Cursor;
|
|
|
|
/// use rocket::response::{Response, Body};
|
|
|
|
///
|
|
|
|
/// let body = Body::Sized(Cursor::new("Hello!"), 6);
|
|
|
|
///
|
|
|
|
/// let mut response = Response::new();
|
|
|
|
/// response.set_raw_body(body);
|
|
|
|
///
|
|
|
|
/// let body_string = response.body().and_then(|b| b.into_string());
|
|
|
|
/// assert_eq!(body_string, Some("Hello!".to_string()));
|
|
|
|
/// ```
|
|
|
|
#[inline(always)]
|
|
|
|
pub fn set_raw_body<T: io::Read + 'r>(&mut self, body: Body<T>) {
|
|
|
|
self.body = Some(match body {
|
|
|
|
Body::Sized(b, n) => Body::Sized(Box::new(b.take(n)), n),
|
|
|
|
Body::Chunked(b, n) => Body::Chunked(Box::new(b), n),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-12-16 00:34:19 +00:00
|
|
|
/// Replaces this response's status and body with that of `other`, if they
|
|
|
|
/// exist in `other`. Any headers that exist in `other` replace the ones in
|
|
|
|
/// `self`. Any in `self` that aren't in `other` remain in `self`.
|
2016-12-21 01:27:31 +00:00
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use rocket::Response;
|
|
|
|
/// use rocket::http::{Status, ContentType};
|
|
|
|
///
|
|
|
|
/// let base = Response::build()
|
|
|
|
/// .status(Status::NotFound)
|
|
|
|
/// .header(ContentType::HTML)
|
|
|
|
/// .raw_header("X-Custom", "value 1")
|
|
|
|
/// .finalize();
|
|
|
|
///
|
|
|
|
/// let response = Response::build()
|
|
|
|
/// .status(Status::ImATeapot)
|
|
|
|
/// .raw_header("X-Custom", "value 2")
|
|
|
|
/// .raw_header_adjoin("X-Custom", "value 3")
|
|
|
|
/// .merge(base)
|
|
|
|
/// .finalize();
|
|
|
|
///
|
|
|
|
/// assert_eq!(response.status(), Status::NotFound);
|
|
|
|
///
|
|
|
|
/// # {
|
|
|
|
/// let ctype: Vec<_> = response.header_values("Content-Type").collect();
|
|
|
|
/// assert_eq!(ctype, vec![ContentType::HTML.to_string()]);
|
|
|
|
/// # }
|
|
|
|
///
|
|
|
|
/// # {
|
|
|
|
/// let custom_values: Vec<_> = response.header_values("X-Custom").collect();
|
|
|
|
/// assert_eq!(custom_values, vec!["value 1"]);
|
|
|
|
/// # }
|
|
|
|
/// ```
|
2016-12-15 08:47:31 +00:00
|
|
|
pub fn merge(&mut self, other: Response<'r>) {
|
|
|
|
if let Some(status) = other.status {
|
|
|
|
self.status = Some(status);
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(body) = other.body {
|
|
|
|
self.body = Some(body);
|
|
|
|
}
|
|
|
|
|
2016-12-16 00:34:19 +00:00
|
|
|
for (name, values) in other.headers.into_iter_raw() {
|
2017-01-03 03:33:36 +00:00
|
|
|
self.headers.replace_all(name.into_cow(), values);
|
2016-12-15 08:47:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Sets `self`'s status and body to that of `other` if they are not already
|
|
|
|
// set in `self`. Any headers present in both `other` and `self` are
|
|
|
|
// adjoined.
|
2016-12-21 01:27:31 +00:00
|
|
|
//
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// use rocket::Response;
|
|
|
|
/// use rocket::http::{Status, ContentType};
|
|
|
|
///
|
|
|
|
/// let other = Response::build()
|
|
|
|
/// .status(Status::NotFound)
|
|
|
|
/// .header(ContentType::HTML)
|
|
|
|
/// .raw_header("X-Custom", "value 1")
|
|
|
|
/// .finalize();
|
|
|
|
///
|
|
|
|
/// let response = Response::build()
|
|
|
|
/// .status(Status::ImATeapot)
|
|
|
|
/// .raw_header("X-Custom", "value 2")
|
|
|
|
/// .raw_header_adjoin("X-Custom", "value 3")
|
|
|
|
/// .join(other)
|
|
|
|
/// .finalize();
|
|
|
|
///
|
|
|
|
/// assert_eq!(response.status(), Status::ImATeapot);
|
|
|
|
///
|
|
|
|
/// # {
|
|
|
|
/// let ctype: Vec<_> = response.header_values("Content-Type").collect();
|
|
|
|
/// assert_eq!(ctype, vec![ContentType::HTML.to_string()]);
|
|
|
|
/// # }
|
|
|
|
///
|
|
|
|
/// # {
|
|
|
|
/// let custom_values: Vec<_> = response.header_values("X-Custom").collect();
|
|
|
|
/// assert_eq!(custom_values, vec!["value 2", "value 3", "value 1"]);
|
|
|
|
/// # }
|
|
|
|
/// ```
|
2016-12-15 08:47:31 +00:00
|
|
|
pub fn join(&mut self, other: Response<'r>) {
|
|
|
|
if self.status.is_none() {
|
|
|
|
self.status = other.status;
|
|
|
|
}
|
|
|
|
|
|
|
|
if self.body.is_none() {
|
|
|
|
self.body = other.body;
|
|
|
|
}
|
|
|
|
|
2016-12-16 00:34:19 +00:00
|
|
|
for (name, mut values) in other.headers.into_iter_raw() {
|
2017-01-03 03:33:36 +00:00
|
|
|
self.headers.add_all(name.into_cow(), &mut values);
|
2016-12-15 08:47:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'r> fmt::Debug for Response<'r> {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
writeln!(f, "{}", self.status())?;
|
|
|
|
|
|
|
|
for header in self.headers() {
|
|
|
|
writeln!(f, "{}", header)?;
|
|
|
|
}
|
|
|
|
|
|
|
|
match self.body {
|
|
|
|
Some(ref body) => writeln!(f, "{:?}", body),
|
|
|
|
None => writeln!(f, "Empty Body")
|
|
|
|
}
|
2016-10-25 11:03:50 +00:00
|
|
|
}
|
|
|
|
}
|
2016-12-16 04:57:14 +00:00
|
|
|
|
|
|
|
impl<'r> Responder<'r> for Response<'r> {
|
|
|
|
/// This is the identity implementation. It simply returns `Ok(self)`.
|
|
|
|
fn respond(self) -> Result<Response<'r>, Status> {
|
|
|
|
Ok(self)
|
|
|
|
}
|
|
|
|
}
|