dfns_sdk_rs/
error.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
// @dfns-sdk-rs/src/error.rs

use reqwest::header::InvalidHeaderValue;
use reqwest::Error as ReqwestError;
use serde::Serialize;
use std::error::Error;
use std::fmt;
use url::ParseError;

#[derive(Debug, Serialize)]
pub struct DfnsError {
    pub http_status: u16,
    pub message: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub context: Option<serde_json::Value>,
}

impl DfnsError {
    pub fn new(
        http_status: u16,
        message: impl Into<String>,
        context: Option<serde_json::Value>,
    ) -> Self {
        Self {
            http_status,
            message: message.into(),
            context,
        }
    }
}

impl fmt::Display for DfnsError {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        let error_json = serde_json::json!({
            "httpStatus": self.http_status,
            "message": self.message,
            "context": self.context,
        });
        write!(
            f,
            "{}",
            serde_json::to_string_pretty(&error_json).unwrap_or_default()
        )
    }
}

impl Error for DfnsError {}

#[derive(Debug, Serialize)]
pub struct PolicyPendingError {
    pub http_status: u16,
    pub message: String,
    pub context: Option<serde_json::Value>,
}

impl PolicyPendingError {
    pub const HTTP_ACCEPTED: u16 = 202;

    pub fn new(context: Option<serde_json::Value>) -> Self {
        Self {
            http_status: Self::HTTP_ACCEPTED,
            message: "Operation triggered a policy pending approval".to_string(),
            context,
        }
    }
}

impl fmt::Display for PolicyPendingError {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        let error_json = serde_json::json!({
            "httpStatus": self.http_status,
            "message": self.message,
            "context": self.context,
        });
        write!(
            f,
            "{}",
            serde_json::to_string_pretty(&error_json).unwrap_or_default()
        )
    }
}

impl Error for PolicyPendingError {}

impl From<PolicyPendingError> for DfnsError {
    fn from(err: PolicyPendingError) -> Self {
        Self::new(err.http_status, err.message, err.context)
    }
}

impl From<ReqwestError> for DfnsError {
    fn from(err: ReqwestError) -> Self {
        Self::new(
            err.status().map(|s| s.as_u16()).unwrap_or(500),
            err.to_string(),
            None,
        )
    }
}

impl From<ParseError> for DfnsError {
    fn from(err: ParseError) -> Self {
        Self::new(400, format!("URL parsing error: {}", err), None)
    }
}

impl From<InvalidHeaderValue> for DfnsError {
    fn from(err: InvalidHeaderValue) -> Self {
        Self::new(400, format!("Invalid header value: {}", err), None)
    }
}

impl From<serde_json::Error> for DfnsError {
    fn from(err: serde_json::Error) -> Self {
        Self::new(400, format!("JSON serialization error: {}", err), None)
    }
}