-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbinary-string-to-file.js
54 lines (47 loc) · 1.49 KB
/
binary-string-to-file.js
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
/**
* @copyright Copyright 2019 Kevin Locke <kevin@kevinlocke.name>
* @license MIT
* @module "openapi-transformers/binary-string-to-file.js"
*/
import OpenApiTransformerBase from 'openapi-transformer-base';
function transformSchemaType(schema) {
if (schema.type === 'string'
&& (schema.format === 'binary' || schema.format === 'file')) {
const newSchema = {
...schema,
type: 'file',
};
delete newSchema.format;
return newSchema;
}
return schema;
}
/**
* Transformer to replace `type: string, format: binary` (or `format: file`)
* with `type: file` so that Autorest generates to a Stream instead of string.
*/
export default class BinaryStringToFileTransformer
extends OpenApiTransformerBase {
// eslint-disable-next-line class-methods-use-this
transformSchema(schema) {
// Don't call super, since `type: file` is only allowed on root schema of
// response.
// Note: No checking is done to enforce this (due to $ref complications).
// Note: A response could $ref a property schema. Unlikely.
return transformSchemaType(schema);
}
// eslint-disable-next-line class-methods-use-this
transformParameter(parameter) {
if (parameter === null || typeof parameter !== 'object') {
return parameter;
}
let newParameter = transformSchemaType(parameter);
if (newParameter.schema) {
newParameter = {
...newParameter,
schema: transformSchemaType(newParameter.schema),
};
}
return newParameter;
}
}