-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patherrors.rs
263 lines (233 loc) · 7.89 KB
/
errors.rs
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
//! Declare our error types using error-chain.
// Unforunately, error_chain does not generate docs for all the types it
// defines.
#![allow(missing_docs, unused_doc_comments)]
use std::collections::BTreeMap;
use std::io;
use std::path::PathBuf;
use std::result;
use url::Url;
/// A custom `Result`, for convenience.
pub type Result<T, E = Error> = result::Result<T, E>;
/// A BigML-related error.
#[derive(Debug, Fail)]
#[non_exhaustive]
pub enum Error {
/// We could not access the specified URL.
///
/// **WARNING:** Do not construct this directly, but use
/// `Error::could_not_access_url` to handle various URL sanitization and
/// security issues.
#[fail(display = "error accessing '{}': {}", url, error)]
CouldNotAccessUrl {
url: Url,
/*#[cause]*/ error: Box<Error>,
},
/// We could not get an output value from a WhizzML script.
#[fail(display = "could not get WhizzML output '{}': {}", name, error)]
CouldNotGetOutput {
name: String,
/*#[cause]*/ error: Box<Error>,
},
/// We could not parse the specified URL.
///
/// **WARNING:** This takes a domain, not the full URL that we couldn't
/// parse, because we want to be careful to exclude credentials from error
/// messages, and we can't remove credentials from a URL we can't parse.
#[fail(
display = "could not parse a URL with the domain '{}': {}",
domain, error
)]
CouldNotParseUrlWithDomain {
domain: String,
/*#[cause]*/ error: Box<url::ParseError>,
},
/// We could not read a file.
#[fail(display = "could not read file {:?}: {}", path, error)]
CouldNotReadFile {
path: PathBuf,
/*#[cause]*/ error: Box<Error>,
},
/// We could not access an output value of a WhizzML script.
#[fail(display = "WhizzML output is not (yet?) available")]
OutputNotAvailable,
/// BigML says that payment is required for this request, perhaps because
/// we have hit plan limits.
#[fail(display = "BigML payment required for {} ({})", url, body)]
PaymentRequired { url: Url, body: String },
/// A request timed out.
#[fail(display = "The operation timed out")]
Timeout,
/// We received an unexpected HTTP status code.
#[fail(display = "{} for {} ({})", status, url, body)]
UnexpectedHttpStatus {
url: Url,
status: reqwest::StatusCode,
body: String,
},
/// We tried to create a BigML resource, but we failed. Display a dashboard
/// URL to make it easy to look up the actual error.
/// FIXME we need to use BIGML_DOMAIN here
#[fail(display = "https://bigml.com/dashboard/{} failed ({})", id, message)]
WaitFailed {
/// The ID of the resource that we were waiting on.
id: String,
/// The message that was returned.
message: String,
},
/// We found a type mismatch deserializing a BigML resource ID.
#[fail(
display = "Expected BigML resource ID starting with '{}', found '{}'",
expected, found
)]
WrongResourceType {
expected: &'static str,
found: String,
},
/// Another kind of error occurred.
#[fail(display = "{}", error)]
Other { /*#[cause]*/ error: failure::Error, },
/// Add a hidden member for future API extensibility.
#[doc(none)]
#[fail(display = "This error should never have occurred")]
__Nonexclusive,
}
impl Error {
/// Construct an `Error::CouldNotAccessUrl` value, taking care to
/// sanitize the URL query.
pub(crate) fn could_not_access_url<E>(url: &Url, error: E) -> Error
where
E: Into<Error>,
{
Error::CouldNotAccessUrl {
url: url_without_api_key(&url),
error: Box::new(error.into()),
}
}
pub(crate) fn could_not_get_output<E>(name: &str, error: E) -> Error
where
E: Into<Error>,
{
Error::CouldNotGetOutput {
name: name.to_owned(),
error: Box::new(error.into()),
}
}
/// Construct an `Error::CouldNotParseUrlWithDomain` value.
pub(crate) fn could_not_parse_url_with_domain<S>(
domain: S,
error: url::ParseError,
) -> Error
where
S: Into<String>,
{
Error::CouldNotParseUrlWithDomain {
domain: domain.into(),
error: Box::new(error),
}
}
pub(crate) fn could_not_read_file<P, E>(path: P, error: E) -> Error
where
P: Into<PathBuf>,
E: Into<Error>,
{
Error::CouldNotReadFile {
path: path.into(),
error: Box::new(error.into()),
}
}
/// Is this error likely to be temporary?
pub fn might_be_temporary(&self) -> bool {
match self {
Error::CouldNotAccessUrl { error, .. } => error.might_be_temporary(),
Error::CouldNotGetOutput { error, .. } => error.might_be_temporary(),
Error::CouldNotReadFile { error, .. } => error.might_be_temporary(),
// This error occurs when all your BigML "slots" are used and
// they're suggesting you upgrade. Backing off may free up slots.
Error::PaymentRequired { .. } => true,
_ => false,
}
}
/// Return the original `bigml::Error` that caused this error, without any
/// wrapper errors.
pub fn original_bigml_error(&self) -> &Error {
match self {
Error::CouldNotAccessUrl { error, .. } => error.original_bigml_error(),
Error::CouldNotGetOutput { error, .. } => error.original_bigml_error(),
Error::CouldNotReadFile { error, .. } => error.original_bigml_error(),
Error::CouldNotParseUrlWithDomain { .. }
| Error::Other { .. }
| Error::OutputNotAvailable
| Error::PaymentRequired { .. }
| Error::Timeout
| Error::UnexpectedHttpStatus { .. }
| Error::WaitFailed { .. }
| Error::WrongResourceType { .. } => self,
Error::__Nonexclusive => {
panic!("should never create Error::__Nonexclusive")
}
}
}
}
impl From<failure::Error> for Error {
fn from(error: failure::Error) -> Error {
Error::Other { error }
}
}
impl From<io::Error> for Error {
fn from(error: io::Error) -> Error {
Error::Other {
error: error.into(),
}
}
}
impl From<reqwest::Error> for Error {
fn from(error: reqwest::Error) -> Error {
// TODO: We might be able to classify more `serde` errors as temporary
// now.
Error::Other {
error: error.into(),
}
}
}
impl From<serde_json::Error> for Error {
fn from(error: serde_json::Error) -> Error {
Error::Other {
error: error.into(),
}
}
}
/// Given a URL with a possible `api_key` parameter, replace the `api_key` with
/// `*****` to minimize the risk of leaking credentials into logs somewhere.
pub(crate) fn url_without_api_key(url: &Url) -> Url {
// Extract all our query parameters.
let mut query = BTreeMap::new();
for (k, v) in url.query_pairs() {
query.insert(k.into_owned(), v.into_owned());
}
// Build a new URL, setting our query parameters manually, and excluding
// the problematic one.
let mut new_url = url.to_owned();
{
let mut serializer = new_url.query_pairs_mut();
serializer.clear();
for (k, v) in query.iter() {
if k == "api_key" {
serializer.append_pair(k, "*****");
} else {
serializer.append_pair(k, v);
}
}
}
new_url
}
#[test]
fn url_without_api_key_is_sanitized() {
let url = Url::parse("https://www.example.com/foo?a=b&api_key=12345")
.expect("could not parse URL");
let cleaned = url_without_api_key(&url);
assert_eq!(
cleaned.as_str(),
"https://www.example.com/foo?a=b&api_key=*****"
);
}