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
|
use serde::{Deserialize, Serialize};
use std::fmt::{Display, Formatter};
#[derive(Serialize, Deserialize, Eq, PartialEq, Ord, PartialOrd, Debug, Clone, Hash)]
#[serde(transparent)]
pub struct StatusCode(u16);
impl StatusCode {
pub fn code(&self) -> u16 {
self.0
}
}
impl Display for StatusCode {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
self.0.fmt(f)
}
}
/// <https://developers.notion.com/reference/errors>
#[derive(Serialize, Deserialize, Eq, PartialEq, Debug, Clone)]
pub struct ErrorResponse {
pub status: StatusCode,
pub code: ErrorCode,
pub message: String,
}
/// <https://developers.notion.com/reference/errors>
#[derive(Serialize, Deserialize, Eq, PartialEq, Debug, Clone)]
#[serde(rename_all = "snake_case")]
pub enum ErrorCode {
InvalidJson,
InvalidRequestUrl,
InvalidRequest,
ValidationError,
MissionVersion,
Unauthorized,
RestrictedResource,
ObjectNotFound,
ConflictError,
RateLimited,
InternalServerError,
ServiceUnavailable,
#[serde(other)] // serde issue #912
Unknown,
}
impl Display for ErrorCode {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
write!(f, "{:?}", self)
}
}
#[cfg(test)]
mod tests {
use crate::models::error::{ErrorCode, ErrorResponse};
#[test]
fn deserialize_error() {
let error: ErrorResponse = serde_json::from_str(include_str!("tests/error.json")).unwrap();
assert_eq!(error.code, ErrorCode::ValidationError)
}
#[test]
fn deserialize_unknown_error() {
let error: ErrorResponse =
serde_json::from_str(include_str!("tests/unknown_error.json")).unwrap();
assert_eq!(error.code, ErrorCode::Unknown)
}
}
|