1
0
Fork 0
mirror of synced 2024-06-29 11:31:06 +12:00
budibase/packages/server/specs/generate.js

95 lines
2.2 KiB
JavaScript
Raw Normal View History

2022-02-17 05:42:50 +13:00
const swaggerJsdoc = require("swagger-jsdoc")
const { join } = require("path")
const { writeFileSync } = require("fs")
const { examples, schemas } = require("./resources")
const parameters = require("./parameters")
const security = require("./security")
2022-02-17 05:42:50 +13:00
2022-02-18 01:40:08 +13:00
const VARIABLES = {}
2022-02-17 05:42:50 +13: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-03-08 05:41:22 +13:00
url: "https://budibase.app/api/public/v1",
2022-02-17 05:42:50 +13:00
description: "Budibase Cloud API",
},
2022-02-18 01:40:08 +13:00
{
url: "{protocol}://{hostname}/api/public/v1",
2022-02-18 01:40:08 +13:00
description: "Budibase self hosted API",
variables: {
protocol: {
default: "http",
description:
"Whether HTTP or HTTPS should be used to communicate with your Budibase instance.",
},
hostname: {
default: "localhost:10000",
description: "The URL of your Budibase instance.",
},
},
2022-02-18 01:40:08 +13:00
},
2022-02-17 05:42:50 +13:00
],
2022-02-18 07:58:09 +13:00
components: {
parameters: {
...parameters,
},
2022-02-18 07:58:09 +13:00
examples: {
...examples,
},
securitySchemes: {
...security,
2022-02-18 07:58:09 +13:00
},
schemas: {
...schemas,
},
2022-02-18 07:58:09 +13:00
},
security: [
{
ApiKeyAuth: [],
},
],
2022-02-17 05:42:50 +13:00
},
2022-02-18 07:58:09 +13:00
format: ".json",
2022-02-25 07:15:13 +13:00
apis: [join(__dirname, "..", "src", "api", "routes", "public", "*.ts")],
2022-02-17 05:42:50 +13:00
}
function writeFile(output, filename) {
2022-02-18 01:40:08 +13:00
try {
const path = join(__dirname, filename)
let spec = output
if (filename.endsWith("json")) {
2022-02-18 01:40:08 +13:00
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}`)
return path
2022-02-18 01:40:08 +13:00
} catch (err) {
console.error(err)
2022-02-17 07:23:38 +13:00
}
2022-02-17 05:42:50 +13:00
}
2022-02-18 01:40:08 +13:00
function run() {
const outputJSON = swaggerJsdoc(options)
options.format = ".yaml"
const outputYAML = swaggerJsdoc(options)
writeFile(outputJSON, "openapi.json")
return writeFile(outputYAML, "openapi.yaml")
}
if (require.main === module) {
run()
}
module.exports = run