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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
use crate::ogcapi::*;

#[derive(Clone, Default)]
pub struct OgcApiInventory {
    pub landing_page_links: Vec<ApiLink>,
    pub conformance_classes: Vec<String>,
    pub collections: Vec<CoreCollection>,
}

/// OpenAPi doc collection
#[derive(Default, Clone)]
pub struct OpenApiDoc(serde_yaml::Value);

impl OpenApiDoc {
    pub fn new() -> Self {
        Self::from_yaml("{}", "")
    }
    pub fn from_yaml(yaml: &str, _prefix: &str) -> Self {
        OpenApiDoc(serde_yaml::from_str(yaml).unwrap())
    }
    pub fn is_empty(&self) -> bool {
        self.0 == Self::new().0
    }
    /// Merge `paths` and `components` of new yaml into exisiting yaml
    pub fn extend(&mut self, yaml: &str, _prefix: &str) {
        let rhs_yaml = serde_yaml::from_str(yaml).unwrap();
        merge_level(&mut self.0, &rhs_yaml, "paths");
        if let Some(rhs_components) = rhs_yaml.get("components") {
            if let Some(components) = self.0.get_mut("components") {
                // merge 1st level children ("parameters", "responses", "schemas")
                for (key, _val) in rhs_components.as_mapping().unwrap().iter() {
                    merge_level(components, rhs_components, key.as_str().unwrap());
                }
            } else {
                self.0
                    .as_mapping_mut()
                    .unwrap()
                    .insert("components".into(), rhs_components.clone());
            }
        }
    }
    /// Set url of first server entry
    pub fn set_server_url(&mut self, url: &str) {
        if let Some(servers) = self.0.get_mut("servers") {
            if let Some(server) = servers.get_mut(0) {
                if let Some(server) = server.as_mapping_mut() {
                    server[&"url".to_string().into()] = url.to_string().into();
                }
            }
        }
    }
    pub fn as_yaml(&self, public_server_url: &str) -> String {
        let mut doc = self.clone();
        doc.set_server_url(public_server_url);
        serde_yaml::to_string(&doc.0).unwrap()
    }
    pub fn as_json(&self, public_server_url: &str) -> serde_json::Value {
        let mut doc = self.clone();
        doc.set_server_url(public_server_url);
        serde_yaml::from_value::<serde_json::Value>(doc.0).unwrap()
    }
}

fn merge_level(yaml: &mut serde_yaml::Value, rhs_yaml: &serde_yaml::Value, key: &str) {
    if let Some(rhs_elem) = rhs_yaml.get(key) {
        if let Some(elem) = yaml.get_mut(key) {
            elem.as_mapping_mut()
                .unwrap()
                .extend(rhs_elem.as_mapping().unwrap().clone());
        } else {
            yaml.as_mapping_mut()
                .unwrap()
                .insert(key.into(), rhs_elem.clone());
        }
    }
}

#[cfg(test)]
mod test {
    use super::*;

    const YAML_BASE: &str = r##"---
openapi: 3.0.2
info:
  title: BBOX OGC API
servers:
  - url: "http://bbox:8080/"
    description: Production server
paths:
  /conformance:
    get:
      operationId: getConformance
      responses:
        "333":
          $ref: "#/components/schemas/confClasses"
components:
  schemas:
    confClasses:
      type: object
      required:
        - conformsTo
      properties:
        conformsTo:
          type: array
          items:
            type: string
"##;

    #[test]
    fn yaml_empty() {
        let doc = OpenApiDoc::new();
        assert!(doc.is_empty());
    }

    #[test]
    fn yaml_extend_headers() {
        let mut doc = OpenApiDoc::from_yaml(YAML_BASE, "");
        assert_eq!(doc.as_yaml("http://bbox:8080/"), YAML_BASE);

        let yaml = r##"---
openapi: 3.0.0
info:
  title: New Title
"##;
        doc.extend(yaml, "");
        assert_eq!(doc.as_yaml("http://bbox:8080/"), YAML_BASE);
    }

