asyncapi 0.2.0

This crate aims to provide data structures that represent the AsyncAPI specification easily deserializable with serde.
Documentation
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
use indexmap::IndexMap;
use serde::{Deserialize, Serialize};

/// Defines a security scheme that can be used by the operations. Supported schemes are:
///
/// * User/Password.
/// * API key (either as user or as password).
/// * X.509 certificate.
/// * End-to-end encryption (either symmetric or asymmetric).
/// * HTTP authentication.
/// * HTTP API key.
/// * OAuth2's common flows (Implicit, Resource Owner Protected Credentials, Client Credentials and Authorization Code) as defined in RFC6749.
/// * OpenID Connect Discovery.
/// * SASL (Simple Authentication and Security Layer) as defined in RFC4422.
///
/// # Examples
///
/// ## User/Password Authentication Sample
/// ```json
/// {
///     "type": "userPassword"
/// }
/// ```
///
/// ```yaml
/// type: userPassword
/// ```
///
/// ## API Key Authentication Sample
/// ```json
/// {
///     "type": "apiKey",
///     "in": "user"
/// }
/// ```
///
/// ```yaml
/// type: apiKey,
/// in: user
/// ```
///
/// ## X.509 Authentication Sample
/// ```json
/// {
///     "type": "X509"
/// }
/// ```
///
/// ```yaml
/// type: X509
/// ```
///
/// ## End-to-end Encryption Authentication Sample
/// ```json
/// {
///     "type": "symmetricEncryption"
/// }
/// ```
///
/// ```yaml
/// type: symmetricEncryption
/// ```
///
/// ## Basic Authentication Sample
/// ```json
/// {
///     "type": "http",
///     "scheme": "basic"
/// }
/// ```
///
/// ```yaml
/// type: http
/// scheme: basic
/// ```
///
/// ## API Key Sample
/// ```json
/// {
///     "type": "httpApiKey",
///     "name": "api_key",
///     "in": "header"
/// }
/// ```
///
/// ```yaml
/// type: httpApiKey
/// name: api_key
/// in: header
/// ```
///
/// ## JWT Bearer Sample
/// ```json
/// {
///     "type": "http",
///     "scheme": "bearer",
///     "bearerFormat": "JWT"
/// }
/// ```
///
/// ```yaml
/// type: http
/// scheme: bearer
/// bearerFormat: JWT
/// ```
///
/// ## Implicit OAuth2 Sample
/// ```json
/// {
///     "type": "oauth2",
///     "flows": {
///         "implicit": {
///         "authorizationUrl": "https://example.com/api/oauth/dialog",
///         "scopes": {
///             "write:pets": "modify pets in your account",
///             "read:pets": "read your pets"
///         }
///         }
///     }
/// }
/// ```
///
/// ```yaml
/// type: oauth2
/// flows:
///   implicit:
///     authorizationUrl: https://example.com/api/oauth/dialog
///     scopes:
///       write:pets: modify pets in your account
///       read:pets: read your pets
/// ```
///
/// ## SASL Sample
/// ```json
/// {
///     "type": "scramSha512"
/// }
/// ```
///
/// ```yaml
/// type: scramSha512
/// ```
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
#[serde(tag = "type")]
pub enum SecurityScheme {
    #[serde(rename = "userPassword")]
    UserPassword {
        /// A short description for security scheme.
        /// [CommonMark syntax](https://spec.commonmark.org/)
        /// MAY be used for rich text representation.
        #[serde(skip_serializing_if = "Option::is_none")]
        description: Option<String>,
        /// This object MAY be extended with
        /// [Specification Extensions](https://www.asyncapi.com/docs/specifications/v2.3.0#specificationExtensions).
        #[serde(flatten)]
        extensions: IndexMap<String, serde_json::Value>,
    },
    #[serde(rename = "apiKey")]
    ApiKey {
        /// A short description for security scheme.
        /// [CommonMark syntax](https://spec.commonmark.org/)
        /// MAY be used for rich text representation.
        #[serde(skip_serializing_if = "Option::is_none")]
        description: Option<String>,
        /// REQUIRED. The location of the API key.
        /// Valid values are `"user"` and `"password"`.
        #[serde(rename = "in")]
        location: String,
        /// This object MAY be extended with
        /// [Specification Extensions](https://www.asyncapi.com/docs/specifications/v2.3.0#specificationExtensions).
        #[serde(flatten)]
        extensions: IndexMap<String, serde_json::Value>,
    },
    X509 {
        /// A short description for security scheme.
        /// [CommonMark syntax](https://spec.commonmark.org/)
        /// MAY be used for rich text representation.
        #[serde(skip_serializing_if = "Option::is_none")]
        description: Option<String>,
        /// This object MAY be extended with
        /// [Specification Extensions](https://www.asyncapi.com/docs/specifications/v2.3.0#specificationExtensions).
        #[serde(flatten)]
        extensions: IndexMap<String, serde_json::Value>,
    },
    #[serde(rename = "symmetricEncryption")]
    SymmetricEncryption {
        /// A short description for security scheme.
        /// [CommonMark syntax](https://spec.commonmark.org/)
        /// MAY be used for rich text representation.
        #[serde(skip_serializing_if = "Option::is_none")]
        description: Option<String>,
        /// This object MAY be extended with
        /// [Specification Extensions](https://www.asyncapi.com/docs/specifications/v2.3.0#specificationExtensions).
        #[serde(flatten)]
        extensions: IndexMap<String, serde_json::Value>,
    },
    #[serde(rename = "asymmetricEncryption")]
    AsymmetricEncryption {
        /// A short description for security scheme.
        /// [CommonMark syntax](https://spec.commonmark.org/)
        /// MAY be used for rich text representation.
        #[serde(skip_serializing_if = "Option::is_none")]
        description: Option<String>,
        /// This object MAY be extended with
        /// [Specification Extensions](https://www.asyncapi.com/docs/specifications/v2.3.0#specificationExtensions).
        #[serde(flatten)]
        extensions: IndexMap<String, serde_json::Value>,
    },
    #[serde(rename = "httpApiKey")]
    HttpApiKey {
        /// A short description for security scheme.
        /// [CommonMark syntax](https://spec.commonmark.org/)
        /// MAY be used for rich text representation.
        #[serde(skip_serializing_if = "Option::is_none")]
        description: Option<String>,
        /// **REQUIRED**. The name of the header,
        /// query or cookie parameter to be used.
        name: String,
        /// REQUIRED. The location of the API key.
        /// Valid values are `"query"`, `"header"` or `"cookie"`.
        #[serde(rename = "in")]
        location: String,
        /// This object MAY be extended with
        /// [Specification Extensions](https://www.asyncapi.com/docs/specifications/v2.3.0#specificationExtensions).
        #[serde(flatten)]
        extensions: IndexMap<String, serde_json::Value>,
    },
    #[serde(rename = "http", rename_all = "camelCase")]
    Http {
        /// A short description for security scheme.
        /// [CommonMark syntax](https://spec.commonmark.org/)
        /// MAY be used for rich text representation.
        #[serde(skip_serializing_if = "Option::is_none")]
        description: Option<String>,
        /// **REQUIRED**. The name of the HTTP Authorization scheme
        /// to be used in the Authorization header as defined in
        /// [RFC7235](https://tools.ietf.org/html/rfc7235#section-5.1).
        scheme: String,
        /// A hint to the client to identify how the bearer token is formatted.
        /// Bearer tokens are usually generated by an authorization server,
        /// so this information is primarily for documentation purposes.
        #[serde(skip_serializing_if = "Option::is_none")]
        bearer_format: Option<String>,
        /// This object MAY be extended with
        /// [Specification Extensions](https://www.asyncapi.com/docs/specifications/v2.3.0#specificationExtensions).
        #[serde(flatten)]
        extensions: IndexMap<String, serde_json::Value>,
    },
    /// # Examples
    /// ```json
    /// {
    ///     "type": "oauth2",
    ///     "flows": {
    ///         "implicit": {
    ///         "authorizationUrl": "https://example.com/api/oauth/dialog",
    ///         "scopes": {
    ///             "write:pets": "modify pets in your account",
    ///             "read:pets": "read your pets"
    ///         }
    ///         },
    ///         "authorizationCode": {
    ///         "authorizationUrl": "https://example.com/api/oauth/dialog",
    ///         "tokenUrl": "https://example.com/api/oauth/token",
    ///         "scopes": {
    ///             "write:pets": "modify pets in your account",
    ///             "read:pets": "read your pets"
    ///         }
    ///         }
    ///     }
    /// }
    /// ```
    ///
    /// ```yaml
    /// type: oauth2
    /// flows:
    ///   implicit:
    ///     authorizationUrl: https://example.com/api/oauth/dialog
    ///     scopes:
    ///       write:pets: modify pets in your account
    ///       read:pets: read your pets
    ///   authorizationCode:
    ///     authorizationUrl: https://example.com/api/oauth/dialog
    ///     tokenUrl: https://example.com/api/oauth/token
    ///     scopes:
    ///       write:pets: modify pets in your account
    ///       read:pets: read your pets
    /// ```
    #[serde(rename = "oauth2")]
    OAuth2 {
        /// A short description for security scheme.
        /// [CommonMark syntax](https://spec.commonmark.org/)
        /// MAY be used for rich text representation.
        #[serde(skip_serializing_if = "Option::is_none")]
        description: Option<String>,
        /// **REQUIRED**. An object containing configuration
        /// information for the flow types supported.
        flows: OAuthFlows,
        /// This object MAY be extended with
        /// [Specification Extensions](https://www.asyncapi.com/docs/specifications/v2.3.0#specificationExtensions).
        #[serde(flatten)]
        extensions: IndexMap<String, serde_json::Value>,
    },
    #[serde(rename = "openIdConnect", rename_all = "camelCase")]
    OpenIdConnect {
        /// A short description for security scheme.
        /// [CommonMark syntax](https://spec.commonmark.org/)
        /// MAY be used for rich text representation.
        #[serde(skip_serializing_if = "Option::is_none")]
        description: Option<String>,
        /// **REQUIRED**. OpenId Connect URL to discover
        /// OAuth2 configuration values. This MUST be in the form of a URL.
        open_id_connect_url: String,
        /// This object MAY be extended with
        /// [Specification Extensions](https://www.asyncapi.com/docs/specifications/v2.3.0#specificationExtensions).
        #[serde(flatten)]
        extensions: IndexMap<String, serde_json::Value>,
    },
    #[serde(rename = "plain")]
    Plain {
        /// A short description for security scheme.
        /// [CommonMark syntax](https://spec.commonmark.org/)
        /// MAY be used for rich text representation.
        #[serde(skip_serializing_if = "Option::is_none")]
        description: Option<String>,
        /// This object MAY be extended with
        /// [Specification Extensions](https://www.asyncapi.com/docs/specifications/v2.3.0#specificationExtensions).
        #[serde(flatten)]
        extensions: IndexMap<String, serde_json::Value>,
    },
    #[serde(rename = "scramSha256")]
    ScramSha256 {
        /// A short description for security scheme.
        /// [CommonMark syntax](https://spec.commonmark.org/)
        /// MAY be used for rich text representation.
        #[serde(skip_serializing_if = "Option::is_none")]
        description: Option<String>,
        /// This object MAY be extended with
        /// [Specification Extensions](https://www.asyncapi.com/docs/specifications/v2.3.0#specificationExtensions).
        #[serde(flatten)]
        extensions: IndexMap<String, serde_json::Value>,
    },
    #[serde(rename = "scramSha512")]
    ScramSha512 {
        /// A short description for security scheme.
        /// [CommonMark syntax](https://spec.commonmark.org/)
        /// MAY be used for rich text representation.
        #[serde(skip_serializing_if = "Option::is_none")]
        description: Option<String>,
        /// This object MAY be extended with
        /// [Specification Extensions](https://www.asyncapi.com/docs/specifications/v2.3.0#specificationExtensions).
        #[serde(flatten)]
        extensions: IndexMap<String, serde_json::Value>,
    },
    #[serde(rename = "gssapi")]
    Gssapi {
        /// A short description for security scheme.
        /// [CommonMark syntax](https://spec.commonmark.org/)
        /// MAY be used for rich text representation.
        #[serde(skip_serializing_if = "Option::is_none")]
        description: Option<String>,
        /// This object MAY be extended with
        /// [Specification Extensions](https://www.asyncapi.com/docs/specifications/v2.3.0#specificationExtensions).
        #[serde(flatten)]
        extensions: IndexMap<String, serde_json::Value>,
    },
}

