-
Notifications
You must be signed in to change notification settings - Fork 311
Expand file tree
/
Copy pathresolveSchemaWithSelections.ts
More file actions
155 lines (133 loc) · 4.6 KB
/
Copy pathresolveSchemaWithSelections.ts
File metadata and controls
155 lines (133 loc) · 4.6 KB
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
/* ============================================================================
* Copyright (c) Palo Alto Networks
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
* ========================================================================== */
import type { SchemaObject } from "docusaurus-plugin-openapi-docs/src/openapi/types";
import merge from "lodash/merge";
export interface SchemaSelections {
[schemaPath: string]: number;
}
/**
* Resolves a schema by replacing anyOf/oneOf with the selected option based on user selections.
*
* @param schema - The original schema object
* @param selections - Map of schema paths to selected indices
* @param basePath - The base path for this schema (used for looking up selections)
* @returns A new schema with anyOf/oneOf resolved to selected options
*/
export function resolveSchemaWithSelections(
schema: SchemaObject | undefined,
selections: SchemaSelections,
basePath: string = "requestBody"
): SchemaObject | undefined {
if (!schema) {
return schema;
}
// Deep clone to avoid mutating the original schema
const schemaCopy = JSON.parse(JSON.stringify(schema)) as SchemaObject;
return resolveSchemaRecursive(schemaCopy, selections, basePath);
}
function resolveSchemaRecursive(
schema: SchemaObject,
selections: SchemaSelections,
currentPath: string
): SchemaObject {
// Handle oneOf
if (schema.oneOf && Array.isArray(schema.oneOf)) {
const selectedIndex = selections[currentPath] ?? 0;
const selectedSchema = schema.oneOf[selectedIndex] as SchemaObject;
if (selectedSchema) {
// If there are shared properties, merge them with the selected schema
if (schema.properties) {
const mergedSchema = merge({}, schema, selectedSchema);
delete mergedSchema.oneOf;
// Continue resolving nested schemas in the merged result
return resolveSchemaRecursive(
mergedSchema,
selections,
`${currentPath}.${selectedIndex}`
);
}
// No shared properties, just use the selected schema
// Continue resolving in case there are nested anyOf/oneOf
return resolveSchemaRecursive(
selectedSchema,
selections,
`${currentPath}.${selectedIndex}`
);
}
}
// Handle anyOf
if (schema.anyOf && Array.isArray(schema.anyOf)) {
const selectedIndex = selections[currentPath] ?? 0;
const selectedSchema = schema.anyOf[selectedIndex] as SchemaObject;
if (selectedSchema) {
// If there are shared properties, merge them with the selected schema
if (schema.properties) {
const mergedSchema = merge({}, schema, selectedSchema);
delete mergedSchema.anyOf;
// Continue resolving nested schemas in the merged result
return resolveSchemaRecursive(
mergedSchema,
selections,
`${currentPath}.${selectedIndex}`
);
}
// No shared properties, just use the selected schema
// Continue resolving in case there are nested anyOf/oneOf
return resolveSchemaRecursive(
selectedSchema,
selections,
`${currentPath}.${selectedIndex}`
);
}
}
// Handle allOf - merge all schemas and continue resolving
if (schema.allOf && Array.isArray(schema.allOf)) {
// Process each allOf item, resolving any anyOf/oneOf within them
const resolvedItems = schema.allOf.map((item, index) => {
return resolveSchemaRecursive(
item as SchemaObject,
selections,
`${currentPath}.allOf.${index}`
);
});
// Merge all resolved items
const mergedSchema = resolvedItems.reduce(
(acc, item) => merge(acc, item),
{} as SchemaObject
);
// Preserve any top-level properties from the original schema
if (schema.properties) {
mergedSchema.properties = merge(
{},
mergedSchema.properties,
schema.properties
);
}
return mergedSchema;
}
// Handle object properties recursively
if (schema.properties) {
const resolvedProperties: { [key: string]: SchemaObject } = {};
for (const [propName, propSchema] of Object.entries(schema.properties)) {
resolvedProperties[propName] = resolveSchemaRecursive(
propSchema as SchemaObject,
selections,
`${currentPath}.${propName}`
);
}
schema.properties = resolvedProperties;
}
// Handle array items recursively
if (schema.items) {
schema.items = resolveSchemaRecursive(
schema.items as SchemaObject,
selections,
`${currentPath}.items`
);
}
return schema;
}