-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
84 lines (71 loc) · 2.81 KB
/
index.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
import { existsSync } from 'fs'
import { fastifyAutoload } from '@fastify/autoload'
import openapiGlue from 'fastify-openapi-glue'
import fastifyPlugin from 'fastify-plugin'
import { resolveRefs } from 'json-refs'
import yamljs from 'yamljs'
async function openapiAutoload (fastify, options = {}) {
const { handlersDir, openapiOpts = {}, makeSecurityHandlers, makeOperationResolver } = options
const { specification, operationResolver = null } = openapiOpts
// Validate handlers directory
if (!handlersDir || !existsSync(handlersDir)) {
throw new Error('fastify-openapi-autoload: Missing or invalid `handlersDir`. Please specify a valid directory where your handlers are located.')
}
// Validate OpenAPI specification
if (!specification || !existsSync(specification)) {
throw new Error('fastify-openapi-autoload: Missing or invalid `openapi.specification`. Please provide a valid OpenAPI specification.')
}
try {
// Register handlers with fastifyAutoload
fastify.register(fastifyAutoload, {
dir: handlersDir,
maxDepth: 1,
dirNameRoutePrefix: false,
encapsulate: false,
options
})
const openapiGlueOpts = {
operationResolver: operationResolver || defaultResolverFactory(fastify),
...openapiOpts
}
// Factory/creator functions for security handlers & operation resolver
if (makeSecurityHandlers) {
openapiGlueOpts.securityHandlers = makeSecurityHandlers(fastify, options)
}
if (makeOperationResolver) {
openapiGlueOpts.operationResolver = makeOperationResolver(fastify, options)
}
// Resolve multi-file OpenAPI specification
const isYamlSpec = specification.endsWith('.yaml') || specification.endsWith('.yml')
if (typeof specification === 'string' && isYamlSpec) {
const root = yamljs.load(specification)
const results = await resolveRefs(root, {
filter: ['relative'],
location: specification,
loaderOptions: {
processContent (res, callback) {
callback(null, yamljs.parse(res.text))
}
}
})
openapiGlueOpts.specification = results.resolved
}
// Register openapiGlue for OpenAPI integration
fastify.register(openapiGlue, openapiGlueOpts)
} catch (error) {
const errorMessage = `fastify-openapi-autoload: Error registering plugins - ${error.message}`
fastify.log.error(errorMessage)
throw new Error(errorMessage)
}
}
function defaultResolverFactory (fastify) {
return (operationId) => {
fastify.log.info(`fastify-openapi-autoload - has '${operationId}' decorator: ${fastify.hasDecorator(operationId)}`)
return fastify[operationId]
}
}
const fastifyOpenapiAutoload = fastifyPlugin(openapiAutoload, {
name: 'fastify-openapi-autoload'
})
export { fastifyOpenapiAutoload }
export default fastifyOpenapiAutoload