    #[test]
    fn yaml_add_path() {
        let yaml = r#"---
paths:
  /newpath: ""
"#;
        let yamlout = r##"---
openapi: 3.0.2
info:
  title: BBOX OGC API
servers:
  - url: "http://bbox:8080/"
    description: Production server
paths:
  /conformance:
    get:
      operationId: getConformance
      responses:
        "333":
          $ref: "#/components/schemas/confClasses"
  /newpath: ""
components:
  schemas:
    confClasses:
      type: object
      required:
        - conformsTo
      properties:
        conformsTo:
          type: array
          items:
            type: string
"##;
        let mut doc = OpenApiDoc::from_yaml(YAML_BASE, "");
        doc.extend(yaml, "");
        assert_eq!(doc.as_yaml("http://bbox:8080/"), yamlout);
    }

    #[test]
    fn yaml_update_path() {
        let yaml = r##"---
paths:
  /conformance:
    get:
      operationId: getConformance
      responses:
        "333":
          $ref: "#/components/schemas/confClasses"
"##;
        let mut doc = OpenApiDoc::from_yaml(YAML_BASE, "");
        doc.extend(yaml, "");
        assert_eq!(doc.as_yaml("http://bbox:8080/"), YAML_BASE);
    }

    #[test]
    fn yaml_change_path() {
        let yaml = r##"---
paths:
  /conformance:
    post:
      operationId: postConformance
      responses:
        "333":
          $ref: "#/components/schemas/confClasses"
"##;
        let yamlout = r##"---
openapi: 3.0.2
info:
  title: BBOX OGC API
servers:
  - url: "http://bbox:8080/"
    description: Production server
paths:
  /conformance:
    post:
      operationId: postConformance
      responses:
        "333":
          $ref: "#/components/schemas/confClasses"
components:
  schemas:
    confClasses:
      type: object
      required:
        - conformsTo
      properties:
        conformsTo:
          type: array
          items:
            type: string
"##;
        let mut doc = OpenApiDoc::from_yaml(YAML_BASE, "");
        doc.extend(yaml, "");
        assert_eq!(doc.as_yaml("http://bbox:8080/"), yamlout);
    }

    #[test]
    fn yaml_add_component() {
        let yaml = r##"---
components:
  schemas:
    link:
      type: object
    confClasses:
      type: object
      required:
        - conformsTo
      properties:
        conformsTo:
          type: array
          items:
            type: string
"##;
        let yamlout = r##"---
openapi: 3.0.2
info:
  title: BBOX OGC API
servers:
  - url: "http://bbox:8080/"
    description: Production server
paths:
  /conformance:
    get:
      operationId: getConformance
      responses:
        "333":
          $ref: "#/components/schemas/confClasses"
components:
  schemas:
    confClasses:
      type: object
      required:
        - conformsTo
      properties:
        conformsTo:
          type: array
          items:
            type: string
    link:
      type: object
"##;
        let mut doc = OpenApiDoc::from_yaml(YAML_BASE, "");
        doc.extend(yaml, "");
        assert_eq!(doc.as_yaml("http://bbox:8080/"), yamlout);
    }

    #[test]
    fn yaml_add_new_component() {
        let yaml = r##"---
components:
  responses:
    NotFound:
      description: The requested resource does not exist.
"##;
        let yamlout = r##"---
openapi: 3.0.2
info:
  title: BBOX OGC API
servers:
  - url: "http://bbox:8080/"
    description: Production server
paths:
  /conformance:
    get:
      operationId: getConformance
      responses:
        "333":
          $ref: "#/components/schemas/confClasses"
components:
  schemas:
    confClasses:
      type: object
      required:
        - conformsTo
      properties:
        conformsTo:
          type: array
          items:
            type: string
  responses:
    NotFound:
      description: The requested resource does not exist.
"##;
        let mut doc = OpenApiDoc::from_yaml(YAML_BASE, "");
        doc.extend(yaml, "");
        assert_eq!(doc.as_yaml("http://bbox:8080/"), yamlout);
    }
}