/// Allows configuration of the supported OAuth Flows.
#[derive(Debug, Clone, Serialize, Deserialize, Default, PartialEq)]
#[serde(rename_all = "camelCase")]
pub struct OAuthFlows {
    /// Configuration for the OAuth Implicit flow
    #[serde(skip_serializing_if = "Option::is_none")]
    pub implicit: Option<OAuthFlowImplicit>,
    /// Configuration for the OAuth Resource Owner Protected Credentials flow
    #[serde(skip_serializing_if = "Option::is_none")]
    pub password: Option<OAuthFlowPassword>,
    /// Configuration for the OAuth Client Credentials flow.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub client_credentials: Option<OAuthFlowClientCredentials>,
    /// Configuration for the OAuth Authorization Code flow.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub authorization_code: Option<OAuthFlowAuthorizationCode>,
    /// This object MAY be extended with
    /// [Specification Extensions](https://www.asyncapi.com/docs/specifications/v2.3.0#specificationExtensions).
    #[serde(flatten)]
    pub extensions: IndexMap<String, serde_json::Value>,
}

/// Configuration details for a supported OAuth Flow
#[derive(Debug, Clone, Serialize, Deserialize, Default, PartialEq)]
#[serde(rename_all = "camelCase")]
pub struct OAuthFlowImplicit {
    /// **REQUIRED**. The authorization URL to be used for this flow.
    /// This MUST be in the form of a URL.
    pub authorization_url: String,
    /// The URL to be used for obtaining refresh tokens.
    /// This MUST be in the form of a URL.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub refresh_url: Option<String>,
    /// **REQUIRED**. The available scopes for the OAuth2 security scheme.
    /// A map between the scope name and a short description for it.
    pub scopes: IndexMap<String, String>,
    /// This object MAY be extended with
    /// [Specification Extensions](https://www.asyncapi.com/docs/specifications/v2.3.0#specificationExtensions).
    #[serde(flatten)]
    pub extensions: IndexMap<String, serde_json::Value>,
}

