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
#![allow(clippy::extra_unused_lifetimes)]
use crate::controller::response::ErrorResponse;
use rocket::response::Responder;
use rocket_okapi::okapi::schemars::{self, JsonSchema};
use serde::{Deserialize, Serialize};
pub type JsonString = String;
#[derive(Serialize, Deserialize, Clone, Debug, JsonSchema, Responder)]
pub struct Message {
pub message: JsonString,
}
impl Message {
pub fn json(&self) -> JsonString {
serde_json::to_string(self).unwrap()
}
}
impl From<&str> for Message {
fn from(msg: &str) -> Self {
Self {
message: msg.to_owned(),
}
}
}
impl From<String> for Message {
fn from(msg: String) -> Self {
Self { message: msg }
}
}
#[allow(unreachable_patterns)]
impl From<ErrorResponse> for Message {
fn from(response: ErrorResponse) -> Self {
match response {
ErrorResponse::BadRequest(message) => Message { message },
ErrorResponse::Unauthorized(message) => Message { message },
ErrorResponse::NotFound(message) => Message { message },
ErrorResponse::RequestTimeout(message) => Message { message },
ErrorResponse::Conflict(message) => Message { message },
ErrorResponse::PreconditionFailed(message) => Message { message },
ErrorResponse::UnprocessableEntity(message) => Message { message },
ErrorResponse::NoResponse(message) => Message { message },
ErrorResponse::ClientClosedRequest(message) => Message { message },
ErrorResponse::InternalServerError(message) => Message { message },
ErrorResponse::NotImplemented(message) => Message { message },
ErrorResponse::ServiceUnavailable(message) => Message { message },
ErrorResponse::NetworkAuthenticationRequired(message) => Message { message },
_ => unimplemented!(),
}
}
}