-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopenapi.rs
520 lines (462 loc) · 14.1 KB
/
openapi.rs
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
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
//! https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.0.md
#![allow(non_snake_case)]
use dynser_derive::Object;
use serde_derive::Deserialize;
use serde_json::Value;
use std::collections::HashMap;
#[derive(Default, Debug, PartialEq, Deserialize, Object)]
pub struct OpenApi {
#[primitive]
pub openapi: String,
pub info: Info,
#[serde(default)]
pub servers: Vec<Server>,
pub paths: Paths,
pub components: Option<Components>,
#[serde(default)]
pub security: Vec<SecurityRequirement>,
#[serde(default)]
pub tags: Vec<Tag>,
pub externalDocs: Option<ExternalDocumentation>,
#[cfg(not(feature = "no-flatten"))]
#[serde(flatten)]
#[default]
pub extensions: HashMap<String, Value>,
}
#[derive(Default, Debug, PartialEq, Deserialize, Object)]
pub struct Info {
#[primitive]
pub title: String,
#[primitive]
pub description: Option<String>,
#[primitive]
pub termsOfService: Option<String>,
pub contact: Option<Contact>,
pub license: Option<License>,
#[primitive]
pub version: String,
#[cfg(not(feature = "no-flatten"))]
#[serde(flatten)]
#[default]
pub extensions: HashMap<String, Value>,
}
#[derive(Default, Debug, PartialEq, Deserialize, Object)]
pub struct Contact {
#[primitive]
pub name: Option<String>,
#[primitive]
pub url: Option<String>,
#[primitive]
pub email: Option<String>,
#[cfg(not(feature = "no-flatten"))]
#[serde(flatten)]
#[default]
pub extensions: HashMap<String, Value>,
}
#[derive(Default, Debug, PartialEq, Deserialize, Object)]
pub struct License {
#[primitive]
pub name: String,
#[primitive]
pub url: Option<String>,
#[cfg(not(feature = "no-flatten"))]
#[serde(flatten)]
#[default]
pub extensions: HashMap<String, Value>,
}
#[derive(Default, Debug, PartialEq, Deserialize, Object)]
pub struct Server {
#[primitive]
pub url: String,
#[primitive]
pub description: Option<String>,
#[serde(default)]
pub variables: HashMap<String, ServerVariable>,
#[cfg(not(feature = "no-flatten"))]
#[serde(flatten)]
#[default]
pub extensions: HashMap<String, Value>,
}
#[derive(Default, Debug, PartialEq, Deserialize, Object)]
pub struct ServerVariable {
#[serde(default)]
#[primitive]
pub r#enum: Vec<String>,
#[primitive]
pub r#default: String,
#[primitive]
pub description: Option<String>,
#[cfg(not(feature = "no-flatten"))]
#[serde(flatten)]
#[default]
pub extensions: HashMap<String, Value>,
}
#[derive(Default, Debug, PartialEq, Deserialize, Object)]
pub struct Components {
#[serde(default)]
pub schemas: HashMap<String, Reference<Schema>>,
#[serde(default)]
pub responses: HashMap<String, Reference<Response>>,
#[serde(default)]
pub parameters: HashMap<String, Reference<Parameter>>,
#[serde(default)]
pub examples: HashMap<String, Reference<Example>>,
#[serde(default)]
pub requestBodies: HashMap<String, Reference<RequestBody>>,
#[serde(default)]
pub headers: HashMap<String, Reference<Header>>,
#[serde(default)]
pub securitySchemes: HashMap<String, Reference<SecurityScheme>>,
#[serde(default)]
pub links: HashMap<String, Reference<Link>>,
#[serde(default)]
pub callbacks: HashMap<String, Reference<Callback>>,
#[cfg(not(feature = "no-flatten"))]
#[serde(flatten)]
#[default]
pub extensions: HashMap<String, Value>,
}
pub type Paths = HashMap<String, Path>;
#[derive(Default, Debug, PartialEq, Deserialize, Object)]
pub struct Path {
// FIXME: should support "renaming"
#[primitive]
#[serde(rename = "$ref")]
pub r#ref: Option<String>,
#[primitive]
pub summary: Option<String>,
#[primitive]
pub description: Option<String>,
pub get: Option<Operation>,
pub put: Option<Operation>,
pub post: Option<Operation>,
pub delete: Option<Operation>,
pub options: Option<Operation>,
pub head: Option<Operation>,
pub patch: Option<Operation>,
pub trace: Option<Operation>,
#[serde(default)]
pub servers: Vec<Server>,
#[serde(default)]
pub parameters: Vec<Reference<Parameter>>,
#[cfg(not(feature = "no-flatten"))]
#[serde(flatten)]
#[default]
pub extensions: HashMap<String, Value>,
}
#[derive(Default, Debug, PartialEq, Deserialize, Object)]
pub struct Operation {
#[serde(default)]
#[primitive]
pub tags: Vec<String>,
#[primitive]
pub summary: Option<String>,
#[primitive]
pub description: Option<String>,
pub externalDocs: Option<ExternalDocumentation>,
#[primitive]
pub operationId: Option<String>,
#[serde(default)]
pub parameters: Vec<Reference<Parameter>>,
pub requestBody: Option<Reference<RequestBody>>,
pub responses: Responses,
#[serde(default)]
pub callbacks: HashMap<String, Reference<Callback>>,
#[serde(default)]
#[primitive]
pub deprecated: bool,
#[serde(default)]
pub security: Vec<SecurityRequirement>,
#[serde(default)]
pub servers: Vec<Server>,
#[cfg(not(feature = "no-flatten"))]
#[serde(flatten)]
#[default]
pub extensions: HashMap<String, Value>,
}
#[derive(Default, Debug, PartialEq, Deserialize, Object)]
pub struct ExternalDocumentation {
#[primitive]
pub description: Option<String>,
#[primitive]
pub url: String,
#[cfg(not(feature = "no-flatten"))]
#[serde(flatten)]
#[default]
pub extensions: HashMap<String, Value>,
}
#[derive(Default, Debug, PartialEq, Deserialize, Object)]
pub struct Parameter {
#[primitive]
pub name: String,
#[primitive]
pub r#in: String,
#[primitive]
pub description: Option<String>,
#[serde(default)]
#[primitive]
pub required: bool,
#[serde(default)]
#[primitive]
pub deprecated: bool,
#[serde(default)]
#[primitive]
pub allowEmptyValue: bool,
#[primitive]
pub style: Option<String>,
#[serde(default)]
#[primitive]
pub explode: bool,
#[serde(default)]
#[primitive]
pub allowReserved: bool,
pub schema: Option<Reference<Schema>>,
#[any]
pub example: Option<Value>,
#[serde(default)]
pub examples: HashMap<String, Reference<Example>>,
#[serde(default)]
pub content: HashMap<String, MediaType>,
#[cfg(not(feature = "no-flatten"))]
#[serde(flatten)]
#[default]
pub extensions: HashMap<String, Value>,
}
#[derive(Default, Debug, PartialEq, Deserialize, Object)]
pub struct RequestBody {
#[primitive]
pub description: Option<String>,
#[serde(default)]
pub content: HashMap<String, MediaType>,
#[serde(default)]
#[primitive]
pub required: bool,
#[cfg(not(feature = "no-flatten"))]
#[serde(flatten)]
#[default]
pub extensions: HashMap<String, Value>,
}
#[derive(Default, Debug, PartialEq, Deserialize, Object)]
pub struct MediaType {
pub schema: Option<Reference<Schema>>,
#[any]
pub example: Option<Value>,
#[serde(default)]
pub examples: HashMap<String, Reference<Example>>,
#[serde(default)]
pub encoding: HashMap<String, Encoding>,
#[cfg(not(feature = "no-flatten"))]
#[serde(flatten)]
#[default]
pub extensions: HashMap<String, Value>,
}
#[derive(Default, Debug, PartialEq, Deserialize, Object)]
pub struct Encoding {
#[primitive]
pub contentType: Option<String>,
#[serde(default)]
pub headers: HashMap<String, Reference<Header>>,
#[primitive]
pub style: Option<String>,
#[serde(default)]
#[primitive]
pub explode: bool,
#[serde(default)]
#[primitive]
pub allowReserved: bool,
#[cfg(not(feature = "no-flatten"))]
#[serde(flatten)]
#[default]
pub extensions: HashMap<String, Value>,
}
pub type Responses = HashMap<String, Reference<Response>>;
#[derive(Default, Debug, PartialEq, Deserialize, Object)]
pub struct Response {
#[primitive]
pub description: Option<String>,
#[serde(default)]
pub headers: HashMap<String, Reference<Header>>,
#[serde(default)]
pub content: HashMap<String, MediaType>,
#[serde(default)]
pub links: HashMap<String, Reference<Link>>,
#[cfg(not(feature = "no-flatten"))]
#[serde(flatten)]
#[default]
pub extensions: HashMap<String, Value>,
}
pub type Callback = HashMap<String, Path>;
#[derive(Default, Debug, PartialEq, Deserialize, Object)]
pub struct Example {
#[primitive]
pub summary: Option<String>,
#[primitive]
pub description: Option<String>,
#[any]
pub value: Option<Value>,
#[primitive]
#[primitive]
pub externalValue: Option<String>,
#[cfg(not(feature = "no-flatten"))]
#[serde(flatten)]
#[default]
pub extensions: HashMap<String, Value>,
}
#[derive(Default, Debug, PartialEq, Deserialize, Object)]
pub struct Link {
#[primitive]
pub operationRef: Option<String>,
#[primitive]
pub operationId: Option<String>,
#[serde(default)]
pub parameters: HashMap<String, Value>,
#[any]
pub requestBody: Option<Value>,
#[primitive]
pub description: Option<String>,
pub server: Option<Server>,
#[cfg(not(feature = "no-flatten"))]
#[serde(flatten)]
#[default]
pub extensions: HashMap<String, Value>,
}
pub type Header = Parameter;
#[derive(Default, Debug, PartialEq, Deserialize, Object)]
pub struct Tag {
#[primitive]
pub name: String,
#[primitive]
pub description: Option<String>,
pub externalDocs: Option<ExternalDocumentation>,
#[cfg(not(feature = "no-flatten"))]
#[serde(flatten)]
#[default]
pub extensions: HashMap<String, Value>,
}
// FIXME: too big, so let's do JSON for now
// FIXME: has to do HashMap -- we don't implement `Object` for `Value`!
pub type Schema = HashMap<String, Value>;
#[derive(Default, Debug, PartialEq, Deserialize, Object)]
pub struct SecurityScheme {
#[primitive]
pub r#type: String,
#[any]
pub description: Option<Value>,
#[serde(default)]
#[primitive]
pub name: String,
#[serde(default)]
#[primitive]
pub r#in: String,
#[serde(default)]
#[primitive]
pub scheme: String,
#[primitive]
pub bearerFormat: Option<String>,
pub flows: Option<OAuthFlows>,
#[primitive]
pub openIdConnectUrl: Option<String>,
#[cfg(not(feature = "no-flatten"))]
#[serde(flatten)]
#[default]
pub extensions: HashMap<String, Value>,
}
#[derive(Default, Debug, PartialEq, Deserialize, Object)]
pub struct OAuthFlows {
pub implicit: Option<OAuthFlow>,
pub password: Option<OAuthFlow>,
pub clientCredentials: Option<OAuthFlow>,
pub authorizationCode: Option<OAuthFlow>,
#[cfg(not(feature = "no-flatten"))]
#[serde(flatten)]
#[default]
pub extensions: HashMap<String, Value>,
}
#[derive(Default, Debug, PartialEq, Deserialize, Object)]
pub struct OAuthFlow {
#[serde(default)]
#[primitive]
pub authorizationUrl: String,
#[primitive]
pub tokenUrl: String,
#[primitive]
pub refreshUrl: Option<String>,
pub scopes: HashMap<String, String>,
#[cfg(not(feature = "no-flatten"))]
#[serde(flatten)]
#[default]
pub extensions: HashMap<String, Value>,
}
pub type SecurityRequirement = HashMap<String, Vec<String>>;
/// Make it easier on serde -- don't use untagged enums
#[cfg(feature = "no-flatten")]
pub type Reference<T> = T;
#[cfg(not(feature = "no-flatten"))]
pub use self::reference::{Reference, ReferenceValue};
#[cfg(not(feature = "no-flatten"))]
mod reference {
use crate::reflection::{FieldMutReflection, Object, ReflectionError};
use serde_derive::Deserialize;
#[derive(Default, Debug, PartialEq, Deserialize)]
#[serde(deny_unknown_fields)]
pub struct ReferenceValue {
#[serde(rename = "$ref")]
reference: String,
}
#[derive(Debug, PartialEq, Deserialize)]
#[serde(untagged)]
pub enum Reference<T> {
Reference(ReferenceValue),
Other(T),
}
// FIXME: ugly -- we use empty reference as an indication of "no value"
// This makes `$ref: ""` to have no effect, etc.
impl<T> Default for Reference<T> {
fn default() -> Self {
Reference::Reference(Default::default())
}
}
impl<T> Object for Reference<T>
where
T: Object + Default,
{
fn create(&mut self, field_name: &str) -> Result<FieldMutReflection, ReflectionError> {
match self {
Reference::Other(other) => other.create(field_name),
Reference::Reference { .. } if field_name == "$ref" => match self {
Reference::Reference(r) => Ok(FieldMutReflection::Primitive(&mut r.reference)),
Reference::Other(_) => unreachable!(),
},
Reference::Reference { .. } => {
let previous_ref = if let Reference::Reference(r) = self {
std::mem::replace(&mut r.reference, String::new())
} else {
unreachable!()
};
// Mutate ourselves into other
*self = Reference::Other(T::default());
match self {
Reference::Reference { .. } => unreachable!(),
Reference::Other(other) => {
// Move previously saved reference to the new object
if !previous_ref.is_empty() {
use crate::reflection::PrimitiveValue;
match other.create("$ref")? {
FieldMutReflection::Primitive(primitive) => {
primitive.set(PrimitiveValue::String(previous_ref))?;
}
_ => {
return Err(ReflectionError::InvalidField {
name: "$ref".to_string(),
})
}
}
}
other.create(field_name)
}
}
}
}
}
}
}