hoc/src/error.rs

73 lines
1.7 KiB
Rust
Raw Normal View History

2019-04-21 17:57:57 +02:00
use crate::P500;
2019-04-19 15:59:51 +02:00
use actix_web::{HttpResponse, ResponseError};
2019-04-21 17:57:57 +02:00
use std::fmt;
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-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-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-04-21 17:57:57 +02:00
HttpResponse::InternalServerError()
.content_type("text/html")
.body(P500.as_slice())
2019-04-19 15:59:51 +02:00
}
2019-04-21 18:25:54 +02:00
fn render_response(&self) -> HttpResponse {
HttpResponse::InternalServerError()
.content_type("text/html")
.body(P500.as_slice())
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)
}
}
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)
}
}