0.3.7 • Published 5 years ago

swagger-model-generator-ts v0.3.7

Weekly downloads
6
License
MIT
Repository
github
Last release
5 years ago

swagger-model-generator-ts

Generate swagger model definition from orm model

This module reads model schema which is created from orm model and generate swagger model definition document

CURRENT VERSION ONLY SUPPORTS SEQUELIZE ORM

Install

npm install swagger-model-generator-ts

Generate from sequlize

Generate swagger model definitions with orm model

import * as swaggerGenerator from 'swagger-model-generator-ts';

/**
 * Below code must be executed after synchronizing and initiating ORM models
 * In this example we will use model name Sample with sequelize orm
 */

swaggerGenerator.generate('Initialized Sequelize Object', {
  path: 'path/to/models.js',
  type: 'sequelize'
});

Create swagger ui and execute swagger server with generated swagger documentation in given path

import swaggerJSDoc from 'swagger-jsdoc';
const options = {
  swaggerDefinition: {},
  apis: ['given/path/in/option'] // Path to the API docs
};

export const swaggerSpec = swaggerJSDoc(options);

// swagger documentation router
app.use('/api-docs', swaggerUi.serve, swaggerUi.setup(swaggerSpec));

Generate from Joi

Generate from models

Generate swagger model definitions with Joi Schema

import * as swaggerGenerator from 'swagger-model-generator-ts';

/**
 * In this example Sample is Joi Schema
 */
let Sample = Joi.object()
  .tags('Sample')
  .keys({
    sample: Joi.string().required().description('sample datas')
  }));

swaggerGenerator.generate([Sample], {
  path: 'path/to/schemas.js',
  type: 'joi'
});

Generate from directory

You can generate swagger model definitions from Joi schema directories

let files = fs.readdirSync('absolute/path/to/joi/schemas');
let schemas = [];
for (let file of files) {
  let fileObj = require('relative/path/to/joi/schemas' + file);

  for (let key in fileObj) {
    if (typeof fileObj[key] === 'object') {
      let model = fileObj[key];
      model = model.tags(file.split('.')[0]);

      schemas.push(model);
    }
  }
}

swaggerGenerator.generate(schemas, {
  path: 'path/to/schemas.js',
  type: 'joi'
});

Create swagger ui and execute swagger server with generated swagger documentation in given path

import swaggerJSDoc from 'swagger-jsdoc';
const options = {
  swaggerDefinition: {},
  apis: ['path/to/schemas.js'] // Path to the API docs
};

export const swaggerSpec = swaggerJSDoc(options);

// swagger documentation router
app.use('/api-docs', swaggerUi.serve, swaggerUi.setup(swaggerSpec));

Extend model definitions

You can extend your model definition generated from generator by swagger allOf keyword

extended.js

/**
 * @swagger
 * definitions:
 *   ExtendedUser:
 *     allOf:
 *       - $ref: '#/definitions/User'
 *       - type: object
 *       - properties:
 *           examples:
 *             type: array
 *             items:
 *               $ref: '#/definitions/Example'
 */

add extended.js to the swagger configuration

{
  swaggerDefinition: {
  },
  apis: [
    './src/infra/swagger/extended.js'
  ] // Path to the API docs
}

Result

models.js

/**
 * @swagger
 * definitions:
 *   Sample1:
 *     type: object
 *     required:
 *       - id
 *     properties:
 *       id:
 *         type: string
 *         description: sample data!
 *         enum:
 *           - Property
 *   Sample2:
 *     type: object
 *     required:
 *       - id
 *     properties:
 *       id:
 *         type: string
 *         enum:
 *           - Property
 */
0.3.7

5 years ago

0.3.6

5 years ago

0.3.5

5 years ago

0.3.4

5 years ago

0.3.3

5 years ago

0.3.2

5 years ago

0.3.1

5 years ago

0.3.0

5 years ago

0.2.9

5 years ago

0.2.8

5 years ago

0.2.7

5 years ago

0.2.6

5 years ago

0.2.5

5 years ago

0.2.4

5 years ago

0.2.3

5 years ago

0.2.2

5 years ago

0.2.1

5 years ago

0.2.0

5 years ago

0.1.9

5 years ago

0.1.8

5 years ago

0.1.7

5 years ago

0.1.6

5 years ago

0.1.5

5 years ago

0.1.4

5 years ago

0.1.3

5 years ago

0.1.2

5 years ago

0.1.1

5 years ago

0.0.9

5 years ago

0.0.8

5 years ago

0.0.7

5 years ago

0.0.6

5 years ago

0.0.5

5 years ago

0.0.4

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago