mirror of https://github.com/rwf2/Rocket.git
Redocument ContentType.
This commit is contained in:
parent
ddbd7966f7
commit
d44c61f1af
|
@ -6,17 +6,43 @@ use http::Header;
|
|||
use http::hyper::mime::Mime;
|
||||
use router::Collider;
|
||||
|
||||
/// Typed representation of HTTP Content-Types.
|
||||
/// Representation of HTTP Content-Types.
|
||||
///
|
||||
/// This type wraps raw HTTP `Content-Type`s in a type-safe manner. It provides
|
||||
/// methods to create and test against common HTTP content-types. It also
|
||||
/// provides methods to parse HTTP Content-Type values
|
||||
/// ([from_str](#method.from_str)) and to return the ContentType associated with
|
||||
/// a file extension ([from_ext](#method.from_extension)).
|
||||
/// # Usage
|
||||
///
|
||||
/// ContentTypes should rarely be created directly. Instead, an associated
|
||||
/// constant should be used; one is declared for most commonly used content
|
||||
/// types.
|
||||
///
|
||||
/// ## Example
|
||||
///
|
||||
/// A Content-Type of `text/html; charset=utf-8` can be insantiated via the
|
||||
/// `HTML` constant:
|
||||
///
|
||||
/// ```rust
|
||||
/// use rocket::http::ContentType;
|
||||
///
|
||||
/// let html = ContentType::HTML;
|
||||
/// ```
|
||||
///
|
||||
/// # Header
|
||||
///
|
||||
/// `ContentType` implements `Into<Header>`. As such, it can be used in any
|
||||
/// context where an `Into<Header>` is expected:
|
||||
///
|
||||
/// ```rust
|
||||
/// use rocket::http::ContentType;
|
||||
/// use rocket::response::Response;
|
||||
///
|
||||
/// let response = Response::build().header(ContentType::HTML).finalize();
|
||||
/// ```
|
||||
#[derive(Debug, Clone, PartialEq, Hash)]
|
||||
pub struct ContentType {
|
||||
/// The "type" component of the Content-Type.
|
||||
pub ttype: Cow<'static, str>,
|
||||
/// The "subtype" component of the Content-Type.
|
||||
pub subtype: Cow<'static, str>,
|
||||
/// Semicolon-seperated parameters associated with the Content-Type.
|
||||
pub params: Option<Cow<'static, str>>
|
||||
}
|
||||
|
||||
|
@ -45,7 +71,8 @@ macro_rules! ctrs {
|
|||
};
|
||||
)+
|
||||
|
||||
/// Returns `true` if this ContentType is known to Rocket.
|
||||
/// Returns `true` if this ContentType is known to Rocket, that is,
|
||||
/// there is an associated constant for `self`.
|
||||
pub fn is_known(&self) -> bool {
|
||||
match (&*self.ttype, &*self.subtype) {
|
||||
$(
|
||||
|
@ -63,7 +90,9 @@ macro_rules! ctrs {
|
|||
#[doc="</i>/<i>"]
|
||||
#[doc=$sub]
|
||||
#[doc="</i>."]
|
||||
/// Paramaters are not taken into account when doing that check.
|
||||
///
|
||||
/// Paramaters are not taken into account when doing this check.
|
||||
#[inline(always)]
|
||||
pub fn $check_name(&self) -> bool {
|
||||
self.ttype == $top && self.subtype == $sub
|
||||
}
|
||||
|
@ -72,34 +101,26 @@ macro_rules! ctrs {
|
|||
}
|
||||
|
||||
impl ContentType {
|
||||
#[inline(always)]
|
||||
pub fn new<T, S>(ttype: T, subtype: S) -> ContentType
|
||||
where T: Into<Cow<'static, str>>, S: Into<Cow<'static, str>>
|
||||
{
|
||||
ContentType {
|
||||
ttype: ttype.into(),
|
||||
subtype: subtype.into(),
|
||||
params: None
|
||||
}
|
||||
ctrs! {
|
||||
"any", Any, is_any => "*", "*",
|
||||
"HTML", HTML, is_html => "text", "html" ; "charset=utf-8",
|
||||
"Plain", Plain, is_plain => "text", "plain" ; "charset=utf-8",
|
||||
"JSON", JSON, is_json => "application", "json",
|
||||
"form", Form, is_form => "application", "x-www-form-urlencoded",
|
||||
"JavaScript", JavaScript, is_javascript => "application", "javascript",
|
||||
"CSS", CSS, is_css => "text", "css" ; "charset=utf-8",
|
||||
"data form", DataForm, is_data_form => "multipart", "form-data",
|
||||
"XML", XML, is_xml => "text", "xml" ; "charset=utf-8",
|
||||
"PNG", PNG, is_png => "image", "png",
|
||||
"GIF", GIF, is_gif => "image", "gif",
|
||||
"BMP", BMP, is_bmp => "image", "bmp",
|
||||
"JPEG", JPEG, is_jpeg => "image", "jpeg",
|
||||
"PDF", PDF, is_pdf => "application", "pdf"
|
||||
}
|
||||
|
||||
#[inline(always)]
|
||||
pub fn with_params<T, S, P>(ttype: T, subtype: S, params: Option<P>) -> ContentType
|
||||
where T: Into<Cow<'static, str>>,
|
||||
S: Into<Cow<'static, str>>,
|
||||
P: Into<Cow<'static, str>>
|
||||
{
|
||||
ContentType {
|
||||
ttype: ttype.into(),
|
||||
subtype: subtype.into(),
|
||||
params: params.map(|p| p.into())
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/// Returns the Content-Type associated with the extension `ext`. Not all
|
||||
/// extensions are recognized. If an extensions is not recognized, then this
|
||||
/// method returns a ContentType of `any`. The currently recognized
|
||||
/// method returns a ContentType of `Any`. The currently recognized
|
||||
/// extensions are: txt, html, htm, xml, js, css, json, png, gif, bmp, jpeg,
|
||||
/// jpg, and pdf.
|
||||
///
|
||||
|
@ -139,26 +160,63 @@ impl ContentType {
|
|||
}
|
||||
}
|
||||
|
||||
ctrs! {
|
||||
"any", Any, is_any => "*", "*",
|
||||
"form", Form, is_form => "application", "x-www-form-urlencoded",
|
||||
"data form", DataForm, is_data_form => "multipart", "form-data",
|
||||
"JSON", JSON, is_json => "application", "json",
|
||||
"XML", XML, is_xml => "text", "xml" ; "charset=utf-8",
|
||||
"HTML", HTML, is_html => "text", "html" ; "charset=utf-8",
|
||||
"Plain", Plain, is_plain => "text", "plain" ; "charset=utf-8",
|
||||
"JavaScript", JavaScript, is_javascript => "application", "javascript",
|
||||
"CSS", CSS, is_css => "text", "css" ; "charset=utf-8",
|
||||
"PNG", PNG, is_png => "image", "png",
|
||||
"GIF", GIF, is_gif => "image", "gif",
|
||||
"BMP", BMP, is_bmp => "image", "bmp",
|
||||
"JPEG", JPEG, is_jpeg => "image", "jpeg",
|
||||
"PDF", PDF, is_pdf => "application", "pdf"
|
||||
/// Creates a new `ContentType` with type `ttype` and subtype `subtype`.
|
||||
/// This should be _only_ to construct uncommon Content-Types or custom
|
||||
/// Content-Types. Use an associated constant for common Content-Types.
|
||||
///
|
||||
/// # Example
|
||||
///
|
||||
/// Create a custom `application/x-person` Content-Type:
|
||||
///
|
||||
/// ```rust
|
||||
/// use rocket::http::ContentType;
|
||||
///
|
||||
/// let custom = ContentType::new("application", "x-person");
|
||||
/// assert_eq!(custom.to_string(), "application/x-person".to_string());
|
||||
/// ```
|
||||
#[inline(always)]
|
||||
pub fn new<T, S>(ttype: T, subtype: S) -> ContentType
|
||||
where T: Into<Cow<'static, str>>, S: Into<Cow<'static, str>>
|
||||
{
|
||||
ContentType {
|
||||
ttype: ttype.into(),
|
||||
subtype: subtype.into(),
|
||||
params: None
|
||||
}
|
||||
}
|
||||
|
||||
/// Creates a new `ContentType` with type `ttype`, subtype `subtype`, and
|
||||
/// optionally parameters `params`, a semicolon-seperated list of
|
||||
/// parameters. This should be _only_ to construct uncommon Content-Types or
|
||||
/// custom Content-Types. Use an associated constant for common
|
||||
/// Content-Types.
|
||||
///
|
||||
/// # Example
|
||||
///
|
||||
/// Create a custom `application/x-id; id=1` Content-Type:
|
||||
///
|
||||
/// ```rust
|
||||
/// use rocket::http::ContentType;
|
||||
///
|
||||
/// let id = ContentType::with_params("application", "x-id", Some("id=1"));
|
||||
/// assert_eq!(id.to_string(), "application/x-id; id=1".to_string());
|
||||
/// ```
|
||||
#[inline(always)]
|
||||
pub fn with_params<T, S, P>(ttype: T, subtype: S, params: Option<P>) -> ContentType
|
||||
where T: Into<Cow<'static, str>>,
|
||||
S: Into<Cow<'static, str>>,
|
||||
P: Into<Cow<'static, str>>
|
||||
{
|
||||
ContentType {
|
||||
ttype: ttype.into(),
|
||||
subtype: subtype.into(),
|
||||
params: params.map(|p| p.into())
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl Default for ContentType {
|
||||
/// Returns a ContentType of `any`, or `*/*`.
|
||||
/// Returns a ContentType of `Any`, or `*/*`.
|
||||
#[inline(always)]
|
||||
fn default() -> ContentType {
|
||||
ContentType::Any
|
||||
|
@ -323,6 +381,8 @@ impl fmt::Display for ContentType {
|
|||
}
|
||||
}
|
||||
|
||||
/// Creates a new `Header` with name `Content-Type` and the value set to the
|
||||
/// HTTP rendering of this Content-Type.
|
||||
impl Into<Header<'static>> for ContentType {
|
||||
#[inline]
|
||||
fn into(self) -> Header<'static> {
|
||||
|
|
|
@ -39,4 +39,5 @@ pub use self::stream::Stream;
|
|||
pub use self::failure::Failure;
|
||||
#[doc(inline)] pub use self::content::Content;
|
||||
|
||||
/// Type alias for the `Result` of a `Responder::respond` call.
|
||||
pub type Result<'r> = ::std::result::Result<self::Response<'r>, ::http::Status>;
|
||||
|
|
|
@ -19,14 +19,14 @@ use response::{Response, Stream};
|
|||
///
|
||||
/// # Return Value
|
||||
///
|
||||
/// A `Responder` returns an `Ok(Response)` or an `Err(Status)`.
|
||||
/// A `Responder` returns an `Ok(Response)` or an `Err(Status)`:
|
||||
///
|
||||
/// An `Ok` variant means that the `Responder` was successful in generating a
|
||||
/// new `Response`. The `Response` will be written out to the client.
|
||||
/// * An `Ok` variant means that the `Responder` was successful in generating
|
||||
/// a `Response`. The `Response` will be written out to the client.
|
||||
///
|
||||
/// 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 to use to generate a proper response.
|
||||
/// * 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
|
||||
///
|
||||
|
@ -37,7 +37,7 @@ use response::{Response, Stream};
|
|||
///
|
||||
/// * **&str**
|
||||
///
|
||||
/// Sets the `Content-Type`t to `text/plain`. The string is used as the body
|
||||
/// 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))`.
|
||||
///
|
||||
|
@ -52,15 +52,15 @@ use response::{Response, Stream};
|
|||
/// Streams the `File` to the client. This is essentially an alias to
|
||||
/// `Stream::from(file)`.
|
||||
///
|
||||
/// * **impl Responder for ()**
|
||||
/// * **()**
|
||||
///
|
||||
/// 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
|
||||
/// respond to the client. Otherwise, an `Err` with status **404 Not Found**
|
||||
/// is returned and a warning is printed to the console.
|
||||
/// 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**
|
||||
///
|
||||
|
|
Loading…
Reference in New Issue