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
use crate::generic::{JsonString, Message};
use rocket::{response::Responder, serde::json::Json};
use rocket_okapi::{
gen::OpenApiGenerator,
okapi::openapi3::{MediaType, Responses},
response::OpenApiResponderInner,
};
use tonic::{Code, Status};
#[derive(Responder, Debug, Clone)]
pub enum ErrorResponse {
#[response(status = 400, content_type = "json")]
BadRequest(JsonString),
#[response(status = 401, content_type = "json")]
Unauthorized(JsonString),
#[response(status = 404, content_type = "json")]
NotFound(JsonString),
#[response(status = 408, content_type = "json")]
RequestTimeout(JsonString),
#[response(status = 409, content_type = "json")]
Conflict(JsonString),
#[response(status = 412, content_type = "json")]
PreconditionFailed(JsonString),
#[response(status = 422, content_type = "json")]
UnprocessableEntity(JsonString),
#[response(status = 444, content_type = "json")]
NoResponse(JsonString),
#[response(status = 499, content_type = "json")]
ClientClosedRequest(JsonString),
#[response(status = 500, content_type = "json")]
InternalServerError(JsonString),
#[response(status = 501, content_type = "json")]
NotImplemented(JsonString),
#[response(status = 503, content_type = "json")]
ServiceUnavailable(JsonString),
#[response(status = 511, content_type = "json")]
NetworkAuthenticationRequired(JsonString),
}
pub type RestResult<T> = Result<Json<T>, ErrorResponse>;
impl ErrorResponse {
fn convert(status: Status) -> Self {
let message = Message::from(status.message()).json();
match status.code() {
Code::Aborted => Self::NoResponse(message),
Code::AlreadyExists => Self::Conflict(message),
Code::Cancelled => Self::ClientClosedRequest(message),
Code::DataLoss => Self::BadRequest(message),
Code::DeadlineExceeded => Self::RequestTimeout(message),
Code::FailedPrecondition => Self::PreconditionFailed(message),
Code::Internal => Self::InternalServerError(message),
Code::InvalidArgument => Self::UnprocessableEntity(message),
Code::NotFound => Self::NotFound(message),
Code::Ok => panic!("Returned an error with an 'OK' status. What???"),
Code::OutOfRange => Self::UnprocessableEntity(message),
Code::PermissionDenied => Self::Unauthorized(message),
Code::Unauthenticated => Self::NetworkAuthenticationRequired(message),
Code::Unavailable => Self::ServiceUnavailable(message),
Code::Unimplemented => Self::NotImplemented(message),
Code::Unknown => Self::InternalServerError(message),
_ => panic!("Unhandled return status: {}", status),
}
}
}
impl From<Status> for ErrorResponse {
fn from(status: Status) -> Self {
Self::convert(status)
}
}
fn gen_response(
gen: &mut OpenApiGenerator,
title: &str,
body: &str,
) -> rocket_okapi::okapi::openapi3::Response {
use rocket_okapi::okapi::{self, map};
let schema = gen.json_schema::<crate::generic::Message>();
rocket_okapi::okapi::openapi3::Response {
description: format!("### {}\n{}", title, body),
content: map! {
"application/json".to_owned() => MediaType {
schema: Some(schema),
..Default::default()
}
},
..Default::default()
}
}
impl OpenApiResponderInner for ErrorResponse {
fn responses(gen: &mut rocket_okapi::gen::OpenApiGenerator) -> rocket_okapi::Result<Responses> {
use rocket_okapi::okapi::openapi3::RefOr;
use rocket_okapi::okapi::{self, map};
let r400 = gen_response(
gen,
"Bad Request",
"Request was not performed with expected conventions",
);
let r401 = gen_response(
gen,
"Unauthorized",
"The request was missing authentication on headers",
);
let r404 = gen_response(gen, "Not Found", "The desired resource was not found");
let r408 = gen_response(
gen,
"Request Timeout",
"The connection timed out while requesting data from the service",
);
let r409 = gen_response(
gen,
"Conflict",
"There was a conflict while managing the entity, possibly related to duplication",
);
let r412 = gen_response(gen, "Precondition Failed", "There were inconsistencies while processing the entity, probably related to some business rule");
let r422 = gen_response(gen, "Unprocessable Entity", "The payload could not be processed, or possibly did not contain data on the expected format");
let r444 = gen_response(
gen,
"No Response",
"The connection was aborted by the service",
);
let r499 = gen_response(gen, "Client Closed Request", "The request was cancelled");
let r500 = gen_response(
gen,
"Internal Server Error",
"An unknown error has occurred on the system",
);
let r501 = gen_response(
gen,
"Not Implemented",
"This feature is still not implemented",
);
let r503 = gen_response(
gen,
"Service Unavailable",
"The requested service is unavailable for connection",
);
let r511 = gen_response(
gen,
"Network Authentication Required",
"The requested service needs internal authentication, which was not provided",
);
#[rustfmt::skip]
let responses = Responses {
responses: map! {
"400".to_owned() => RefOr::Object(r400),
"401".to_owned() => RefOr::Object(r401),
"404".to_owned() => RefOr::Object(r404),
"408".to_owned() => RefOr::Object(r408),
"409".to_owned() => RefOr::Object(r409),
"412".to_owned() => RefOr::Object(r412),
"422".to_owned() => RefOr::Object(r422),
"444".to_owned() => RefOr::Object(r444),
"499".to_owned() => RefOr::Object(r499),
"500".to_owned() => RefOr::Object(r500),
"501".to_owned() => RefOr::Object(r501),
"503".to_owned() => RefOr::Object(r503),
"511".to_owned() => RefOr::Object(r511),
},
..Default::default()
};
Ok(responses)
}
}