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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
use std::fmt;
use std::io;
use std::error;
use std::string::FromUtf8Error;
use api;
#[derive(Debug)]
pub enum Error {
Http(::reqwest::Error),
WebSocket(::tungstenite::Error),
Utf8(FromUtf8Error),
Url(::reqwest::UrlError),
Json(::serde_json::Error),
Api(String),
Internal(String),
}
impl From<::reqwest::Error> for Error {
fn from(err: ::reqwest::Error) -> Error {
Error::Http(err)
}
}
impl From<::reqwest::UrlError> for Error {
fn from(err: ::reqwest::UrlError) -> Error {
Error::Url(err)
}
}
impl From<::tungstenite::Error> for Error {
fn from(err: ::tungstenite::Error) -> Error {
Error::WebSocket(err)
}
}
impl From<::serde_json::Error> for Error {
fn from(err: ::serde_json::Error) -> Error {
Error::Json(err)
}
}
impl From<io::Error> for Error {
fn from(err: io::Error) -> Error {
Error::Internal(format!("{:?}", err))
}
}
impl From<FromUtf8Error> for Error {
fn from(err: FromUtf8Error) -> Error {
Error::Utf8(err)
}
}
impl From<api::rtm::StartError<::reqwest::Error>> for Error {
fn from(err: api::rtm::StartError<::reqwest::Error>) -> Error {
Error::Api(format!("rtm::StartError: {}", err))
}
}
impl fmt::Display for Error {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match *self {
Error::Http(ref e) => write!(f, "Http (reqwest) Error: {:?}", e),
Error::WebSocket(ref e) => write!(f, "Websocket Error: {:?}", e),
Error::Utf8(ref e) => write!(f, "Utf8 decode Error: {:?}", e),
Error::Url(ref e) => write!(f, "Url Error: {:?}", e),
Error::Json(ref e) => write!(f, "Json Error: {:?}", e),
Error::Api(ref st) => write!(f, "Slack Api Error: {:?}", st),
Error::Internal(ref st) => write!(f, "Internal Error: {:?}", st),
}
}
}
impl error::Error for Error {
fn description(&self) -> &str {
match *self {
Error::Http(ref e) => e.description(),
Error::WebSocket(ref e) => e.description(),
Error::Utf8(ref e) => e.description(),
Error::Url(ref e) => e.description(),
Error::Json(ref e) => e.description(),
Error::Api(ref st) |
Error::Internal(ref st) => st,
}
}
fn cause(&self) -> Option<&error::Error> {
match *self {
Error::Http(ref e) => Some(e),
Error::WebSocket(ref e) => Some(e),
Error::Utf8(ref e) => Some(e),
Error::Url(ref e) => Some(e),
Error::Json(ref e) => Some(e),
Error::Api(_) |
Error::Internal(_) => None,
}
}
}