35 lines
880 B
JavaScript
35 lines
880 B
JavaScript
'use strict'
|
|
|
|
const fp = require('fastify-plugin')
|
|
const { formatParamUrl } = require('./lib/util/format-param-url')
|
|
|
|
function fastifySwagger (fastify, opts, next) {
|
|
// by default the mode is dynamic, as plugin initially was developed
|
|
opts.mode = opts.mode || 'dynamic'
|
|
|
|
switch (opts.mode) {
|
|
case 'static': {
|
|
const setup = require('./lib/mode/static')
|
|
setup(fastify, opts, next)
|
|
break
|
|
}
|
|
case 'dynamic': {
|
|
const setup = require('./lib/mode/dynamic')
|
|
setup(fastify, opts, next)
|
|
break
|
|
}
|
|
default: {
|
|
return next(new Error("unsupported mode, should be one of ['static', 'dynamic']"))
|
|
}
|
|
}
|
|
}
|
|
|
|
module.exports = fp(fastifySwagger, {
|
|
fastify: '5.x',
|
|
name: '@fastify/swagger'
|
|
})
|
|
module.exports.fastifySwagger = fastifySwagger
|
|
module.exports.default = fastifySwagger
|
|
|
|
module.exports.formatParamUrl = formatParamUrl
|