gazelle_api 0.12.0

Gazelle API Client
Documentation
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
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
use GazelleError::*;
use colored::Colorize;
use reqwest::StatusCode;
use serde::{Deserialize, Serialize};
use std::fmt::{Display, Formatter};

#[derive(Clone, Debug, Deserialize, PartialEq, Serialize)]
#[allow(clippy::absolute_paths)]
#[serde(rename_all = "snake_case", tag = "type")]
pub enum GazelleError {
    /// An error occurred creating the request.
    ///
    /// Includes the `reqwest::Error` as a string.
    Request { error: String },
    /// An error occurred extracting the body of the response.
    ///
    /// Includes the `reqwest::Error` as a string.
    Response { error: String },
    /// An error occurred deserializing the body as JSON.
    ///
    /// Includes the `serde_json::Error` as a string.
    Deserialization { error: String },
    /// An error occurred reading the torrent file.
    ///
    /// Includes the `std::io::Error` as a string.
    Upload { error: String },
    /// 400 Bad Request.
    ///
    /// Indicates that either the requested resource was not found,
    /// or there was an issue with the parameters.
    BadRequest { message: String },
    /// 401 Unauthorized
    /// Indicates the API Key is invalid
    Unauthorized { message: String },
    /// 404 Not Found
    /// Indicates the requested resource was not found
    NotFound { message: String },
    /// 429 Too Many Request
    /// Indicates the rate limit has been hit
    TooManyRequests { message: String },
    /// An unexpected status code and error message was received from the API
    /// Includes the `StatusCode` as a `u16` and
    /// the error message received from the API as a string
    Other {
        status: u16,
        message: Option<String>,
    },
}

#[allow(clippy::absolute_paths)]
impl GazelleError {
    pub(crate) fn request(error: reqwest::Error) -> Self {
        Request {
            error: error.to_string(),
        }
    }

    pub(crate) fn response(error: reqwest::Error) -> Self {
        Response {
            error: error.to_string(),
        }
    }

    pub(crate) fn deserialization(error: serde_json::Error) -> Self {
        Deserialization {
            error: error.to_string(),
        }
    }

    pub(crate) fn upload(error: std::io::Error) -> Self {
        Upload {
            error: error.to_string(),
        }
    }

    pub(crate) fn other(status_code: StatusCode, error: Option<String>) -> Self {
        Other {
            status: status_code.as_u16(),
            message: error,
        }
    }

    /// Get a `GazelleError` if the status code indicates a known client error
    /// *RED only as OPS inexplicably returns `200 Success` for everything*
    pub(crate) fn match_status_error(
        status_code: StatusCode,
        error: Option<String>,
    ) -> Option<Self> {
        match status_code {
            StatusCode::BAD_REQUEST => Some(BadRequest {
                message: error.unwrap_or_default(),
            }),
            StatusCode::UNAUTHORIZED => Some(Unauthorized {
                message: error.unwrap_or_default(),
            }),
            StatusCode::NOT_FOUND => Some(NotFound {
                message: error.unwrap_or_default(),
            }),
            StatusCode::TOO_MANY_REQUESTS => Some(TooManyRequests {
                message: error.unwrap_or_default(),
            }),
            _ => None,
        }
    }

    /// Get a `GazelleError` if the response `error` string indicates a known client error
    pub(crate) fn match_response_error(error: &str) -> Option<Self> {
        match error {
            "bad id parameter" | "bad parameters" | "no such user" => Some(BadRequest {
                message: error.to_owned(),
            }),
            "This page is limited to API key usage only." | "This page requires an api token" => {
                Some(Unauthorized {
                    message: error.to_owned(),
                })
            }
            "endpoint not found" | "failure" | "could not find torrent" => Some(NotFound {
                message: error.to_owned(),
            }),
            "Rate limit exceeded" => Some(TooManyRequests {
                message: error.to_owned(),
            }),
            _ => None,
        }
    }
}

impl Display for GazelleError {
    #[allow(clippy::absolute_paths)]
    fn fmt(&self, formatter: &mut Formatter<'_>) -> std::fmt::Result {
        let message = match self {
            Request { error } => format!("{} to send API request: {error}", "Failed".bold()),
            Response { error } => {
                format!("{} to read API response: {error}", "Failed".bold())
            }
            Deserialization { error } => {
                format!("{} to deserialize API response: {error}", "Failed".bold())
            }
            Upload { error } => {
                format!("{} to upload torrent file: {error}", "Failed".bold())
            }
            BadRequest { message } => {
                format!(
                    "{} bad request response{}",
                    "Received".bold(),
                    append(message)
                )
            }
            Unauthorized { message } => {
                format!(
                    "{} unauthorized response{}",
                    "Received".bold(),
                    append(message)
                )
            }
            NotFound { message } => {
                format!(
                    "{} not found response{}",
                    "Received".bold(),
                    append(message)
                )
            }
            TooManyRequests { message } => {
                format!(
                    "{} too many requests response{}",
                    "Received".bold(),
                    append(message)
                )
            }
            Other {
                status,
                message: error,
            } => {
                format!(
                    "{} {} response{}",
                    "Received".bold(),
                    status_code_and_reason(*status),
                    append(&error.clone().unwrap_or_default())
                )
            }
        };
        message.fmt(formatter)
    }
}

fn status_code_and_reason(code: u16) -> String {
    StatusCode::from_u16(code)
        .ok()
        .and_then(|code| code.canonical_reason())
        .map(|reason| format!("{code} {reason}"))
        .unwrap_or(code.to_string())
}

