forked from github/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
openapi-check.js
executable file
·57 lines (48 loc) · 1.76 KB
/
openapi-check.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
#!/usr/bin/env node
// [start-readme]
//
// Run this script to check if OpenAPI files can be decorated successfully.
//
// [end-readme]
import fs from 'fs'
import path from 'path'
import glob from 'glob'
import { program } from 'commander'
import getOperations from './utils/get-operations.js'
program
.description('Generate dereferenced OpenAPI and decorated schema files.')
.requiredOption(
'-f, --files [files...]',
'A list of OpenAPI description files to check. Can parse literal glob patterns.'
)
.parse(process.argv)
const filenames = program.opts().files
const filesToCheck = filenames.flatMap((filename) => glob.sync(filename))
if (filesToCheck.length) {
check(filesToCheck)
} else {
console.log('No files to verify.')
process.exit(1)
}
async function check(files) {
console.log('Verifying OpenAPI files are valid with decorator')
const documents = files.map((filename) => [
filename,
JSON.parse(fs.readFileSync(path.join(process.cwd(), filename))),
])
for (const [filename, schema] of documents) {
try {
// munge OpenAPI definitions object in an array of operations objects
const operations = await getOperations(schema)
// process each operation, asynchronously rendering markdown and stuff
await Promise.all(operations.map((operation) => operation.process()))
console.log(`Successfully could decorate OpenAPI operations for document ${filename}`)
} catch (error) {
console.error(error)
console.log(
`🐛 Whoops! It looks like the decorator script wasn't able to parse the dereferenced schema in file ${filename}. A recent change may not yet be supported by the decorator. Please reach out in the #docs-engineering slack channel for help.`
)
process.exit(1)
}
}
}