forked from fastify/fastify-swagger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstatic.js
64 lines (50 loc) · 1.86 KB
/
static.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
'use strict'
const path = require('path')
const fs = require('fs')
const yaml = require('js-yaml')
module.exports = function (fastify, opts, next) {
if (!opts.specification) return next(new Error('specification is missing in the module options'))
if (typeof opts.specification !== 'object') return next(new Error('specification is not an object'))
let swaggerObject = {}
if (!opts.specification.path) return next(new Error('specification.path is missing, should be path to the file'))
if (typeof opts.specification.path !== 'string') return next(new Error('specification.path is not a string'))
if (!fs.existsSync(path.resolve(opts.specification.path))) return next(new Error(`${opts.specification.path} does not exist`))
const extName = path.extname(opts.specification.path).toLowerCase()
if (['.yaml', '.json'].indexOf(extName) === -1) return next(new Error("specification.path extension name is not supported, should be one from ['.yaml', '.json']"))
// read
const source = fs.readFileSync(
path.resolve(opts.specification.path),
'utf8'
)
switch (extName) {
case '.yaml':
swaggerObject = yaml.safeLoad(source)
break
case '.json':
swaggerObject = JSON.parse(source)
break
}
fastify.decorate('swagger', swagger)
if (opts.exposeRoute === true) {
fastify.register(require('./routes'))
}
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
}
if (opts && opts.yaml) {
const swaggerString = yaml.safeDump(swaggerObject, { skipInvalid: true })
cache.swaggerString = swaggerString
return swaggerString
}
cache.swaggerObject = swaggerObject
return swaggerObject
}
next()
}