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
use std::any::Any;
use std::collections::BTreeMap;
use std::convert::Infallible;
use std::fmt::{Display, Formatter};
use std::sync::Arc;
use indexmap::{IndexMap, indexmap};
use itertools::Itertools;
use key_path::KeyPath;
use maplit::btreemap;
use teo_teon::Value;

#[derive(Debug)]
pub struct Error {
    pub title: &'static str,
    pub message: String,
    pub fields: Option<IndexMap<String, String>>,
    pub code: i32,
    pub meta_map: BTreeMap<String, Arc<dyn Any + Send + Sync>>,
}

impl Error {

    pub fn insert_meta<T: 'static + Send + Sync>(&mut self, key: impl Into<String>, val: T) {
        self.meta_map.insert(key.into(), Arc::new(val));
    }

    pub fn get_meta<T: 'static + Send>(&self, key: &str) -> Option<&T> {
        self.meta_map.get(key).and_then(|boxed| boxed.downcast_ref())
    }

    pub fn message(&self) -> &str {
        self.message.as_str()
    }

    pub fn value_error(path: KeyPath, message: impl Into<String>) -> Self {
        Self {
            title: "ValueError",
            message: "value is invalid".to_owned(),
            fields: Some(indexmap!{
                path.to_string() => message.into()
            }),
            code: 400,
            meta_map: btreemap! {},
        }
    }

    pub fn value_error_message_only(message: impl Into<String>) -> Self {
        Self {
            title: "ValueError",
            message: message.into(),
                        fields: None,
            code: 400,
            meta_map: btreemap! {},
        }
    }

    pub fn unique_error(path: KeyPath, constraint: impl AsRef<str>) -> Self {
        Self {
            title: "UniqueError",
            message: "value is not unique".to_owned(),
            fields: Some(indexmap! {
                path.to_string() => format!("value violates '{}' constraint", constraint.as_ref())
            }),
            code: 400,
            meta_map: btreemap! {},
        }
    }

    pub fn internal_server_error(path: KeyPath, message: impl Into<String>) -> Self {
        Self {
            title: "InternalServerError",
            message: "internal server error".to_owned(),
            fields: Some(indexmap! {
                path.to_string() => message.into()
            }),
            code: 500,
            meta_map: btreemap! {},
        }
    }

    pub fn internal_server_error_message_only(message: impl Into<String>) -> Self {
        Self {
            title: "InternalServerError",
            message: message.into(),
            fields: None,
            code: 500,
            meta_map: btreemap! {},
        }
    }

    pub fn not_found(path: KeyPath) -> Self {
        Self {
            title: "NotFound",
            message: "not found".to_owned(),
            fields: Some(indexmap!{
                path.to_string() => "not found".to_owned()
            }),
            code: 404,
            meta_map: btreemap! {},
        }
    }

    pub fn not_found_message_only() -> Self {
        Self {
            title: "NotFound",
            message: "not found".to_owned(),
            fields: None,
            code: 404,
            meta_map: btreemap! {},
        }
    }

    pub fn unauthorized_error(path: KeyPath, message: impl Into<String>) -> Self {
        Self {
            title: "Unauthorized",
            message: "unauthorized".to_owned(),
            fields: Some(indexmap! {
                path.to_string() => message.into()
            }),
            code: 401,
            meta_map: btreemap! {},
        }
    }

    pub fn unauthorized_error_message_only(message: impl Into<String>) -> Self {
        Self {
            title: "Unauthorized",
            message: message.into(),
            fields: None,
            code: 401,
            meta_map: btreemap! {},
        }
    }
}

impl Display for Error {

    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
        f.write_str(&self.title)?;
        f.write_str(":")?;
        f.write_str(&format!("{}", self.code))?;
        f.write_str("(")?;
        f.write_str(&self.message)?;
        f.write_str(")")?;
        if let Some(fields) = &self.fields {
            f.write_str("[")?;
            for (k, v) in fields {
                f.write_str(k)?;
                f.write_str(": ")?;
                f.write_str(v)?;
            }
            f.write_str("]")?;
        }
        Ok(())
    }
}

impl std::error::Error for Error { }

pub trait IntoPathedValueError {
    fn into_pathed_value_error(self, path: KeyPath) -> Error;
}

impl IntoPathedValueError for teo_result::Error {

    fn into_pathed_value_error(self, path: KeyPath) -> Error {
        Error::value_error(path, self.message)
    }
}

impl From<&teo_result::Error> for Error {

    fn from(value: &teo_result::Error) -> Self {
        let mut result = Self::internal_server_error_message_only(value.message.clone());
        result.meta_map = value.meta_map.clone();
        result
    }
}

impl From<teo_result::Error> for Error {

    fn from(value: teo_result::Error) -> Self {
        Self::from(&value)
    }
}

impl From<Error> for teo_result::Error {

    fn from(value: Error) -> Self {
        Self::from(&value)
    }
}

impl From<&Error> for teo_result::Error {

    fn from(value: &Error) -> Self {
        let message = if let Some(fields) = &value.fields {
            fields.iter().map(|(k, v)| format!("{}: {}", k, v)).join("; ")
        } else {
            value.message.clone()
        };
        let mut result = teo_result::Error::new(message);
        result.meta_map = value.meta_map.clone();
        result
    }
}

impl From<Error> for Value {

    fn from(value: Error) -> Self {
        Self::from(&value)
    }
}

impl From<&Error> for Value {

    fn from(value: &Error) -> Self {
        let fields = value.fields.as_ref().map(|f| {
            let mut result = indexmap! {};
            for (k, v) in f {
                result.insert(k.to_string(), Value::String(v.to_string()));
            }
            Value::Dictionary(result)
        }) ;
        let mut retval = Value::Dictionary(indexmap! {
            "type".to_string() => Value::String(value.title.to_string()),
            "message".to_string() => Value::String(value.message.clone()),
        });
        if fields.is_some() {
            retval.as_dictionary_mut().unwrap().insert("fields".to_owned(), fields.unwrap());
        }
        retval
    }
}

impl From<Infallible> for Error {
    fn from(value: Infallible) -> Self {
        unreachable!()
    }
}