2022-02-16 17:42:50 +01:00
|
|
|
const swaggerJsdoc = require("swagger-jsdoc")
|
|
|
|
const { join } = require("path")
|
|
|
|
const { writeFileSync } = require("fs")
|
|
|
|
|
2022-02-17 13:40:08 +01:00
|
|
|
const VARIABLES = {}
|
2022-02-16 17:42:50 +01:00
|
|
|
|
|
|
|
const options = {
|
|
|
|
definition: {
|
|
|
|
openapi: "3.0.0",
|
|
|
|
info: {
|
|
|
|
title: "Budibase API",
|
|
|
|
description: "The public API for Budibase apps and its services.",
|
|
|
|
version: "1.0.0",
|
|
|
|
},
|
|
|
|
servers: [
|
|
|
|
{
|
2022-02-17 13:40:08 +01:00
|
|
|
url: "http://budibase.app/api/public/v1",
|
2022-02-16 17:42:50 +01:00
|
|
|
description: "Budibase Cloud API",
|
|
|
|
},
|
2022-02-17 13:40:08 +01:00
|
|
|
{
|
|
|
|
url: "http://localhost:10000/api/public/v1",
|
|
|
|
description: "Budibase self hosted API",
|
|
|
|
},
|
2022-02-16 17:42:50 +01:00
|
|
|
],
|
|
|
|
},
|
|
|
|
format: "json",
|
2022-02-16 19:23:38 +01:00
|
|
|
apis: [join(__dirname, "..", "src", "api", "routes", "public", "*.js")],
|
2022-02-16 17:42:50 +01:00
|
|
|
}
|
|
|
|
|
2022-02-17 13:40:08 +01:00
|
|
|
function writeFile(output, { isJson } = {}) {
|
|
|
|
try {
|
|
|
|
const filename = isJson ? "openapi.json" : "openapi.yaml"
|
|
|
|
const path = join(__dirname, filename)
|
|
|
|
let spec = output
|
|
|
|
if (isJson) {
|
|
|
|
spec = JSON.stringify(output, null, 2)
|
|
|
|
}
|
|
|
|
// input the static variables
|
|
|
|
for (let [key, replacement] of Object.entries(VARIABLES)) {
|
|
|
|
spec = spec.replace(new RegExp(`{${key}}`, "g"), replacement)
|
|
|
|
}
|
|
|
|
writeFileSync(path, spec)
|
|
|
|
console.log(`Wrote spec to ${path}`)
|
|
|
|
} catch (err) {
|
|
|
|
console.error(err)
|
2022-02-16 19:23:38 +01:00
|
|
|
}
|
2022-02-16 17:42:50 +01:00
|
|
|
}
|
2022-02-17 13:40:08 +01:00
|
|
|
|
|
|
|
const outputJSON = swaggerJsdoc(options)
|
|
|
|
options.format = "yaml"
|
|
|
|
const outputYAML = swaggerJsdoc(options)
|
|
|
|
console.log(outputYAML)
|
|
|
|
writeFile(outputJSON)
|
|
|
|
writeFile(outputYAML)
|