mod raise;
mod rescue;
mod server;
use http::header;
use serde::{Serialize, Serializer};
use smallvec::SmallVec;
use std::borrow::Cow;
use std::fmt::{self, Debug, Display, Formatter};
use std::io::{self, Error as IoError};
#[doc(hidden)]
pub use http::StatusCode;
pub use rescue::{Rescue, Sanitizer};
pub(crate) use server::ServerError;
use crate::response::Response;
use crate::router::MethodNotAllowed;
pub type BoxError = Box<dyn std::error::Error + Send + Sync>;
#[derive(Debug)]
pub struct Error {
status: StatusCode,
kind: ErrorKind,
}
#[derive(Debug)]
enum ErrorKind {
Message(String),
MethodNotAllowed(Box<MethodNotAllowed>),
Other(BoxError),
}
#[derive(Serialize)]
struct Errors<'a> {
#[serde(serialize_with = "serialize_status_code")]
status: StatusCode,
errors: SmallVec<[ErrorMessage<'a>; 1]>,
}
#[derive(Serialize)]
struct ErrorMessage<'a> {
message: Cow<'a, str>,
}
fn serialize_status_code<S>(status: &StatusCode, serializer: S) -> Result<S::Ok, S::Error>
where
S: Serializer,
{
serializer.serialize_u16(status.as_u16())
}
impl Error {
pub fn new(message: impl Into<String>) -> Self {
Self::with_status(StatusCode::INTERNAL_SERVER_ERROR, message)
}
pub fn with_status(status: StatusCode, message: impl Into<String>) -> Self {
Self {
status,
kind: ErrorKind::Message(message.into()),
}
}
pub fn from_source(status: StatusCode, source: BoxError) -> Self {
Self {
status,
kind: ErrorKind::Other(source),
}
}
pub fn from_io_error(error: IoError) -> Self {
let status = match error.kind() {
io::ErrorKind::AlreadyExists => StatusCode::CONFLICT,
io::ErrorKind::BrokenPipe
| io::ErrorKind::ConnectionReset
| io::ErrorKind::ConnectionAborted => StatusCode::BAD_GATEWAY,
io::ErrorKind::ConnectionRefused => StatusCode::SERVICE_UNAVAILABLE,
io::ErrorKind::InvalidData | io::ErrorKind::InvalidInput => StatusCode::BAD_REQUEST,
io::ErrorKind::IsADirectory
| io::ErrorKind::NotADirectory
| io::ErrorKind::PermissionDenied => StatusCode::FORBIDDEN,
io::ErrorKind::NotFound => StatusCode::NOT_FOUND,
io::ErrorKind::TimedOut => StatusCode::GATEWAY_TIMEOUT,
_ => StatusCode::INTERNAL_SERVER_ERROR,
};
Self::from_source(status, Box::new(error))
}
pub fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
match &self.kind {
ErrorKind::MethodNotAllowed(source) => Some(&**source),
ErrorKind::Other(source) => Some(&**source),
_ => None,
}
}
pub fn status(&self) -> StatusCode {
self.status
}
pub(crate) fn method_not_allowed(error: MethodNotAllowed) -> Self {
Self {
status: StatusCode::METHOD_NOT_ALLOWED,
kind: ErrorKind::MethodNotAllowed(Box::new(error)),
}
}
pub(crate) fn status_mut(&mut self) -> &mut StatusCode {
&mut self.status
}
fn repr_json(&self, status_code: StatusCode) -> Errors<'_> {
let mut errors = Errors::new(status_code);
if let ErrorKind::Message(message) = &self.kind {
errors.push(Cow::Borrowed(message.as_str()));
} else {
let mut source = self.source();
while let Some(error) = source {
errors.push(Cow::Owned(error.to_string()));
source = error.source();
}
errors.reverse();
}
errors
}
}
impl Error {
pub(crate) fn invalid_utf8_sequence(name: &str) -> Self {
Self::with_status(
StatusCode::BAD_REQUEST,
format!("invalid utf-8 sequence of bytes in \"{}\".", name),
)
}
pub(crate) fn require_path_param(name: &str) -> Self {
Self::with_status(
StatusCode::BAD_REQUEST,
format!("missing required path parameter: \"{}\".", name),
)
}
pub(crate) fn require_query_param(name: &str) -> Self {
Self::with_status(
StatusCode::BAD_REQUEST,
format!("missing required query parameter: \"{}\".", name),
)
}
}
impl Display for Error {
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
match &self.kind {
ErrorKind::Message(message) => Display::fmt(&**message, f),
ErrorKind::MethodNotAllowed(error) => Display::fmt(&**error, f),
ErrorKind::Other(source) => Display::fmt(&**source, f),
}
}
}
impl<E> From<E> for Error
where
E: std::error::Error + Send + Sync + 'static,
{
fn from(source: E) -> Self {
Self::from_source(StatusCode::INTERNAL_SERVER_ERROR, Box::new(source))
}
}
impl From<Error> for Response {
fn from(error: Error) -> Self {
let message = error.to_string();
let content_len = message.len().into();
let mut response = Self::new(message.into());
*response.status_mut() = error.status;
let headers = response.headers_mut();
headers.insert(header::CONTENT_LENGTH, content_len);
if let Ok(content_type) = "text/plain; charset=utf-8".try_into() {
headers.insert(header::CONTENT_TYPE, content_type);
}
response
}
}
impl Serialize for Error {
fn serialize<S: Serializer>(&self, serializer: S) -> Result<S::Ok, S::Error> {
self.repr_json(self.status).serialize(serializer)
}
}
impl<'a> Errors<'a> {
pub(crate) fn new(status: StatusCode) -> Self {
Self {
status,
errors: SmallVec::new(),
}
}
pub(crate) fn push(&mut self, message: Cow<'a, str>) -> &mut Self {
self.errors.push(ErrorMessage { message });
self
}
fn reverse(&mut self) {
self.errors.reverse();
}
}