-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtype-null-to-enum.js
47 lines (41 loc) · 1.32 KB
/
type-null-to-enum.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
/**
* @copyright Copyright 2021 Kevin Locke <kevin@kevinlocke.name>
* @license MIT
* @module "openapi-transformers/type-null-to-enum.js"
*/
import { isDeepStrictEqual } from 'node:util';
import OpenApiTransformerBase from 'openapi-transformer-base';
/**
* Transformer to convert Schema Objects with `type: 'null'` (as in OAS 3.1 and
* JSON Schema) to `enum: [null]` for OAS 3.0 and 2.0.
*/
export default class TypeNullToEnumTransformer
extends OpenApiTransformerBase {
transformSchema(schema) {
const newSchema = super.transformSchema(schema);
if (newSchema === null
|| typeof newSchema !== 'object'
|| Array.isArray(newSchema)) {
return newSchema;
}
const { type } = newSchema;
if (type === 'null'
|| (Array.isArray(type)
&& type.length > 0
&& type.every((t) => t === 'null'))) {
const { type: _, ...schemaNoType } = newSchema;
if (schemaNoType.enum === undefined) {
// eslint-disable-next-line unicorn/no-null
schemaNoType.enum = [null];
// eslint-disable-next-line unicorn/no-null
} else if (!isDeepStrictEqual(schemaNoType.enum, [null])) {
this.warn(
'refusing to overwrite enum of schema with type: null',
newSchema,
);
}
return schemaNoType;
}
return newSchema;
}
}