as-services/libs/common/oapi/spec-asyncapi/index.js

64 lines
1.4 KiB
JavaScript

const createOptions = require("utils/schema/options")
const optionsSchema = createOptions({
defaults: {
protocol: "ws",
host: "0.0.0.0",
port: 4000,
path: "/",
},
})
async function createApiSpecV1(options = {}) {
optionsSchema(options)
if (process.env.EXTERNAL_PROTOCOL) {
options.protocol = process.env.EXTERNAL_PROTOCOL
}
if (process.env.EXTERNAL_HOST) {
options.host = process.env.EXTERNAL_HOST
}
if (process.env.EXTERNAL_PORT) {
options.port = process.env.EXTERNAL_PORT
}
const apiSpec = {
asyncapi: "3.0.0",
info: {
title: "HelpMe Project API",
version: "1.0.0",
description: "HelpMe Project OpenAPI 3.",
license: {
name: "DEF",
url: "https://devthefuture.org/DEF-LICENSE.md",
},
contact: {
name: "Jo",
email: "jo@devthefuture.org",
// url: "https://",
},
},
servers: {
main: {
host: `${options.host}:${options.port}`,
protocol: options.protocol,
pathname: options.path,
bindings: {
ws: {
query: {
type: "object",
description: "websocket server",
properties: {},
},
},
},
},
},
components: {
schemas: {},
},
channels: {},
}
return apiSpec
}
module.exports = createApiSpecV1