-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathskeletons.js
206 lines (194 loc) · 4.83 KB
/
skeletons.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
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
/**
* @copyright Copyright 2024 Kevin Locke <kevin@kevinlocke.name>
* @license MIT
*/
const { freeze } = Object;
/**
* A minimal OpenAPI 3 document.
*/
export const openapi = freeze({
openapi: '3.0.3',
info: freeze({
title: 'Title',
version: '1.0',
}),
paths: freeze({}),
});
export const swagger = freeze({
swagger: '2.0',
info: freeze({
title: 'Title',
version: '1.0',
}),
paths: freeze({}),
});
/**
* Creates an OpenAPI 2 (fka Swagger) document for a given Operation.
*
* @param {string} method HTTP method name.
* @param {!object} operation OpenAPI 2 Operation.
* @returns {!object} OpenAPI 2 document containing the given Operation for
* the given method for path /.
*/
function op2(method, operation) {
return {
...swagger,
paths: {
'/': {
[method]: operation,
},
},
};
}
/**
* Creates an OpenAPI 3 document for a given Operation.
*
* @param {string} method HTTP method name.
* @param {!object} operation OpenAPI 3 Operation.
* @param {string=} version OpenAPI version.
* @returns {!object} OpenAPI 3 document of the given version (or 3.0.3)
* containing the given Operation for the given method for path /.
*/
function op3(method, operation, version) {
return {
...openapi,
openapi: version ?? openapi.openapi,
paths: {
'/': {
[method]: operation,
},
},
};
}
/**
* Creates an OpenAPI 2 (fka Swagger) document for a given GET Operation.
*
* @param {!object} operation OpenAPI 2 Operation.
* @returns {!object} OpenAPI 2 document containing the given Operation as GET
* for path /.
*/
export function get2(operation) {
return op2('get', operation);
}
/**
* Creates an OpenAPI 3 document for a given GET Operation.
*
* @param {!object} operation OpenAPI 3 Operation.
* @param {string=} version OpenAPI version.
* @returns {!object} OpenAPI 3 document of the given version (or 3.0.3)
* containing the given Operation as GET for path /.
*/
export function get3(operation, version) {
return op3('get', operation, version);
}
/**
* Creates an OpenAPI 2 (fka Swagger) document for a given POST Operation.
*
* @param {!object} operation OpenAPI 2 Operation.
* @returns {!object} OpenAPI 2 document containing the given Operation as POST
* for path /.
*/
export function post2(operation) {
return op2('post', operation);
}
/**
* Creates an OpenAPI 3 document for a given POST Operation.
*
* @param {!object} operation OpenAPI 3 Operation.
* @param {string=} version OpenAPI version.
* @returns {!object} OpenAPI 3 document of the given version (or 3.0.3)
* containing the given Operation as POST for path /.
*/
export function post3(operation, version) {
return op3('post', operation, version);
}
/**
* Creates an OpenAPI 2 document for a given JSON response Schema.
*
* @param {!object} schema OpenAPI 2 Schema.
* @returns {!object} OpenAPI 2 document containing the given Schema as
* application/json default response for GET for path /.
*/
// eslint-disable-next-line import/no-unused-modules
export function responseSchema2(schema) {
return {
...swagger,
paths: {
'/': {
get: {
produces: ['application/json'],
responses: {
default: {
description: 'Example response',
schema,
},
},
},
},
},
};
}
/**
* Creates an OpenAPI 3 document for a given JSON response Schema.
*
* @param {!object} schema OpenAPI 3 Schema.
* @param {string=} version OpenAPI version.
* @returns {!object} OpenAPI 3 document of the given version (or 3.0.3)
* containing the given Schema as application/json default response for GET for
* path /.
*/
export function responseSchema3(schema, version) {
return {
...openapi,
openapi: version ?? openapi.openapi,
paths: {
'/': {
get: {
responses: {
default: {
description: 'Example response',
content: {
'application/json': {
schema,
},
},
},
},
},
},
},
};
}
/**
* Creates an OpenAPI 2 (fka Swagger) document for a given Schema.
*
* @param {!object} schema OpenAPI 2 Schema.
* @returns {!object} OpenAPI 2 document containing the given schema named Test.
*/
export function schema2(schema) {
return {
...swagger,
definitions: {
Test: schema,
},
};
}
/**
* Creates an OpenAPI 3 document for a given Schema.
*
* @param {!object} schema OpenAPI 3 Schema.
* @param {string=} version OpenAPI version.
* @returns {!object} OpenAPI 3 document of the given version (or 3.0.3)
* containing the given schema named Test.
*/
export function schema3(schema, version) {
return {
...openapi,
openapi: version ?? '3.0.3',
components: {
schemas: {
Test: schema,
},
},
};
}