hoc/src/error.rs

102 lines
2.5 KiB
Rust
Raw Normal View History

2019-06-12 21:51:16 +02:00
use crate::{
statics::{REPO_COUNT, VERSION_INFO},
templates,
};
2019-04-19 15:59:51 +02:00
use actix_web::{HttpResponse, ResponseError};
2019-06-12 21:51:16 +02:00
use std::{fmt, sync::atomic::Ordering};
2019-04-19 15:59:51 +02:00
2019-05-04 15:33:21 +02:00
pub(crate) type Result<T> = std::result::Result<T, Error>;
2019-04-19 15:59:51 +02:00
#[derive(Debug)]
pub(crate) enum Error {
2019-04-19 22:11:03 +02:00
Badge(String),
2019-04-21 20:44:47 +02:00
Client(reqwest::Error),
2019-04-19 15:59:51 +02:00
Git(git2::Error),
2019-04-19 22:11:03 +02:00
Internal,
2019-04-19 15:59:51 +02:00
Io(std::io::Error),
2019-05-14 01:11:54 +02:00
Log(log::SetLoggerError),
LogBuilder(log4rs::config::Errors),
2019-07-07 13:29:26 +02:00
Parse(std::num::ParseIntError),
2019-04-19 22:11:03 +02:00
Serial(serde_json::Error),
2019-04-19 15:59:51 +02:00
}
2019-04-21 17:57:57 +02:00
impl fmt::Display for Error {
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
2019-04-19 15:59:51 +02:00
match self {
2019-04-19 22:11:03 +02:00
Error::Badge(s) => write!(fmt, "Badge({})", s),
2019-04-21 20:44:47 +02:00
Error::Client(e) => write!(fmt, "Client({})", e),
2019-04-19 15:59:51 +02:00
Error::Git(e) => write!(fmt, "Git({})", e),
2019-04-19 22:11:03 +02:00
Error::Internal => write!(fmt, "Internal Error"),
2019-04-19 15:59:51 +02:00
Error::Io(e) => write!(fmt, "Io({})", e),
2019-05-14 01:11:54 +02:00
Error::Log(e) => write!(fmt, "Log({})", e),
Error::LogBuilder(e) => write!(fmt, "LogBuilder({})", e),
2019-07-07 13:29:26 +02:00
Error::Parse(e) => write!(fmt, "Parse({})", e),
2019-04-19 22:11:03 +02:00
Error::Serial(e) => write!(fmt, "Serial({})", e),
2019-04-19 15:59:51 +02:00
}
}
}
impl ResponseError for Error {
fn error_response(&self) -> HttpResponse {
2019-06-12 21:51:16 +02:00
let mut buf = Vec::new();
templates::p500(&mut buf, VERSION_INFO, REPO_COUNT.load(Ordering::Relaxed)).unwrap();
2019-04-21 17:57:57 +02:00
HttpResponse::InternalServerError()
.content_type("text/html")
2019-06-12 21:51:16 +02:00
.body(buf)
2019-04-19 15:59:51 +02:00
}
2019-04-21 18:25:54 +02:00
fn render_response(&self) -> HttpResponse {
2019-06-12 21:51:16 +02:00
self.error_response()
2019-04-21 18:25:54 +02:00
}
2019-04-19 15:59:51 +02:00
}
impl std::error::Error for Error {}
impl From<String> for Error {
fn from(s: String) -> Self {
Error::Badge(s)
}
}
impl From<git2::Error> for Error {
fn from(err: git2::Error) -> Self {
Error::Git(err)
}
}
2019-05-14 01:11:54 +02:00
impl From<log::SetLoggerError> for Error {
fn from(err: log::SetLoggerError) -> Self {
Error::Log(err)
}
}
2019-04-19 15:59:51 +02:00
impl From<std::io::Error> for Error {
fn from(err: std::io::Error) -> Self {
Error::Io(err)
}
}
2019-04-19 22:11:03 +02:00
impl From<serde_json::Error> for Error {
fn from(err: serde_json::Error) -> Self {
Error::Serial(err)
}
}
2019-04-21 20:44:47 +02:00
impl From<reqwest::Error> for Error {
fn from(err: reqwest::Error) -> Self {
Error::Client(err)
}
}
2019-05-14 01:11:54 +02:00
impl From<log4rs::config::Errors> for Error {
fn from(err: log4rs::config::Errors) -> Self {
Error::LogBuilder(err)
}
}
2019-07-07 13:29:26 +02:00
impl From<std::num::ParseIntError> for Error {
fn from(err: std::num::ParseIntError) -> Self {
Error::Parse(err)
}
}