UNPKG

fastify-swagger

Version:

Serve Swagger/OpenAPI documentation for Fastify, supporting dynamic generation

271 lines (238 loc) 8.67 kB
'use strict' const { readPackageJson, formatParamUrl, resolveLocalRef } = require('../../util/common') const { xResponseDescription, xConsume } = require('../../constants') function prepareDefaultOptions (opts) { const swagger = opts.swagger const info = swagger.info || null const host = swagger.host || null const schemes = swagger.schemes || null const consumes = swagger.consumes || null const produces = swagger.produces || null const definitions = swagger.definitions || null const basePath = swagger.basePath || null const securityDefinitions = swagger.securityDefinitions || null const security = swagger.security || null const tags = swagger.tags || null const externalDocs = swagger.externalDocs || null const stripBasePath = opts.stripBasePath const transform = opts.transform const hiddenTag = opts.hiddenTag const hideUntagged = opts.hideUntagged const extensions = [] for (const [key, value] of Object.entries(opts.swagger)) { if (key.startsWith('x-')) { extensions.push([key, value]) } } return { info, host, schemes, consumes, produces, definitions, basePath, securityDefinitions, security, tags, externalDocs, stripBasePath, transform, hiddenTag, extensions, hideUntagged } } function prepareSwaggerObject (opts) { const pkg = readPackageJson() const swaggerObject = { swagger: '2.0', info: { version: pkg.version || '1.0.0', title: pkg.name || '' }, definitions: {}, paths: {} } if (opts.info) swaggerObject.info = opts.info if (opts.host) swaggerObject.host = opts.host if (opts.schemes) swaggerObject.schemes = opts.schemes if (opts.basePath) swaggerObject.basePath = opts.basePath if (opts.consumes) swaggerObject.consumes = opts.consumes if (opts.produces) swaggerObject.produces = opts.produces if (opts.definitions) swaggerObject.definitions = opts.definitions if (opts.securityDefinitions) swaggerObject.securityDefinitions = opts.securityDefinitions if (opts.security) swaggerObject.security = opts.security if (opts.tags) swaggerObject.tags = opts.tags if (opts.externalDocs) swaggerObject.externalDocs = opts.externalDocs for (const [key, value] of opts.extensions) { // "x-" extension can not be typed swaggerObject[key] = value } return swaggerObject } function normalizeUrl (url, basePath, stripBasePath) { let path if (stripBasePath && url.startsWith(basePath)) { path = url.replace(basePath, '') } else { path = url } if (!path.startsWith('/')) { path = '/' + String(path) } return formatParamUrl(path) } // For supported keys read: // https://swagger.io/docs/specification/2-0/describing-parameters/ function plainJsonObjectToSwagger2 (container, jsonSchema, externalSchemas) { const obj = resolveLocalRef(jsonSchema, externalSchemas) let toSwaggerProp switch (container) { case 'query': toSwaggerProp = function (propertyName, jsonSchemaElement) { // complex serialization is not supported by swagger if (jsonSchemaElement[xConsume]) { throw new Error('Complex serialization is not supported by Swagger. ' + 'Remove "' + xConsume + '" for "' + propertyName + '" querystring schema or ' + 'change specification to OpenAPI') } jsonSchemaElement.in = container jsonSchemaElement.name = propertyName return jsonSchemaElement } break case 'formData': toSwaggerProp = function (propertyName, jsonSchemaElement) { delete jsonSchemaElement.$id jsonSchemaElement.in = container jsonSchemaElement.name = propertyName // https://json-schema.org/understanding-json-schema/reference/non_json_data.html#contentencoding if (jsonSchemaElement.contentEncoding === 'binary') { delete jsonSchemaElement.contentEncoding // Must be removed jsonSchemaElement.type = 'file' } return jsonSchemaElement } break case 'path': toSwaggerProp = function (propertyName, jsonSchemaElement) { jsonSchemaElement.in = container jsonSchemaElement.name = propertyName jsonSchemaElement.required = true return jsonSchemaElement } break case 'header': toSwaggerProp = function (propertyName, jsonSchemaElement) { return { in: 'header', name: propertyName, required: jsonSchemaElement.required, description: jsonSchemaElement.description, type: jsonSchemaElement.type } } break } return Object.keys(obj).map((propKey) => { return toSwaggerProp(propKey, obj[propKey]) }) } function isConsumesFormOnly (schema) { const consumes = schema.consumes return ( consumes && consumes.length === 1 && (consumes[0] === 'application/x-www-form-urlencoded' || consumes[0] === 'multipart/form-data') ) } function resolveBodyParams (parameters, schema, ref) { const resolved = ref.resolve(schema) parameters.push({ name: 'body', in: 'body', schema: resolved }) } function resolveCommonParams (container, parameters, schema, ref, sharedSchemas) { const resolved = ref.resolve(schema) const arr = plainJsonObjectToSwagger2(container, resolved, sharedSchemas) arr.forEach(swaggerSchema => parameters.push(swaggerSchema)) } // https://swagger.io/docs/specification/2-0/describing-responses/ function resolveResponse (fastifyResponseJson, ref) { // if the user does not provided an out schema if (!fastifyResponseJson) { return { 200: { description: 'Default Response' } } } const responsesContainer = {} const statusCodes = Object.keys(fastifyResponseJson) statusCodes.forEach(statusCode => { const rawJsonSchema = fastifyResponseJson[statusCode] const resolved = ref.resolve(rawJsonSchema) // 2xx is not supported by swagger const deXXStatusCode = statusCode.toUpperCase().replace('XX', '00') // conflict when we have both 2xx and 200 if (statusCode.toUpperCase().includes('XX') && statusCodes.includes(deXXStatusCode)) { return } statusCode = deXXStatusCode const response = { description: rawJsonSchema[xResponseDescription] || rawJsonSchema.description || 'Default Response' } // add headers when there are any. if (rawJsonSchema.headers) { response.headers = rawJsonSchema.headers // remove invalid field delete resolved.headers } // add schema when status code is not 204 if (statusCode.toString() !== '204') { const schema = { ...resolved } delete schema[xResponseDescription] response.schema = schema } responsesContainer[statusCode] = response }) return responsesContainer } function prepareSwaggerMethod (schema, ref, swaggerObject) { const swaggerMethod = {} const parameters = [] // All the data the user can give us, is via the schema object if (schema) { if (schema.operationId) swaggerMethod.operationId = schema.operationId if (schema.summary) swaggerMethod.summary = schema.summary if (schema.description) swaggerMethod.description = schema.description if (schema.tags) swaggerMethod.tags = schema.tags if (schema.produces) swaggerMethod.produces = schema.produces if (schema.consumes) swaggerMethod.consumes = schema.consumes if (schema.querystring) resolveCommonParams('query', parameters, schema.querystring, ref, swaggerObject.definitions) if (schema.body) { const isConsumesAllFormOnly = isConsumesFormOnly(schema) || isConsumesFormOnly(swaggerObject) isConsumesAllFormOnly ? resolveCommonParams('formData', parameters, schema.body, ref, swaggerObject.definitions) : resolveBodyParams(parameters, schema.body, ref) } if (schema.params) resolveCommonParams('path', parameters, schema.params, ref, swaggerObject.definitions) if (schema.headers) resolveCommonParams('header', parameters, schema.headers, ref, swaggerObject.definitions) if (parameters.length > 0) swaggerMethod.parameters = parameters if (schema.deprecated) swaggerMethod.deprecated = schema.deprecated if (schema.security) swaggerMethod.security = schema.security for (const key of Object.keys(schema)) { if (key.startsWith('x-')) { swaggerMethod[key] = schema[key] } } } swaggerMethod.responses = resolveResponse(schema ? schema.response : null, ref) return swaggerMethod } module.exports = { prepareDefaultOptions, prepareSwaggerObject, prepareSwaggerMethod, normalizeUrl }