1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
use dotenv::Error as DotEnvError;
use jsonwebtoken::errors::Error as JwtError;
use serde::{Deserialize, Serialize};
use serde_json::Error as SerdeJsonError;
use std::error::Error;
use std::fmt;
use std::io::Error as IoError;
use tokio::sync::{mpsc, oneshot};

#[derive(Debug, Deserialize, Serialize)]
pub struct GithubError {
    pub message: String,
}

impl fmt::Display for GithubError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{:?}", self)
    }
}

impl Error for GithubError {}

impl GithubError {
    pub fn new<StringLike>(err_msg: StringLike) -> Self
    where
        StringLike: Into<String>,
    {
        GithubError {
            message: err_msg.into(),
        }
    }
}

impl From<JwtError> for GithubError {
    fn from(err: JwtError) -> Self {
        GithubError {
            message: err.to_string(),
        }
    }
}

impl From<SerdeJsonError> for GithubError {
    fn from(err: SerdeJsonError) -> Self {
        GithubError {
            message: err.to_string(),
        }
    }
}

impl From<DotEnvError> for GithubError {
    fn from(err: DotEnvError) -> Self {
        GithubError {
            message: err.to_string(),
        }
    }
}

impl From<IoError> for GithubError {
    fn from(err: IoError) -> Self {
        GithubError {
            message: err.to_string(),
        }
    }
}

impl<T> From<mpsc::error::SendError<T>> for GithubError {
    fn from(err: mpsc::error::SendError<T>) -> Self {
        GithubError {
            message: err.to_string(),
        }
    }
}

#[allow(deprecated)]
impl From<mpsc::error::RecvError> for GithubError {
    fn from(err: mpsc::error::RecvError) -> Self {
        GithubError {
            message: err.to_string(),
        }
    }
}

impl From<oneshot::error::RecvError> for GithubError {
    fn from(err: oneshot::error::RecvError) -> Self {
        GithubError {
            message: err.to_string(),
        }
    }
}