forked from fastify/fastify-swagger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dynamic.js
329 lines (274 loc) · 8.8 KB
/
dynamic.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
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
'use strict'
const fs = require('fs')
const path = require('path')
const yaml = require('js-yaml')
module.exports = function (fastify, opts, next) {
fastify.decorate('swagger', swagger)
const routes = []
fastify.addHook('onRoute', (routeOptions) => {
routes.push(routeOptions)
})
opts = opts || {}
opts.swagger = opts.swagger || {}
const info = opts.swagger.info || null
const host = opts.swagger.host || null
const schemes = opts.swagger.schemes || null
const consumes = opts.swagger.consumes || null
const produces = opts.swagger.produces || null
const definitions = opts.swagger.definitions || null
const basePath = opts.swagger.basePath || null
const securityDefinitions = opts.swagger.securityDefinitions || null
const security = opts.swagger.security || null
const tags = opts.swagger.tags || null
const externalDocs = opts.swagger.externalDocs || null
const transform = opts.transform || null
if (opts.exposeRoute === true) {
const prefix = opts.routePrefix || '/documentation'
fastify.register(require('./routes'), { prefix })
}
const cache = {
swaggerObject: null,
swaggerString: null
}
function swagger (opts) {
if (opts && opts.yaml) {
if (cache.swaggerString) return cache.swaggerString
} else {
if (cache.swaggerObject) return cache.swaggerObject
}
const swaggerObject = {}
var pkg
try {
pkg = JSON.parse(fs.readFileSync(path.join(__dirname, 'package.json')))
} catch (err) {
return next(err)
}
// Base swagger info
// this info is displayed in the swagger file
// in the same order as here
swaggerObject.swagger = '2.0'
if (info) {
swaggerObject.info = info
} else {
swaggerObject.info = {
version: '1.0.0',
title: pkg.name || ''
}
}
if (host) swaggerObject.host = host
if (schemes) swaggerObject.schemes = schemes
if (basePath) swaggerObject.basePath = basePath
if (consumes) swaggerObject.consumes = consumes
if (produces) swaggerObject.produces = produces
if (definitions) swaggerObject.definitions = definitions
if (securityDefinitions) {
swaggerObject.securityDefinitions = securityDefinitions
}
if (security) {
swaggerObject.security = security
}
if (tags) {
swaggerObject.tags = tags
}
if (externalDocs) {
swaggerObject.externalDocs = externalDocs
}
swaggerObject.paths = {}
for (var route of routes) {
if (route.schema && route.schema.hide) {
continue
}
const schema = transform
? transform(route.schema)
: route.schema
const path = route.url.startsWith(basePath)
? route.url.replace(basePath, '')
: route.url
const url = formatParamUrl(path)
const swaggerRoute = swaggerObject.paths[url] || {}
const swaggerMethod = {}
const parameters = []
// route.method should be either a String, like 'POST', or an Array of Strings, like ['POST','PUT','PATCH']
const methods = typeof route.method === 'string' ? [route.method] : route.method
for (var method of methods) {
swaggerRoute[method.toLowerCase()] = swaggerMethod
}
// All the data the user can give us, is via the schema object
if (schema) {
// the resulting schema will be in this order
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) {
getQueryParams(parameters, schema.querystring)
}
if (schema.body) {
const consumesAllFormOnly =
consumesFormOnly(schema) || consumesFormOnly(swaggerObject)
consumesAllFormOnly
? getFormParams(parameters, schema.body)
: getBodyParams(parameters, schema.body)
}
if (schema.params) {
getPathParams(parameters, schema.params)
}
if (schema.headers) {
getHeaderParams(parameters, schema.headers)
}
if (parameters.length) {
swaggerMethod.parameters = parameters
}
if (schema.deprecated) {
swaggerMethod.deprecated = schema.deprecated
}
if (schema.security) {
swaggerMethod.security = schema.security
}
}
swaggerMethod.responses = genResponse(schema ? schema.response : null)
if (swaggerRoute) {
swaggerObject.paths[url] = swaggerRoute
}
}
if (opts && opts.yaml) {
const swaggerString = yaml.safeDump(swaggerObject, { skipInvalid: true })
cache.swaggerString = swaggerString
return swaggerString
}
cache.swaggerObject = swaggerObject
return swaggerObject
}
next()
}
function consumesFormOnly (schema) {
const consumes = schema.consumes
return (
consumes &&
consumes.length === 1 &&
(consumes[0] === 'application/x-www-form-urlencoded' ||
consumes[0] === 'multipart/form-data')
)
}
function getQueryParams (parameters, query) {
if (query.type && query.properties) {
// for the shorthand querystring declaration
const queryProperties = Object.keys(query.properties).reduce((acc, h) => {
const required = (query.required && query.required.indexOf(h) >= 0) || false
const newProps = Object.assign({}, query.properties[h], { required })
return Object.assign({}, acc, { [h]: newProps })
}, {})
return getQueryParams(parameters, queryProperties)
}
Object.keys(query).forEach(prop => {
const obj = query[prop]
const param = obj
param.name = prop
param.in = 'query'
parameters.push(param)
})
}
function getBodyParams (parameters, body) {
const param = {}
param.name = 'body'
param.in = 'body'
param.schema = body
parameters.push(param)
}
function getFormParams (parameters, body) {
const formParamsSchema = body.properties
if (formParamsSchema) {
Object.keys(formParamsSchema).forEach(name => {
const param = formParamsSchema[name]
delete param.$id
param.in = 'formData'
param.name = name
parameters.push(param)
})
}
}
function getPathParams (parameters, params) {
if (params.type && params.properties) {
// for the shorthand querystring declaration
return getPathParams(parameters, params.properties)
}
Object.keys(params).forEach(p => {
const param = Object.assign({}, params[p])
param.name = p
param.in = 'path'
param.required = true
parameters.push(param)
})
}
function getHeaderParams (parameters, headers) {
if (headers.type && headers.properties) {
// for the shorthand querystring declaration
const headerProperties = Object.keys(headers.properties).reduce((acc, h) => {
const required = (headers.required && headers.required.indexOf(h) >= 0) || false
const newProps = Object.assign({}, headers.properties[h], { required })
return Object.assign({}, acc, { [h]: newProps })
}, {})
return getHeaderParams(parameters, headerProperties)
}
Object.keys(headers).forEach(h =>
parameters.push({
name: h,
in: 'header',
required: headers[h].required,
description: headers[h].description,
type: headers[h].type
})
)
}
function genResponse (response) {
// if the user does not provided an out schema
if (!response) {
return { 200: { description: 'Default Response' } }
}
// remove previous references
response = Object.assign({}, response)
Object.keys(response).forEach(key => {
if (response[key].type) {
var rsp = response[key]
var description = response[key].description
var headers = response[key].headers
response[key] = {
schema: rsp
}
response[key].description = description || 'Default Response'
if (headers) response[key].headers = headers
}
if (!response[key].description) {
response[key].description = 'Default Response'
}
})
return response
}
// The swagger standard does not accept the url param with ':'
// so '/user/:id' is not valid.
// This function converts the url in a swagger compliant url string
// => '/user/{id}'
function formatParamUrl (url) {
var start = url.indexOf('/:')
if (start === -1) return url
var end = url.indexOf('/', ++start)
if (end === -1) {
return url.slice(0, start) + '{' + url.slice(++start) + '}'
} else {
return formatParamUrl(url.slice(0, start) + '{' + url.slice(++start, end) + '}' + url.slice(end))
}
}