-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenapi-registry.ts
More file actions
455 lines (389 loc) · 15 KB
/
openapi-registry.ts
File metadata and controls
455 lines (389 loc) · 15 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
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
import type {
OpenApiOperation,
OpenApiRegistryConfig,
OpenApiSchemaObject,
OpenApiSecurityRequirement,
SecuritySchemeObject,
} from './types';
import {serveFiles, setup} from 'swagger-ui-express';
import {
AppErrorHandler,
AppMiddleware,
AppMountHandler,
AppRouteDescription,
AppRoutes,
AuthPolicy,
RouteContract,
getContract,
getErrorContract,
} from '@gravity-ui/expresskit';
import type {RequestHandler} from 'express';
import {z} from 'zod';
import {getSecurityScheme} from './security-schemas';
import {HttpMethod} from './types';
import {NodeKit} from '@gravity-ui/nodekit';
/**
* Creates an OpenAPI registry that manages routes and security schemes
* for generating OpenAPI documentation.
*
* @param config - Configuration for the OpenAPI registry
* @returns An object with methods to register routes, security schemes, and generate the OpenAPI schema
*/
export function createOpenApiRegistry(config: OpenApiRegistryConfig) {
const initialSecuritySchemes = {...(config.securitySchemes || {})};
const openApiSchema: OpenApiSchemaObject = {
openapi: '3.0.3',
info: {
title: config.title || 'API Documentation',
version: config.version || '1.0.0',
description: config.description || 'Generated API documentation',
},
servers: config.servers || [{url: 'http://localhost:3030'}],
paths: {},
components: {
schemas: {},
securitySchemes: {...initialSecuritySchemes},
},
};
if (config.contact) {
openApiSchema.info.contact = config.contact;
}
if (config.license) {
openApiSchema.info.license = config.license;
}
function getResponseDescription(statusCode: string): string {
const descriptions: Record<string, string> = {
'200': 'Successful response',
'201': 'Created successfully',
'204': 'No content',
'400': 'Bad request',
'401': 'Unauthorized',
'403': 'Forbidden',
'404': 'Not found',
'422': 'Validation error',
'500': 'Internal server error',
};
return descriptions[statusCode] || 'Response';
}
function toOpenApiSchema(schema: z.ZodType, io: 'input' | 'output'): Record<string, unknown> {
return z.toJSONSchema(schema, {
target: 'openapi-3.0',
io,
unrepresentable: 'any',
}) as Record<string, unknown>;
}
function createParameters(
paramType: 'query' | 'path' | 'header',
schema: z.ZodType,
alwaysRequired = false,
): Record<string, unknown>[] {
const jsonSchema = toOpenApiSchema(schema, 'input');
if (jsonSchema.type !== 'object' || !jsonSchema.properties) return [];
const required = (jsonSchema.required as string[]) || [];
return Object.entries(jsonSchema.properties).map(([name, property]) => ({
name,
in: paramType,
required: alwaysRequired || required.includes(name),
schema: property,
}));
}
function createRequestBody(
bodySchema: z.ZodType,
contentTypes: string[] = ['application/json'],
): Record<string, unknown> {
const schema = toOpenApiSchema(bodySchema, 'input');
const content = contentTypes.reduce(
(acc, type) => {
acc[type] = {schema};
return acc;
},
{} as Record<string, {schema: unknown}>,
);
return {required: true, content};
}
function createResponses(responseConfig?: RouteContract['response']): Record<string, unknown> {
const responses: Record<string, unknown> = {};
if (!responseConfig) {
// Default response if none specified
responses['200'] = {
description: 'Successful response',
content: {
'application/json': {
schema: {type: 'object'},
},
},
};
return responses;
}
const defaultContentType = responseConfig.contentType || 'application/json';
Object.entries(responseConfig.content).forEach(([statusCode, responseDef]) => {
const schema = responseDef instanceof z.ZodType ? responseDef : responseDef.schema;
const description =
(responseDef instanceof z.ZodType ? undefined : responseDef.description) ||
getResponseDescription(statusCode);
const responseObject: Record<string, unknown> = {
description,
};
// Only add content if there is a schema response
if (schema) {
responseObject.content = {
[defaultContentType]: {
schema: toOpenApiSchema(schema, 'output'),
},
};
}
responses[statusCode] = responseObject;
});
return responses;
}
/**
* Returns the OpenAPI schema that has been built incrementally during route registration
*
* @returns The OpenAPI schema object
*/
function getOpenApiSchema(): OpenApiSchemaObject {
return openApiSchema;
}
function getOperationSecurity(
authHandler?: AppMiddleware | RequestHandler,
): OpenApiSecurityRequirement[] {
const security: OpenApiSecurityRequirement[] = [];
if (authHandler) {
const securityScheme = getSecurityScheme(authHandler);
if (securityScheme) {
registerSecurityScheme(securityScheme.name, securityScheme.scheme);
security.push({
[securityScheme.name]: securityScheme.scopes || [],
});
}
}
return security;
}
function getOperationParameters(apiConfig: RouteContract) {
const parameters = [] as Record<string, unknown>[];
if (apiConfig.request?.params) {
parameters.push(...createParameters('path', apiConfig.request.params, true));
}
if (apiConfig.request?.query) {
parameters.push(...createParameters('query', apiConfig.request.query));
}
if (apiConfig.request?.headers) {
parameters.push(...createParameters('header', apiConfig.request.headers));
}
return parameters;
}
function registerRoute(
method: HttpMethod,
routePath: string,
description: AppRouteDescription,
authHandler?: AppMiddleware | RequestHandler,
transformOperation?: (
operation: OpenApiOperation,
context: {
method: HttpMethod;
path: string;
route: AppRouteDescription;
},
) => OpenApiOperation,
): void {
const routeHandler = description.handler;
const apiConfig = getContract(routeHandler);
if (!apiConfig) return;
// Convert Express path to OpenAPI path
const openApiPath = routePath.replace(/\/:([^/]+)/g, '/{$1}');
const pathItem = openApiSchema.paths[openApiPath] || {};
const operation: OpenApiOperation = {
parameters: getOperationParameters(apiConfig),
responses: createResponses(apiConfig.response),
};
// Add metadata
if ('summary' in apiConfig && apiConfig.summary) operation.summary = apiConfig.summary;
if ('description' in apiConfig && apiConfig.description)
operation.description = apiConfig.description;
if ('tags' in apiConfig && apiConfig.tags) operation.tags = apiConfig.tags;
if ('operationId' in apiConfig && apiConfig.operationId)
operation.operationId = apiConfig.operationId;
// Add security
const security = getOperationSecurity(authHandler);
if (security.length > 0) {
operation.security = security;
}
// Add request body
if (['post', 'put', 'patch'].includes(method) && apiConfig.request?.body) {
operation.requestBody = createRequestBody(
apiConfig.request.body,
apiConfig.request.contentType,
);
}
const finalOperation = transformOperation
? transformOperation(operation, {
method,
path: openApiPath,
route: description,
})
: operation;
pathItem[method] = finalOperation;
openApiSchema.paths[openApiPath] = pathItem;
}
function registerSecurityScheme(name: string, scheme: SecuritySchemeObject): void {
if (openApiSchema.components) {
if (!openApiSchema.components.securitySchemes) {
openApiSchema.components.securitySchemes = {};
}
openApiSchema.components.securitySchemes[name] = scheme;
}
}
function reset(): void {
openApiSchema.paths = {};
if (openApiSchema.components) {
openApiSchema.components.schemas = {};
openApiSchema.components.securitySchemes = {...initialSecuritySchemes};
}
}
function registerErrorHandler(errorHandler: AppErrorHandler): void {
const errorConfig = getErrorContract(errorHandler);
if (!errorConfig) return;
if (!openApiSchema.components) {
openApiSchema.components = {};
}
if (!openApiSchema.components.schemas) {
openApiSchema.components.schemas = {};
}
if (!openApiSchema.components.responses) {
openApiSchema.components.responses = {};
}
const defaultContentType = errorConfig.errors.contentType || 'application/json';
Object.entries(errorConfig.errors.content).forEach(([statusCode, errorDef]) => {
let schema: z.ZodType | undefined;
if (errorDef instanceof z.ZodType) {
schema = errorDef;
} else if ('schema' in errorDef && errorDef.schema) {
schema = errorDef.schema;
}
let description: string | undefined;
if (errorDef instanceof z.ZodType) {
description = undefined;
} else if ('description' in errorDef && errorDef.description) {
description = errorDef.description;
} else {
description = getResponseDescription(statusCode);
}
let name: string | undefined;
if (errorDef instanceof z.ZodType) {
name = undefined;
} else if ('name' in errorDef && errorDef.name) {
name = errorDef.name;
}
if (schema) {
const schemaName = name || `Error${statusCode}`;
if (openApiSchema.components?.schemas) {
openApiSchema.components.schemas[schemaName] = toOpenApiSchema(
schema as z.ZodType,
'output',
);
}
const responseKey = name || `Error${statusCode}`;
if (openApiSchema.components?.responses) {
(openApiSchema.components.responses as Record<string, unknown>)[responseKey] = {
description,
content: {
[defaultContentType]: {
schema: {
$ref: `#/components/schemas/${schemaName}`,
},
},
},
};
}
}
});
}
function registerRoutes(routes: AppRoutes, {ctx}: NodeKit): AppRoutes {
const recognizedMethods: readonly HttpMethod[] = [
'get',
'post',
'put',
'patch',
'delete',
'head',
'options',
];
Object.entries(routes).forEach(([path, handlerOrDescription]) => {
const [rawMethod, ...rawPathParts] = path.trim().split(/\s+/);
if (!rawMethod || rawPathParts.length === 0) {
return;
}
const methodLower = rawMethod.toLowerCase();
if (!recognizedMethods.includes(methodLower as HttpMethod)) {
return;
}
const routePath = rawPathParts.join(' ');
const description: AppRouteDescription =
typeof handlerOrDescription === 'function'
? {handler: handlerOrDescription}
: handlerOrDescription;
const routeAuthPolicy =
description.authPolicy ||
(ctx?.config && 'appAuthPolicy' in ctx.config
? ctx.config.appAuthPolicy
: undefined) ||
`${AuthPolicy.disabled}`;
const authHandler =
routeAuthPolicy === AuthPolicy.disabled
? undefined
: description.authHandler ||
(ctx?.config && 'appAuthHandler' in ctx.config
? ctx.config.appAuthHandler
: undefined);
registerRoute(
methodLower as HttpMethod,
routePath,
description,
authHandler,
config.transformOperation,
);
});
const mountPath = config.path ?? '/api/docs';
const options = config.swaggerUi;
const swaggerJsonPath = config.swaggerJsonPath;
return {
...routes,
[`MOUNT ${mountPath}`]: {
authPolicy: config.authPolicy ?? AuthPolicy.disabled,
handler: ({router}: Parameters<AppMountHandler>[0]) => {
const schema = getOpenApiSchema();
if (swaggerJsonPath) {
router.get(swaggerJsonPath, (_req, res) => {
res.json(schema);
});
const relativePath = swaggerJsonPath.startsWith('/')
? swaggerJsonPath.slice(1)
: swaggerJsonPath;
const asyncOptions = {
...options,
swaggerOptions: {
...options?.swaggerOptions,
url: relativePath,
},
};
router.use(
'/',
serveFiles(undefined, asyncOptions),
setup(null, asyncOptions),
);
} else {
router.use('/', serveFiles(schema), setup(schema, options));
}
},
},
};
}
return {
registerSecurityScheme,
getOpenApiSchema,
reset,
registerErrorHandler,
registerRoutes,
};
}
export type OpenApiRegistry = ReturnType<typeof createOpenApiRegistry>;