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
use crate::{
dtos::operation::Operation,
entities::{DepthTracker, ReferenceResolver},
};
use mycelium_base::utils::errors::{execution_err, MappedErrors};
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
#[derive(Clone, Debug, Deserialize, Serialize, PartialEq, Eq, Default)]
#[serde(rename_all = "camelCase")]
pub struct MethodOperation {
/// The operations
///
/// This is the operations of the OpenAPI specification.
///
/// Example:
///
/// ```json
/// {
/// "get": {
/// "operationId": "get_record"
/// }
/// }
/// ```
#[serde(default, flatten)]
pub operations: HashMap<String, Operation>,
}
impl MethodOperation {
/// Find an operation by operation id
///
/// This function finds an operation by operation id.
///
pub fn find_operation(&self, operation_id: &str) -> Option<&Operation> {
self.operations.values().find(|operation| {
operation.operation_id == Some(operation_id.to_string())
})
}
}
#[derive(Clone, Debug, Deserialize, Serialize, PartialEq, Eq, Default)]
#[serde(rename_all = "camelCase")]
pub struct Paths {
/// The paths
///
/// This is the paths of the OpenAPI specification.
///
/// Example:
///
/// ```json
/// {
/// "/path/to/route": {
/// "get": {
/// "operationId": "get_record"
/// },
/// "post": {
/// "operationId": "create_record"
/// }
/// }
/// }
/// ```
#[serde(default, flatten)]
pub paths: HashMap<String, MethodOperation>,
}
impl Paths {
/// Find an operation by operation id
///
/// This function finds an operation by operation id.
///
pub fn find_operation(&self, operation_id: &str) -> Option<&Operation> {
self.paths
.values()
.find_map(|path| path.find_operation(operation_id))
}
}
/// OpenAPI schema
///
/// This is the main schema for the OpenAPI specification.
///
#[derive(Clone, Debug, Deserialize, Serialize, PartialEq, Eq)]
#[serde(rename_all = "camelCase")]
pub struct OpenApiSchema {
/// The OpenAPI version
///
/// This is the version of the OpenAPI specification.
///
pub openapi: String,
/// The info
///
/// This is the info of the OpenAPI specification.
///
#[serde(default, skip_serializing_if = "Option::is_none")]
pub info: Option<serde_json::Value>,
/// The paths
///
/// This is the paths of the OpenAPI specification.
///
/// Paths are indexed by route and method.
///
/// Example:
///
/// ```json
/// {
/// "/path/to/route": {
/// "get": {
/// "operationId": "get_record"
/// },
/// "post": {
/// "operationId": "create_record"
/// }
/// }
/// }
/// ```
///
#[serde(default)]
pub paths: Paths,
/// The components
///
/// This is the components of the OpenAPI specification.
///
#[serde(default, skip_serializing_if = "Option::is_none")]
pub components: Option<serde_json::Value>,
/// The security
///
/// This is the security of the OpenAPI specification.
///
#[serde(default, skip_serializing_if = "Option::is_none")]
pub security: Option<serde_json::Value>,
}
impl OpenApiSchema {
#[tracing::instrument(name = "load_doc_from_string", skip_all)]
pub fn load_doc_from_string(
content: &str,
) -> Result<OpenApiSchema, MappedErrors> {
let doc =
serde_json::from_str::<OpenApiSchema>(&content).map_err(|e| {
execution_err(format!("Failed to parse OpenAPI document: {e}"))
})?;
Ok(doc)
}
/// Resolve the input refs
///
/// This function resolves the references from input elements like
/// parameters, request bodies, headers, etc.
///
/// Client methods should simple call this method with the operation id
/// and the input element name.
///
#[tracing::instrument(
name = "resolve_input_refs_from_operation_id",
skip_all
)]
pub fn resolve_input_refs_from_operation_id(
&self,
operation_id: &str,
) -> Result<serde_json::Value, MappedErrors> {
let operation = self.paths.find_operation(operation_id);
let operation = operation.ok_or(execution_err(format!(
"Operation {operation_id} not found"
)))?;
let mut depth_tracker = DepthTracker::new(25);
let resolved_operation = operation.resolve_ref(
&self.components.clone().unwrap_or_default(),
&mut depth_tracker,
)?;
Ok(resolved_operation)
}
}
#[cfg(test)]
mod tests {
use super::*;
/// Get the example OpenAPI spec file
///
/// This is used to make the JSON object deterministic.
///
fn get_spec_example_file() -> &'static str {
include_str!("./mock/example-openapi.json")
}
#[test]
fn test_load_doc_from_string() {
let doc = OpenApiSchema::load_doc_from_string(get_spec_example_file());
if doc.is_err() {
println!("doc: {:?}", doc);
}
assert!(doc.is_ok());
let example_doc =
OpenApiSchema::load_doc_from_string(get_spec_example_file());
assert!(example_doc.is_ok());
let doc = doc.unwrap();
// Test if the loaded document is the same as the example document
assert_eq!(doc, example_doc.unwrap());
}
#[test]
fn test_resolve_input_refs_from_operation_id() {
let doc = OpenApiSchema::load_doc_from_string(get_spec_example_file());
if doc.is_err() {
println!("doc: {:?}", doc);
}
assert!(doc.is_ok());
let doc = doc.unwrap();
for operation_id in
["register_tenant_tag_url", "list_accounts_by_type_url"]
{
let operation =
doc.resolve_input_refs_from_operation_id(operation_id);
assert!(operation.is_ok());
}
}
}