2020-11-02 09:23:18 +00:00
|
|
|
//! Status code based HTTP response builders.
|
|
|
|
|
2018-04-30 04:05:10 +00:00
|
|
|
#![allow(non_upper_case_globals)]
|
2020-11-02 09:23:18 +00:00
|
|
|
|
2018-03-22 03:15:52 +00:00
|
|
|
use http::StatusCode;
|
2018-12-06 22:32:52 +00:00
|
|
|
|
|
|
|
use crate::response::{Response, ResponseBuilder};
|
2017-10-07 04:48:14 +00:00
|
|
|
|
2020-11-02 09:23:18 +00:00
|
|
|
macro_rules! static_resp {
|
2017-11-28 22:23:42 +00:00
|
|
|
($name:ident, $status:expr) => {
|
2018-06-02 13:51:58 +00:00
|
|
|
#[allow(non_snake_case, missing_docs)]
|
2018-10-05 18:04:59 +00:00
|
|
|
pub fn $name() -> ResponseBuilder {
|
2019-04-08 06:06:21 +00:00
|
|
|
ResponseBuilder::new($status)
|
2017-11-28 22:23:42 +00:00
|
|
|
}
|
2018-04-13 23:02:01 +00:00
|
|
|
};
|
2017-11-28 22:23:42 +00:00
|
|
|
}
|
|
|
|
|
2018-10-05 18:04:59 +00:00
|
|
|
impl Response {
|
2020-11-02 09:23:18 +00:00
|
|
|
static_resp!(Continue, StatusCode::CONTINUE);
|
|
|
|
static_resp!(SwitchingProtocols, StatusCode::SWITCHING_PROTOCOLS);
|
|
|
|
static_resp!(Processing, StatusCode::PROCESSING);
|
|
|
|
|
|
|
|
static_resp!(Ok, StatusCode::OK);
|
|
|
|
static_resp!(Created, StatusCode::CREATED);
|
|
|
|
static_resp!(Accepted, StatusCode::ACCEPTED);
|
|
|
|
static_resp!(
|
2018-04-29 16:09:08 +00:00
|
|
|
NonAuthoritativeInformation,
|
|
|
|
StatusCode::NON_AUTHORITATIVE_INFORMATION
|
|
|
|
);
|
2018-03-31 06:07:33 +00:00
|
|
|
|
2020-11-02 09:23:18 +00:00
|
|
|
static_resp!(NoContent, StatusCode::NO_CONTENT);
|
|
|
|
static_resp!(ResetContent, StatusCode::RESET_CONTENT);
|
|
|
|
static_resp!(PartialContent, StatusCode::PARTIAL_CONTENT);
|
|
|
|
static_resp!(MultiStatus, StatusCode::MULTI_STATUS);
|
|
|
|
static_resp!(AlreadyReported, StatusCode::ALREADY_REPORTED);
|
2017-11-28 22:23:42 +00:00
|
|
|
|
2020-11-02 09:23:18 +00:00
|
|
|
static_resp!(MultipleChoices, StatusCode::MULTIPLE_CHOICES);
|
|
|
|
static_resp!(MovedPermanently, StatusCode::MOVED_PERMANENTLY);
|
|
|
|
static_resp!(Found, StatusCode::FOUND);
|
|
|
|
static_resp!(SeeOther, StatusCode::SEE_OTHER);
|
|
|
|
static_resp!(NotModified, StatusCode::NOT_MODIFIED);
|
|
|
|
static_resp!(UseProxy, StatusCode::USE_PROXY);
|
|
|
|
static_resp!(TemporaryRedirect, StatusCode::TEMPORARY_REDIRECT);
|
|
|
|
static_resp!(PermanentRedirect, StatusCode::PERMANENT_REDIRECT);
|
2017-11-28 22:23:42 +00:00
|
|
|
|
2020-11-02 09:23:18 +00:00
|
|
|
static_resp!(BadRequest, StatusCode::BAD_REQUEST);
|
|
|
|
static_resp!(NotFound, StatusCode::NOT_FOUND);
|
|
|
|
static_resp!(Unauthorized, StatusCode::UNAUTHORIZED);
|
|
|
|
static_resp!(PaymentRequired, StatusCode::PAYMENT_REQUIRED);
|
|
|
|
static_resp!(Forbidden, StatusCode::FORBIDDEN);
|
|
|
|
static_resp!(MethodNotAllowed, StatusCode::METHOD_NOT_ALLOWED);
|
|
|
|
static_resp!(NotAcceptable, StatusCode::NOT_ACCEPTABLE);
|
|
|
|
static_resp!(
|
2018-04-29 16:09:08 +00:00
|
|
|
ProxyAuthenticationRequired,
|
|
|
|
StatusCode::PROXY_AUTHENTICATION_REQUIRED
|
|
|
|
);
|
2020-11-02 09:23:18 +00:00
|
|
|
static_resp!(RequestTimeout, StatusCode::REQUEST_TIMEOUT);
|
|
|
|
static_resp!(Conflict, StatusCode::CONFLICT);
|
|
|
|
static_resp!(Gone, StatusCode::GONE);
|
|
|
|
static_resp!(LengthRequired, StatusCode::LENGTH_REQUIRED);
|
|
|
|
static_resp!(PreconditionFailed, StatusCode::PRECONDITION_FAILED);
|
|
|
|
static_resp!(PreconditionRequired, StatusCode::PRECONDITION_REQUIRED);
|
|
|
|
static_resp!(PayloadTooLarge, StatusCode::PAYLOAD_TOO_LARGE);
|
|
|
|
static_resp!(UriTooLong, StatusCode::URI_TOO_LONG);
|
|
|
|
static_resp!(UnsupportedMediaType, StatusCode::UNSUPPORTED_MEDIA_TYPE);
|
|
|
|
static_resp!(RangeNotSatisfiable, StatusCode::RANGE_NOT_SATISFIABLE);
|
|
|
|
static_resp!(ExpectationFailed, StatusCode::EXPECTATION_FAILED);
|
|
|
|
static_resp!(UnprocessableEntity, StatusCode::UNPROCESSABLE_ENTITY);
|
|
|
|
static_resp!(TooManyRequests, StatusCode::TOO_MANY_REQUESTS);
|
2017-11-28 22:23:42 +00:00
|
|
|
|
2020-11-02 09:23:18 +00:00
|
|
|
static_resp!(InternalServerError, StatusCode::INTERNAL_SERVER_ERROR);
|
|
|
|
static_resp!(NotImplemented, StatusCode::NOT_IMPLEMENTED);
|
|
|
|
static_resp!(BadGateway, StatusCode::BAD_GATEWAY);
|
|
|
|
static_resp!(ServiceUnavailable, StatusCode::SERVICE_UNAVAILABLE);
|
|
|
|
static_resp!(GatewayTimeout, StatusCode::GATEWAY_TIMEOUT);
|
|
|
|
static_resp!(VersionNotSupported, StatusCode::HTTP_VERSION_NOT_SUPPORTED);
|
|
|
|
static_resp!(VariantAlsoNegotiates, StatusCode::VARIANT_ALSO_NEGOTIATES);
|
|
|
|
static_resp!(InsufficientStorage, StatusCode::INSUFFICIENT_STORAGE);
|
|
|
|
static_resp!(LoopDetected, StatusCode::LOOP_DETECTED);
|
2017-11-28 22:23:42 +00:00
|
|
|
}
|
2017-10-14 17:01:53 +00:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2018-12-06 23:03:01 +00:00
|
|
|
use crate::body::Body;
|
|
|
|
use crate::response::Response;
|
2017-10-14 17:01:53 +00:00
|
|
|
use http::StatusCode;
|
|
|
|
|
|
|
|
#[test]
|
2017-11-27 06:31:29 +00:00
|
|
|
fn test_build() {
|
2018-10-05 18:04:59 +00:00
|
|
|
let resp = Response::Ok().body(Body::Empty);
|
2017-10-14 17:01:53 +00:00
|
|
|
assert_eq!(resp.status(), StatusCode::OK);
|
|
|
|
}
|
|
|
|
}
|