fn append(message: &str) -> String {
    if message.is_empty() {
        String::new()
    } else {
        format!(": {message}")
    }
}

#[cfg(test)]
mod tests {
    use crate::GazelleError;
    use crate::GazelleError::*;
    use reqwest::StatusCode;

    #[test]
    pub fn yaml_serialization() -> Result<(), serde_yaml::Error> {
        // Arrange
        let example = vec![
            BadRequest {
                message: String::new(),
            },
            BadRequest {
                message: "bad id parameter".to_owned(),
            },
            NotFound {
                message: "no such user".to_owned(),
            },
            Other {
                status: 500,
                message: Some("Hello, world".to_owned()),
            },
        ];
        let expected = "- type: bad_request
  message: ''
- type: bad_request
  message: bad id parameter
- type: not_found
  message: no such user
- type: other
  status: 500
  message: Hello, world
";

        // Act
        let yaml = serde_yaml::to_string(&example)?;
        println!("{yaml}");
        let deserialized: Vec<GazelleError> = serde_yaml::from_str(expected)?;

        // Assert
        assert_eq!(yaml, expected);
        assert_eq!(deserialized, example);
        Ok(())
    }

    // match_status_error tests

    #[test]
    fn match_status_error_bad_request() {
        // Arrange & Act
        let result =
            GazelleError::match_status_error(StatusCode::BAD_REQUEST, Some("test".to_owned()));

        // Assert
        assert!(matches!(result, Some(BadRequest { message }) if message == "test"));
    }

    #[test]
    fn match_status_error_unauthorized() {
        // Arrange & Act
        let result = GazelleError::match_status_error(StatusCode::UNAUTHORIZED, None);

        // Assert
        assert!(matches!(result, Some(Unauthorized { message }) if message.is_empty()));
    }

    #[test]
    fn match_status_error_not_found() {
        // Arrange & Act
        let result =
            GazelleError::match_status_error(StatusCode::NOT_FOUND, Some("not found".to_owned()));

        // Assert
        assert!(matches!(result, Some(NotFound { message }) if message == "not found"));
    }

    #[test]
    fn match_status_error_too_many_requests() {
        // Arrange & Act
        let result = GazelleError::match_status_error(StatusCode::TOO_MANY_REQUESTS, None);

        // Assert
        assert!(matches!(result, Some(TooManyRequests { .. })));
    }

    #[test]
    fn match_status_error_success_returns_none() {
        // Arrange & Act
        let result = GazelleError::match_status_error(StatusCode::OK, None);

        // Assert
        assert!(result.is_none());
    }

    #[test]
    fn match_status_error_server_error_returns_none() {
        // Arrange & Act
        let result = GazelleError::match_status_error(StatusCode::INTERNAL_SERVER_ERROR, None);

        // Assert
        assert!(result.is_none());
    }

    // match_response_error tests

    #[test]
    fn match_response_error_bad_id() {
        // Arrange & Act
        let result = GazelleError::match_response_error("bad id parameter");

        // Assert
        assert!(matches!(result, Some(BadRequest { .. })));
    }

    #[test]
    fn match_response_error_bad_parameters() {
        // Arrange & Act
        let result = GazelleError::match_response_error("bad parameters");

        // Assert
        assert!(matches!(result, Some(BadRequest { .. })));
    }

    #[test]
    fn match_response_error_no_such_user() {
        // Arrange & Act
        let result = GazelleError::match_response_error("no such user");

        // Assert
        assert!(matches!(result, Some(BadRequest { .. })));
    }

    #[test]
    fn match_response_error_api_key_only() {
        // Arrange & Act
        let result =
            GazelleError::match_response_error("This page is limited to API key usage only.");

        // Assert
        assert!(matches!(result, Some(Unauthorized { .. })));
    }

    #[test]
    fn match_response_error_api_token_required() {
        // Arrange & Act
        let result = GazelleError::match_response_error("This page requires an api token");

        // Assert
        assert!(matches!(result, Some(Unauthorized { .. })));
    }

    #[test]
    fn match_response_error_endpoint_not_found() {
        // Arrange & Act
        let result = GazelleError::match_response_error("endpoint not found");

        // Assert
        assert!(matches!(result, Some(NotFound { .. })));
    }

    #[test]
    fn match_response_error_failure() {
        // Arrange & Act
        let result = GazelleError::match_response_error("failure");

        // Assert
        assert!(matches!(result, Some(NotFound { .. })));
    }

    #[test]
    fn match_response_error_could_not_find_torrent() {
        // Arrange & Act
        let result = GazelleError::match_response_error("could not find torrent");

        // Assert
        assert!(matches!(result, Some(NotFound { .. })));
    }

    #[test]
    fn match_response_error_rate_limit() {
        // Arrange & Act
        let result = GazelleError::match_response_error("Rate limit exceeded");

        // Assert
        assert!(matches!(result, Some(TooManyRequests { .. })));
    }

    #[test]
    fn match_response_error_unknown_returns_none() {
        // Arrange & Act
        let result = GazelleError::match_response_error("some unknown error message");

        // Assert
        assert!(result.is_none());
    }

    #[test]
    fn match_response_error_empty_returns_none() {
        // Arrange & Act
        let result = GazelleError::match_response_error("");

        // Assert
        assert!(result.is_none());
    }
}