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
use rsb_derive::Builder;
use std::error::Error;
use std::fmt::Display;
use std::fmt::Formatter;
#[derive(Debug)]
pub enum SlackClientError {
ApiError(SlackClientApiError),
HttpError(SlackClientHttpError),
EndOfStream(SlackClientEndOfStreamError),
SystemError(SlackClientSystemError),
ProtocolError(SlackClientProtocolError),
}
impl SlackClientError {
fn option_to_string<T: ToString>(value: &Option<T>) -> String {
value
.as_ref()
.map_or_else(|| "-".to_string(), |v| v.to_string())
}
}
impl Display for SlackClientError {
fn fmt(&self, f: &mut Formatter) -> std::fmt::Result {
match *self {
SlackClientError::ApiError(ref err) => err.fmt(f),
SlackClientError::HttpError(ref err) => err.fmt(f),
SlackClientError::EndOfStream(ref err) => err.fmt(f),
SlackClientError::ProtocolError(ref err) => err.fmt(f),
SlackClientError::SystemError(ref err) => err.fmt(f),
}
}
}
impl Error for SlackClientError {
fn cause(&self) -> Option<&dyn Error> {
match *self {
SlackClientError::ApiError(ref err) => Some(err),
SlackClientError::HttpError(ref err) => Some(err),
SlackClientError::EndOfStream(ref err) => Some(err),
SlackClientError::ProtocolError(ref err) => Some(err),
SlackClientError::SystemError(ref err) => Some(err),
}
}
}
#[derive(Debug, PartialEq, Clone, Builder)]
pub struct SlackClientApiError {
pub code: String,
pub warnings: Option<Vec<String>>,
pub http_response_body: Option<String>,
}
impl Display for SlackClientApiError {
fn fmt(&self, f: &mut Formatter) -> std::fmt::Result {
write!(
f,
"Slack API error: {}\nBody: '{}'",
self.code,
SlackClientError::option_to_string(&self.http_response_body)
)
}
}
impl Error for SlackClientApiError {}
#[derive(Debug, PartialEq, Clone, Builder)]
pub struct SlackClientHttpError {
pub status_code: http::StatusCode,
pub http_response_body: Option<String>,
}
impl Display for SlackClientHttpError {
fn fmt(&self, f: &mut Formatter) -> std::fmt::Result {
write!(f, "Slack HTTP error: {}", self)
}
}
impl std::error::Error for SlackClientHttpError {}
#[derive(Debug, PartialEq, Clone, Builder)]
pub struct SlackClientEndOfStreamError {}
impl Display for SlackClientEndOfStreamError {
fn fmt(&self, f: &mut Formatter) -> std::fmt::Result {
write!(f, "Slack end of stream error")
}
}
impl std::error::Error for SlackClientEndOfStreamError {}
#[derive(Debug)]
pub struct SlackClientProtocolError {
pub json_error: serde_json::Error,
pub http_response_body: String,
}
impl Display for SlackClientProtocolError {
fn fmt(&self, f: &mut Formatter) -> std::fmt::Result {
write!(f, "Slack protocol error: {}", self)
}
}
impl std::error::Error for SlackClientProtocolError {}
#[derive(Debug, PartialEq, Clone, Builder)]
pub struct SlackClientSystemError {
message: String,
}
impl Display for SlackClientSystemError {
fn fmt(&self, f: &mut Formatter) -> std::fmt::Result {
write!(
f,
"Slack system/unexpected protocol error: {}",
self.message
)
}
}
impl std::error::Error for SlackClientSystemError {}