/// Configuration details for a supported OAuth Flow
#[derive(Debug, Clone, Serialize, Deserialize, Default, PartialEq)]
#[serde(rename_all = "camelCase")]
pub struct OAuthFlowPassword {
    /// **REQUIRED**. The token URL to be used for this flow.
    /// This MUST be in the form of a URL.
    pub token_url: String,
    /// The URL to be used for obtaining refresh tokens.
    /// This MUST be in the form of a URL.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub refresh_url: Option<String>,
    /// **REQUIRED**. The available scopes for the OAuth2 security scheme.
    /// A map between the scope name and a short description for it.
    pub scopes: IndexMap<String, String>,
    /// This object MAY be extended with
    /// [Specification Extensions](https://www.asyncapi.com/docs/specifications/v2.3.0#specificationExtensions).
    #[serde(flatten)]
    pub extensions: IndexMap<String, serde_json::Value>,
}

/// Configuration details for a supported OAuth Flow
#[derive(Debug, Clone, Serialize, Deserialize, Default, PartialEq)]
#[serde(rename_all = "camelCase")]
pub struct OAuthFlowClientCredentials {
    /// **REQUIRED**. The token URL to be used for this flow.
    /// This MUST be in the form of a URL.
    pub token_url: String,
    /// The URL to be used for obtaining refresh tokens.
    /// This MUST be in the form of a URL.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub refresh_url: Option<String>,
    /// **REQUIRED**. The available scopes for the OAuth2 security scheme.
    /// A map between the scope name and a short description for it.
    pub scopes: IndexMap<String, String>,
    /// This object MAY be extended with
    /// [Specification Extensions](https://www.asyncapi.com/docs/specifications/v2.3.0#specificationExtensions).
    #[serde(flatten)]
    pub extensions: IndexMap<String, serde_json::Value>,
}

