1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-10-11 04:32:28 +00:00
actix-web/src/httpresponse.rs

501 lines
14 KiB
Rust
Raw Normal View History

2017-10-07 04:48:14 +00:00
//! Pieces pertaining to the HTTP message protocol.
use std::{io, mem, str};
2017-10-22 16:13:29 +00:00
use std::error::Error as Error;
2017-10-07 04:48:14 +00:00
use std::convert::Into;
2017-10-14 17:40:58 +00:00
use cookie::CookieJar;
2017-10-22 16:13:29 +00:00
use http::{StatusCode, Version, HeaderMap, HttpTryFrom, Error as HttpError};
2017-10-10 06:07:32 +00:00
use http::header::{self, HeaderName, HeaderValue};
2017-10-07 04:48:14 +00:00
use Cookie;
2017-10-24 06:25:32 +00:00
use body::Body;
2017-11-03 20:35:34 +00:00
use route::Frame;
2017-10-07 04:48:14 +00:00
/// Represents various types of connection
2017-10-08 04:48:00 +00:00
#[derive(Copy, Clone, PartialEq, Debug)]
pub enum ConnectionType {
/// Close connection after response
2017-10-08 04:48:00 +00:00
Close,
/// Keep connection alive after response
2017-10-08 04:48:00 +00:00
KeepAlive,
/// Connection is upgraded to different type
2017-10-08 04:48:00 +00:00
Upgrade,
}
2017-11-06 09:24:49 +00:00
/// Represents various types of connection
#[derive(Copy, Clone, PartialEq, Debug)]
pub enum ContentEncoding {
/// Automatically select encoding based on encoding negotiation
2017-11-06 09:24:49 +00:00
Auto,
/// A format using the Brotli algorithm
2017-11-06 09:24:49 +00:00
Br,
/// A format using the zlib structure with deflate algorithm
2017-11-06 09:24:49 +00:00
Deflate,
/// Gzip algorithm
2017-11-06 09:24:49 +00:00
Gzip,
/// Indicates the identity function (i.e. no compression, nor modification)
2017-11-06 09:24:49 +00:00
Identity,
}
impl<'a> From<&'a str> for ContentEncoding {
fn from(s: &'a str) -> ContentEncoding {
match s.trim().to_lowercase().as_ref() {
"br" => ContentEncoding::Br,
"gzip" => ContentEncoding::Gzip,
"deflate" => ContentEncoding::Deflate,
"identity" => ContentEncoding::Identity,
_ => ContentEncoding::Auto,
}
}
}
2017-10-07 04:48:14 +00:00
#[derive(Debug)]
/// An HTTP Response
2017-10-07 06:14:13 +00:00
pub struct HttpResponse {
2017-10-11 00:14:30 +00:00
pub version: Option<Version>,
2017-10-10 06:07:32 +00:00
pub headers: HeaderMap,
2017-10-07 04:48:14 +00:00
pub status: StatusCode,
2017-10-08 04:48:00 +00:00
reason: Option<&'static str>,
2017-10-07 04:48:14 +00:00
body: Body,
chunked: bool,
2017-11-06 09:24:49 +00:00
encoding: ContentEncoding,
2017-10-08 04:48:00 +00:00
connection_type: Option<ConnectionType>,
2017-10-22 16:13:29 +00:00
error: Option<Box<Error>>,
2017-10-07 04:48:14 +00:00
}
2017-10-07 06:14:13 +00:00
impl HttpResponse {
2017-10-10 23:03:32 +00:00
#[inline]
2017-10-15 21:17:41 +00:00
pub fn builder(status: StatusCode) -> HttpResponseBuilder {
HttpResponseBuilder {
2017-10-10 23:03:32 +00:00
parts: Some(Parts::new(status)),
err: None,
}
}
2017-10-07 06:14:13 +00:00
/// Constructs a response
2017-10-07 04:48:14 +00:00
#[inline]
2017-10-10 23:03:32 +00:00
pub fn new(status: StatusCode, body: Body) -> HttpResponse {
2017-10-07 06:14:13 +00:00
HttpResponse {
2017-10-11 00:14:30 +00:00
version: None,
2017-10-07 04:48:14 +00:00
headers: Default::default(),
status: status,
2017-10-08 04:48:00 +00:00
reason: None,
2017-10-07 04:48:14 +00:00
body: body,
chunked: false,
2017-11-06 09:24:49 +00:00
encoding: ContentEncoding::Auto,
2017-10-08 04:48:00 +00:00
connection_type: None,
2017-10-22 16:13:29 +00:00
error: None,
2017-10-07 04:48:14 +00:00
}
}
2017-10-22 16:13:29 +00:00
/// Constructs a response from error
#[inline]
pub fn from_error<E: Error + 'static>(status: StatusCode, error: E) -> HttpResponse {
HttpResponse {
version: None,
headers: Default::default(),
status: status,
reason: None,
2017-10-24 06:25:32 +00:00
body: Body::from_slice(error.description().as_ref()),
2017-10-22 16:13:29 +00:00
chunked: false,
2017-11-06 09:24:49 +00:00
encoding: ContentEncoding::Auto,
2017-10-22 16:13:29 +00:00
connection_type: None,
error: Some(Box::new(error)),
}
}
/// The `error` which is responsible for this response
#[inline]
2017-10-23 00:33:24 +00:00
#[cfg_attr(feature="cargo-clippy", allow(borrowed_box))]
2017-10-22 16:13:29 +00:00
pub fn error(&self) -> Option<&Box<Error>> {
self.error.as_ref()
}
2017-10-07 04:48:14 +00:00
/// Get the HTTP version of this response.
#[inline]
2017-10-11 00:14:30 +00:00
pub fn version(&self) -> Option<Version> {
2017-10-07 04:48:14 +00:00
self.version
}
/// Get the headers from the response.
#[inline]
2017-10-10 06:07:32 +00:00
pub fn headers(&self) -> &HeaderMap {
2017-10-07 04:48:14 +00:00
&self.headers
}
/// Get a mutable reference to the headers.
#[inline]
2017-10-10 06:07:32 +00:00
pub fn headers_mut(&mut self) -> &mut HeaderMap {
2017-10-07 04:48:14 +00:00
&mut self.headers
}
/// Get the status from the server.
#[inline]
pub fn status(&self) -> StatusCode {
self.status
}
/// Set the `StatusCode` for this response.
#[inline]
2017-10-10 23:03:32 +00:00
pub fn status_mut(&mut self) -> &mut StatusCode {
&mut self.status
2017-10-07 04:48:14 +00:00
}
2017-10-14 17:01:53 +00:00
/// Get custom reason for the response.
#[inline]
pub fn reason(&self) -> &str {
2017-10-16 08:19:23 +00:00
if let Some(reason) = self.reason {
2017-10-14 17:01:53 +00:00
reason
} else {
""
}
}
2017-10-08 04:48:00 +00:00
/// Set the custom reason for the response.
#[inline]
2017-10-10 23:03:32 +00:00
pub fn set_reason(&mut self, reason: &'static str) -> &mut Self {
2017-10-08 04:48:00 +00:00
self.reason = Some(reason);
self
}
/// Set connection type
2017-10-14 17:01:53 +00:00
pub fn set_connection_type(&mut self, conn: ConnectionType) -> &mut Self {
2017-10-08 04:48:00 +00:00
self.connection_type = Some(conn);
self
}
/// Connection upgrade status
pub fn upgrade(&self) -> bool {
self.connection_type == Some(ConnectionType::Upgrade)
}
2017-10-07 04:48:14 +00:00
/// Keep-alive status for this connection
2017-10-10 23:03:32 +00:00
pub fn keep_alive(&self) -> Option<bool> {
2017-10-23 05:54:11 +00:00
if let Some(ct) = self.connection_type {
match ct {
ConnectionType::KeepAlive => Some(true),
ConnectionType::Close | ConnectionType::Upgrade => Some(false),
}
2017-10-07 04:48:14 +00:00
} else {
2017-10-10 23:03:32 +00:00
None
2017-10-07 04:48:14 +00:00
}
}
2017-10-08 04:48:00 +00:00
2017-10-07 04:48:14 +00:00
/// is chunked encoding enabled
pub fn chunked(&self) -> bool {
self.chunked
}
/// Enables automatic chunked transfer encoding
pub fn enable_chunked_encoding(&mut self) -> Result<(), io::Error> {
2017-10-10 06:07:32 +00:00
if self.headers.contains_key(header::CONTENT_LENGTH) {
2017-10-07 04:48:14 +00:00
Err(io::Error::new(io::ErrorKind::Other,
"You can't enable chunked encoding when a content length is set"))
} else {
self.chunked = true;
Ok(())
}
}
/// Content encoding
pub fn content_encoding(&self) -> &ContentEncoding {
&self.encoding
}
/// Set content encoding
pub fn set_content_encoding(&mut self, enc: ContentEncoding) -> &mut Self {
self.encoding = enc;
self
}
2017-10-07 06:14:13 +00:00
/// Get body os this response
2017-10-07 04:48:14 +00:00
pub fn body(&self) -> &Body {
&self.body
}
2017-10-08 04:48:00 +00:00
/// Set a body
2017-10-10 23:03:32 +00:00
pub fn set_body<B: Into<Body>>(&mut self, body: B) {
2017-10-08 04:48:00 +00:00
self.body = body.into();
}
2017-10-07 06:14:13 +00:00
/// Set a body and return previous body value
2017-10-08 04:48:00 +00:00
pub fn replace_body<B: Into<Body>>(&mut self, body: B) -> Body {
2017-10-07 04:48:14 +00:00
mem::replace(&mut self.body, body.into())
}
}
2017-10-10 23:03:32 +00:00
/// Helper conversion implementation
2017-10-11 00:14:30 +00:00
impl<I: Into<HttpResponse>, E: Into<HttpResponse>> From<Result<I, E>> for HttpResponse {
fn from(res: Result<I, E>) -> Self {
match res {
Ok(val) => val.into(),
Err(err) => err.into(),
}
}
}
2017-11-03 20:35:34 +00:00
impl From<HttpResponse> for Frame {
fn from(resp: HttpResponse) -> Frame {
Frame::Message(resp)
}
}
2017-10-10 23:03:32 +00:00
#[derive(Debug)]
struct Parts {
2017-10-11 00:14:30 +00:00
version: Option<Version>,
2017-10-10 23:03:32 +00:00
headers: HeaderMap,
status: StatusCode,
reason: Option<&'static str>,
chunked: bool,
2017-11-06 09:24:49 +00:00
encoding: ContentEncoding,
2017-10-10 23:03:32 +00:00
connection_type: Option<ConnectionType>,
2017-10-14 17:40:58 +00:00
cookies: CookieJar,
2017-10-10 23:03:32 +00:00
}
impl Parts {
fn new(status: StatusCode) -> Self {
Parts {
2017-10-11 00:14:30 +00:00
version: None,
2017-10-10 23:03:32 +00:00
headers: HeaderMap::new(),
status: status,
reason: None,
chunked: false,
2017-11-06 09:24:49 +00:00
encoding: ContentEncoding::Auto,
2017-10-10 23:03:32 +00:00
connection_type: None,
2017-10-14 17:40:58 +00:00
cookies: CookieJar::new(),
2017-10-10 23:03:32 +00:00
}
}
}
/// An HTTP response builder
///
/// This type can be used to construct an instance of `HttpResponse` through a
/// builder-like pattern.
#[derive(Debug)]
2017-10-15 21:17:41 +00:00
pub struct HttpResponseBuilder {
2017-10-10 23:03:32 +00:00
parts: Option<Parts>,
2017-10-22 16:13:29 +00:00
err: Option<HttpError>,
2017-10-10 23:03:32 +00:00
}
2017-10-15 21:17:41 +00:00
impl HttpResponseBuilder {
2017-10-10 23:03:32 +00:00
/// Get the HTTP version of this response.
#[inline]
pub fn version(&mut self, version: Version) -> &mut Self {
if let Some(parts) = parts(&mut self.parts, &self.err) {
2017-10-11 00:14:30 +00:00
parts.version = Some(version);
2017-10-10 23:03:32 +00:00
}
self
}
/// Set the `StatusCode` for this response.
#[inline]
pub fn status(&mut self, status: StatusCode) -> &mut Self {
if let Some(parts) = parts(&mut self.parts, &self.err) {
parts.status = status;
}
self
}
/// Set a header.
#[inline]
pub fn header<K, V>(&mut self, key: K, value: V) -> &mut Self
where HeaderName: HttpTryFrom<K>,
HeaderValue: HttpTryFrom<V>
{
if let Some(parts) = parts(&mut self.parts, &self.err) {
match HeaderName::try_from(key) {
Ok(key) => {
match HeaderValue::try_from(value) {
Ok(value) => { parts.headers.append(key, value); }
Err(e) => self.err = Some(e.into()),
}
},
Err(e) => self.err = Some(e.into()),
};
}
self
}
/// Set the custom reason for the response.
#[inline]
pub fn reason(&mut self, reason: &'static str) -> &mut Self {
if let Some(parts) = parts(&mut self.parts, &self.err) {
parts.reason = Some(reason);
}
self
}
2017-11-06 09:24:49 +00:00
/// Set content encoding.
///
/// By default `ContentEncoding::Auto` is used, which automatically
/// negotiates content encoding based on request's `Accept-Encoding` headers.
/// To enforce specific encodnign other `ContentEncoding` could be used.
2017-11-06 09:24:49 +00:00
pub fn content_encoding(&mut self, enc: ContentEncoding) -> &mut Self {
if let Some(parts) = parts(&mut self.parts, &self.err) {
parts.encoding = enc;
}
self
}
2017-10-10 23:03:32 +00:00
/// Set connection type
2017-10-14 17:01:53 +00:00
pub fn connection_type(&mut self, conn: ConnectionType) -> &mut Self {
2017-10-10 23:03:32 +00:00
if let Some(parts) = parts(&mut self.parts, &self.err) {
parts.connection_type = Some(conn);
}
self
}
2017-10-14 17:01:53 +00:00
/// Set connection type to Upgrade
pub fn upgrade(&mut self) -> &mut Self {
self.connection_type(ConnectionType::Upgrade)
}
/// Force close connection, even if it is marked as keep-alive
pub fn force_close(&mut self) -> &mut Self {
self.connection_type(ConnectionType::Close)
}
2017-10-10 23:03:32 +00:00
/// Enables automatic chunked transfer encoding
pub fn enable_chunked(&mut self) -> &mut Self {
if let Some(parts) = parts(&mut self.parts, &self.err) {
parts.chunked = true;
}
self
}
2017-10-14 17:01:53 +00:00
/// Set response content type
pub fn content_type<V>(&mut self, value: V) -> &mut Self
where HeaderValue: HttpTryFrom<V>
{
if let Some(parts) = parts(&mut self.parts, &self.err) {
match HeaderValue::try_from(value) {
Ok(value) => { parts.headers.insert(header::CONTENT_TYPE, value); },
Err(e) => self.err = Some(e.into()),
};
}
self
}
/* /// Set response content charset
pub fn charset<V>(&mut self, value: V) -> &mut Self
where HeaderValue: HttpTryFrom<V>
{
if let Some(parts) = parts(&mut self.parts, &self.err) {
match HeaderValue::try_from(value) {
Ok(value) => { parts.headers.insert(header::CONTENT_TYPE, value); },
Err(e) => self.err = Some(e.into()),
};
}
self
}*/
2017-10-14 17:40:58 +00:00
/// Set a cookie
pub fn cookie<'c>(&mut self, cookie: Cookie<'c>) -> &mut Self {
if let Some(parts) = parts(&mut self.parts, &self.err) {
parts.cookies.add(cookie.into_owned());
}
self
}
/// Remote cookie, cookie has to be cookie from `HttpRequest::cookies()` method.
pub fn del_cookie<'a>(&mut self, cookie: &Cookie<'a>) -> &mut Self {
if let Some(parts) = parts(&mut self.parts, &self.err) {
let cookie = cookie.clone().into_owned();
parts.cookies.add_original(cookie.clone());
parts.cookies.remove(cookie);
}
self
}
2017-10-29 21:51:02 +00:00
pub fn if_true<F>(&mut self, value: bool, f: F) -> &mut Self
where F: Fn(&mut HttpResponseBuilder) + 'static
{
if value {
f(self);
}
self
}
2017-10-10 23:03:32 +00:00
/// Set a body
2017-10-22 16:13:29 +00:00
pub fn body<B: Into<Body>>(&mut self, body: B) -> Result<HttpResponse, HttpError> {
2017-10-14 17:40:58 +00:00
let mut parts = self.parts.take().expect("cannot reuse response builder");
2017-10-10 23:03:32 +00:00
if let Some(e) = self.err.take() {
return Err(e)
}
2017-10-14 17:40:58 +00:00
for cookie in parts.cookies.delta() {
parts.headers.append(
header::SET_COOKIE,
HeaderValue::from_str(&cookie.to_string())?);
}
2017-10-10 23:03:32 +00:00
Ok(HttpResponse {
version: parts.version,
headers: parts.headers,
status: parts.status,
reason: parts.reason,
body: body.into(),
chunked: parts.chunked,
2017-11-06 09:24:49 +00:00
encoding: parts.encoding,
2017-10-10 23:03:32 +00:00
connection_type: parts.connection_type,
2017-10-22 16:13:29 +00:00
error: None,
2017-10-10 23:03:32 +00:00
})
}
2017-10-24 06:52:20 +00:00
/// Set an empty body
pub fn finish(&mut self) -> Result<HttpResponse, HttpError> {
self.body(Body::Empty)
}
2017-10-10 23:03:32 +00:00
}
2017-10-22 16:13:29 +00:00
fn parts<'a>(parts: &'a mut Option<Parts>, err: &Option<HttpError>) -> Option<&'a mut Parts>
2017-10-10 23:03:32 +00:00
{
if err.is_some() {
return None
}
parts.as_mut()
}
2017-10-23 05:54:11 +00:00
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_body() {
assert!(Body::Length(10).has_body());
assert!(Body::Streaming.has_body());
}
#[test]
fn test_upgrade() {
let resp = HttpResponse::builder(StatusCode::OK)
.upgrade().body(Body::Empty).unwrap();
assert!(resp.upgrade())
}
#[test]
fn test_force_close() {
let resp = HttpResponse::builder(StatusCode::OK)
.force_close().body(Body::Empty).unwrap();
assert!(!resp.keep_alive().unwrap())
}
#[test]
fn test_content_type() {
let resp = HttpResponse::builder(StatusCode::OK)
.content_type("text/plain").body(Body::Empty).unwrap();
assert_eq!(resp.headers().get(header::CONTENT_TYPE).unwrap(), "text/plain")
}
#[test]
fn test_content_encoding() {
let resp = HttpResponse::builder(StatusCode::OK).finish().unwrap();
assert_eq!(*resp.content_encoding(), ContentEncoding::Auto);
let resp = HttpResponse::builder(StatusCode::OK)
.content_encoding(ContentEncoding::Br).finish().unwrap();
assert_eq!(*resp.content_encoding(), ContentEncoding::Br);
}
2017-10-23 05:54:11 +00:00
}