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
use indexmap::IndexMap;
use query_core::{
    response_ir::{Item, Map, ResponseData},
    CoreError,
};

use crate::HandlerError;

#[derive(Debug, serde::Serialize, Default, PartialEq)]
pub struct GQLResponse {
    #[serde(skip_serializing_if = "IndexMap::is_empty")]
    pub data: Map,

    #[serde(skip_serializing_if = "Vec::is_empty")]
    pub errors: Vec<GQLError>,

    #[serde(skip_serializing_if = "IndexMap::is_empty")]
    pub extensions: Map,
}

#[derive(Debug, serde::Serialize, Default, PartialEq)]
#[serde(rename_all = "camelCase")]
pub struct GQLBatchResponse {
    #[serde(skip_serializing_if = "Vec::is_empty")]
    pub batch_result: Vec<GQLResponse>,

    #[serde(skip_serializing_if = "Vec::is_empty")]
    pub errors: Vec<GQLError>,

    #[serde(skip_serializing_if = "IndexMap::is_empty")]
    pub extensions: Map,
}

#[derive(Debug, serde::Serialize, serde::Deserialize, PartialEq)]
pub struct GQLError {
    error: String,
    user_facing_error: user_facing_errors::Error,
}

impl GQLError {
    pub fn code(&self) -> Option<&str> {
        self.user_facing_error.as_known().map(|err| err.error_code.as_ref())
    }

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

    pub fn batch_request_idx(&self) -> Option<usize> {
        self.user_facing_error.batch_request_idx()
    }

    pub fn from_user_facing_error(err: user_facing_errors::Error) -> Self {
        GQLError {
            error: err.message().to_owned(),
            user_facing_error: err,
        }
    }

    pub fn from_core_error(err: CoreError) -> Self {
        GQLError {
            error: format!("{err}"),
            user_facing_error: user_facing_errors::Error::from(err),
        }
    }

    pub fn from_handler_error(err: HandlerError) -> Self {
        Self::from_user_facing_error(user_facing_errors::Error::from(err))
    }

    pub fn from_panic_payload(panic_payload: Box<dyn std::any::Any + Send + 'static>) -> Self {
        Self::from_user_facing_error(user_facing_errors::Error::from_panic_payload(panic_payload))
    }
}

impl GQLResponse {
    pub fn new(data: Map) -> Self {
        Self {
            data,
            ..Default::default()
        }
    }

    pub fn with_capacity(capacity: usize) -> Self {
        Self {
            data: IndexMap::with_capacity(capacity),
            ..Default::default()
        }
    }

    pub fn insert_data(&mut self, key: impl Into<String>, item: Item) {
        self.data.insert(key.into(), item);
    }

    pub fn insert_error(&mut self, error: impl Into<GQLError>) {
        self.errors.push(error.into());
    }

    pub fn take_data(&mut self, key: impl AsRef<str>) -> Option<Item> {
        self.data.remove(key.as_ref())
    }

    pub fn errors(&self) -> impl Iterator<Item = &GQLError> {
        self.errors.iter()
    }

    pub fn has_errors(&self) -> bool {
        !self.errors.is_empty()
    }

    pub fn into_data(self) -> Map {
        self.data
    }

    pub fn set_extension(&mut self, key: String, val: serde_json::Value) {
        self.extensions.entry(key).or_insert(Item::Json(val));
    }
}

impl From<GQLError> for GQLResponse {
    fn from(err: GQLError) -> Self {
        let mut gql_response = Self::default();

        gql_response.insert_error(err);
        gql_response
    }
}

impl From<ResponseData> for GQLResponse {
    fn from(response: ResponseData) -> Self {
        let mut gql_response = GQLResponse::with_capacity(1);

        gql_response.insert_data(response.key, response.data);
        gql_response
    }
}

/// GQLBatchResponse converters

impl GQLBatchResponse {
    pub fn insert_responses(&mut self, responses: Vec<GQLResponse>) {
        responses.into_iter().for_each(|response| {
            self.batch_result.push(response);
        })
    }

    pub fn insert_error(&mut self, error: impl Into<GQLError>) {
        self.errors.push(error.into());
    }

    pub fn errors(&self) -> impl Iterator<Item = &GQLError> {
        self.errors
            .iter()
            .chain(self.batch_result.iter().flat_map(|res| res.errors()))
    }

    pub fn into_responses(self) -> Vec<GQLResponse> {
        self.batch_result
    }

    pub fn has_errors(&self) -> bool {
        !self.errors.is_empty() || self.batch_result.iter().any(|res| res.has_errors())
    }

    pub fn set_extension(&mut self, key: String, val: serde_json::Value) {
        self.extensions.entry(key).or_insert(Item::Json(val));
    }
}

impl From<GQLError> for GQLBatchResponse {
    fn from(err: GQLError) -> Self {
        let mut batch_response = Self::default();

        batch_response.insert_error(err);
        batch_response
    }
}

impl From<Vec<GQLResponse>> for GQLBatchResponse {
    fn from(responses: Vec<GQLResponse>) -> Self {
        let mut batch_response = Self::default();

        batch_response.insert_responses(responses);
        batch_response
    }
}