/// Configuration details for a supported OAuth Flow
#[derive(Debug, Clone, Serialize, Deserialize, Default, PartialEq)]
#[serde(rename_all = "camelCase")]
pub struct OAuthFlowAuthorizationCode {
    /// **REQUIRED**. The authorization URL to be used for this flow.
    /// This MUST be in the form of a URL.
    pub authorization_url: String,
    /// **REQUIRED**. The token URL to be used for this flow.
    /// This MUST be in the form of a URL.
    pub token_url: String,
    /// The URL to be used for obtaining refresh tokens.
    /// This MUST be in the form of a URL.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub refresh_url: Option<String>,
    /// **REQUIRED**. The available scopes for the OAuth2 security scheme.
    /// A map between the scope name and a short description for it.
    pub scopes: IndexMap<String, String>,
    /// This object MAY be extended with
    /// [Specification Extensions](https://www.asyncapi.com/docs/specifications/v2.3.0#specificationExtensions).
    #[serde(flatten)]
    pub extensions: IndexMap<String, serde_json::Value>,
}

#[test]
fn test_deserialize_security_scheme() {
    use crate::ReferenceOr;

    let example = r#"
    type: apiKey
    in: user
    description: Provide your API key as the user and leave the password empty.
    "#;
    let asyncapi: ReferenceOr<SecurityScheme> = serde_yaml::from_str(example)
        .expect(&format!("Could not deserialize api key security scheme"));
    assert_eq!(
        ReferenceOr::Item(SecurityScheme::ApiKey {
            location: "user".to_string(),
            description: Some(
                "Provide your API key as the user and leave the password empty.".to_string(),
            ),
            extensions: Default::default(),
        }),
        asyncapi
    );
}