mirror of
https://github.com/actix/actix-extras.git
synced 2024-11-24 07:53:00 +01:00
missing http codes
This commit is contained in:
parent
5115384501
commit
7e9fbfca72
13
src/error.rs
13
src/error.rs
@ -25,7 +25,7 @@ use body::Body;
|
|||||||
use handler::Responder;
|
use handler::Responder;
|
||||||
use httprequest::HttpRequest;
|
use httprequest::HttpRequest;
|
||||||
use httpresponse::HttpResponse;
|
use httpresponse::HttpResponse;
|
||||||
use httpcodes::{HTTPBadRequest, HTTPMethodNotAllowed, HTTPExpectationFailed};
|
use httpcodes::{self, HTTPBadRequest, HTTPMethodNotAllowed, HTTPExpectationFailed};
|
||||||
|
|
||||||
/// A specialized [`Result`](https://doc.rust-lang.org/std/result/enum.Result.html)
|
/// A specialized [`Result`](https://doc.rust-lang.org/std/result/enum.Result.html)
|
||||||
/// for actix web operations
|
/// for actix web operations
|
||||||
@ -406,7 +406,11 @@ pub enum UrlencodedError {
|
|||||||
impl ResponseError for UrlencodedError {
|
impl ResponseError for UrlencodedError {
|
||||||
|
|
||||||
fn error_response(&self) -> HttpResponse {
|
fn error_response(&self) -> HttpResponse {
|
||||||
HttpResponse::new(StatusCode::BAD_REQUEST, Body::Empty)
|
match *self {
|
||||||
|
UrlencodedError::Overflow => httpcodes::HTTPPayloadTooLarge.into(),
|
||||||
|
UrlencodedError::UnknownLength => httpcodes::HTTPLengthRequired.into(),
|
||||||
|
_ => httpcodes::HTTPBadRequest.into(),
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -437,7 +441,10 @@ pub enum JsonPayloadError {
|
|||||||
impl ResponseError for JsonPayloadError {
|
impl ResponseError for JsonPayloadError {
|
||||||
|
|
||||||
fn error_response(&self) -> HttpResponse {
|
fn error_response(&self) -> HttpResponse {
|
||||||
HttpResponse::new(StatusCode::BAD_REQUEST, Body::Empty)
|
match *self {
|
||||||
|
JsonPayloadError::Overflow => httpcodes::HTTPPayloadTooLarge.into(),
|
||||||
|
_ => httpcodes::HTTPBadRequest.into(),
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -9,7 +9,14 @@ use httpresponse::{HttpResponse, HttpResponseBuilder};
|
|||||||
|
|
||||||
pub const HTTPOk: StaticResponse = StaticResponse(StatusCode::OK);
|
pub const HTTPOk: StaticResponse = StaticResponse(StatusCode::OK);
|
||||||
pub const HTTPCreated: StaticResponse = StaticResponse(StatusCode::CREATED);
|
pub const HTTPCreated: StaticResponse = StaticResponse(StatusCode::CREATED);
|
||||||
|
pub const HTTPAccepted: StaticResponse = StaticResponse(StatusCode::ACCEPTED);
|
||||||
|
pub const HTTPNonAuthoritativeInformation: StaticResponse =
|
||||||
|
StaticResponse(StatusCode::NON_AUTHORITATIVE_INFORMATION);
|
||||||
pub const HTTPNoContent: StaticResponse = StaticResponse(StatusCode::NO_CONTENT);
|
pub const HTTPNoContent: StaticResponse = StaticResponse(StatusCode::NO_CONTENT);
|
||||||
|
pub const HTTPResetContent: StaticResponse = StaticResponse(StatusCode::RESET_CONTENT);
|
||||||
|
pub const HTTPPartialContent: StaticResponse = StaticResponse(StatusCode::PARTIAL_CONTENT);
|
||||||
|
pub const HTTPMultiStatus: StaticResponse = StaticResponse(StatusCode::MULTI_STATUS);
|
||||||
|
pub const HTTPAlreadyReported: StaticResponse = StaticResponse(StatusCode::ALREADY_REPORTED);
|
||||||
|
|
||||||
pub const HTTPMultipleChoices: StaticResponse = StaticResponse(StatusCode::MULTIPLE_CHOICES);
|
pub const HTTPMultipleChoices: StaticResponse = StaticResponse(StatusCode::MULTIPLE_CHOICES);
|
||||||
pub const HTTPMovedPermanenty: StaticResponse = StaticResponse(StatusCode::MOVED_PERMANENTLY);
|
pub const HTTPMovedPermanenty: StaticResponse = StaticResponse(StatusCode::MOVED_PERMANENTLY);
|
||||||
@ -23,11 +30,10 @@ pub const HTTPPermanentRedirect: StaticResponse =
|
|||||||
StaticResponse(StatusCode::PERMANENT_REDIRECT);
|
StaticResponse(StatusCode::PERMANENT_REDIRECT);
|
||||||
|
|
||||||
pub const HTTPBadRequest: StaticResponse = StaticResponse(StatusCode::BAD_REQUEST);
|
pub const HTTPBadRequest: StaticResponse = StaticResponse(StatusCode::BAD_REQUEST);
|
||||||
pub const HTTPNotFound: StaticResponse = StaticResponse(StatusCode::NOT_FOUND);
|
|
||||||
pub const HTTPUnauthorized: StaticResponse = StaticResponse(StatusCode::UNAUTHORIZED);
|
pub const HTTPUnauthorized: StaticResponse = StaticResponse(StatusCode::UNAUTHORIZED);
|
||||||
pub const HTTPPaymentRequired: StaticResponse = StaticResponse(StatusCode::PAYMENT_REQUIRED);
|
pub const HTTPPaymentRequired: StaticResponse = StaticResponse(StatusCode::PAYMENT_REQUIRED);
|
||||||
pub const HTTPForbidden: StaticResponse = StaticResponse(StatusCode::FORBIDDEN);
|
pub const HTTPForbidden: StaticResponse = StaticResponse(StatusCode::FORBIDDEN);
|
||||||
|
pub const HTTPNotFound: StaticResponse = StaticResponse(StatusCode::NOT_FOUND);
|
||||||
pub const HTTPMethodNotAllowed: StaticResponse =
|
pub const HTTPMethodNotAllowed: StaticResponse =
|
||||||
StaticResponse(StatusCode::METHOD_NOT_ALLOWED);
|
StaticResponse(StatusCode::METHOD_NOT_ALLOWED);
|
||||||
pub const HTTPNotAcceptable: StaticResponse = StaticResponse(StatusCode::NOT_ACCEPTABLE);
|
pub const HTTPNotAcceptable: StaticResponse = StaticResponse(StatusCode::NOT_ACCEPTABLE);
|
||||||
@ -41,11 +47,28 @@ pub const HTTPPreconditionFailed: StaticResponse =
|
|||||||
StaticResponse(StatusCode::PRECONDITION_FAILED);
|
StaticResponse(StatusCode::PRECONDITION_FAILED);
|
||||||
pub const HTTPPayloadTooLarge: StaticResponse = StaticResponse(StatusCode::PAYLOAD_TOO_LARGE);
|
pub const HTTPPayloadTooLarge: StaticResponse = StaticResponse(StatusCode::PAYLOAD_TOO_LARGE);
|
||||||
pub const HTTPUriTooLong: StaticResponse = StaticResponse(StatusCode::URI_TOO_LONG);
|
pub const HTTPUriTooLong: StaticResponse = StaticResponse(StatusCode::URI_TOO_LONG);
|
||||||
|
pub const HTTPUnsupportedMediaType: StaticResponse =
|
||||||
|
StaticResponse(StatusCode::UNSUPPORTED_MEDIA_TYPE);
|
||||||
|
pub const HTTPRangeNotSatisfiable: StaticResponse =
|
||||||
|
StaticResponse(StatusCode::RANGE_NOT_SATISFIABLE);
|
||||||
pub const HTTPExpectationFailed: StaticResponse =
|
pub const HTTPExpectationFailed: StaticResponse =
|
||||||
StaticResponse(StatusCode::EXPECTATION_FAILED);
|
StaticResponse(StatusCode::EXPECTATION_FAILED);
|
||||||
|
|
||||||
pub const HTTPInternalServerError: StaticResponse =
|
pub const HTTPInternalServerError: StaticResponse =
|
||||||
StaticResponse(StatusCode::INTERNAL_SERVER_ERROR);
|
StaticResponse(StatusCode::INTERNAL_SERVER_ERROR);
|
||||||
|
pub const HTTPNotImplemented: StaticResponse = StaticResponse(StatusCode::NOT_IMPLEMENTED);
|
||||||
|
pub const HTTPBadGateway: StaticResponse = StaticResponse(StatusCode::BAD_GATEWAY);
|
||||||
|
pub const HTTPServiceUnavailable: StaticResponse =
|
||||||
|
StaticResponse(StatusCode::SERVICE_UNAVAILABLE);
|
||||||
|
pub const HTTPGatewayTimeout: StaticResponse =
|
||||||
|
StaticResponse(StatusCode::GATEWAY_TIMEOUT);
|
||||||
|
pub const HTTPVersionNotSupported: StaticResponse =
|
||||||
|
StaticResponse(StatusCode::HTTP_VERSION_NOT_SUPPORTED);
|
||||||
|
pub const HTTPVariantAlsoNegotiates: StaticResponse =
|
||||||
|
StaticResponse(StatusCode::VARIANT_ALSO_NEGOTIATES);
|
||||||
|
pub const HTTPInsufficientStorage: StaticResponse =
|
||||||
|
StaticResponse(StatusCode::INSUFFICIENT_STORAGE);
|
||||||
|
pub const HTTPLoopDetected: StaticResponse = StaticResponse(StatusCode::LOOP_DETECTED);
|
||||||
|
|
||||||
|
|
||||||
#[derive(Copy, Clone, Debug)]
|
#[derive(Copy, Clone, Debug)]
|
||||||
|
Loading…
Reference in New Issue
Block a user