Skip to content
Snippets Groups Projects
cli.js 6.25 KiB
Newer Older
  • Learn to ignore specific revisions
  • #! /usr/bin/env node
    /**
     * Copyright 2017 Adobe Systems Incorporated. All rights reserved.
     * This file is licensed to you under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License. You may obtain a copy
     * of the License at http://www.apache.org/licenses/LICENSE-2.0
     */
    
    var Promise = require('bluebird');
    var path = require('path');
    var _ = require('lodash');
    var fs = Promise.promisifyAll(require('fs'));
    var readdirp = require('readdirp');
    var Ajv = require('ajv');
    
    var logger = require('winston');
    
    
    var Schema = require('./lib/schema');
    var readSchemaFile = require('./lib/readSchemaFile');
    
    // parse/process command line arguments
    var argv = require('optimist')
    
    filmaj's avatar
    filmaj committed
      .usage('Generate Markdown documentation from JSON Schema.\n\nUsage: $0')
      .demand('d')
      .alias('d', 'input')
      // TODO: is baseURL still a valid parameter?
    
      .describe('d', 'path to directory containing all JSON Schemas or a single JSON Schema file. This will be considered as the baseURL. By default only files ending in .schema.json will be processed, unless the schema-extension is set with the -e flag.')
    
    filmaj's avatar
    filmaj committed
      .alias('o', 'out')
      .describe('o', 'path to output directory')
      .default('o', path.resolve(path.join('.', 'out')))
      .alias('m', 'meta')
    
      .describe('m', 'add metadata elements to .md files Eg -m template=reference. Multiple values can be added by repeating the flag Eg: -m template=reference -m hide-nav=true')
      .alias('s', 'metaSchema')
    
    filmaj's avatar
    filmaj committed
      .describe('s', 'Custom meta schema path to validate schemas')
      .alias('x', 'schema-out')
    
      .describe('x', 'output JSON Schema files including description and validated examples in the _new folder at output directory, or suppress with -')
    
      .alias('e', 'schema-extension')
      .describe('e', 'JSON Schema file extension eg. schema.json or json')
    
      .alias('n', 'no-readme')
    
      .describe('v', 'JSON Schema Draft version to use. Supported: 04, 06, 07 (default)')
      .alias('v', 'draft')
      .default('v', '07')
    
      .describe('n', 'Do not generate a README.md file in the output directory')
    
      .describe('link-*', 'Add this file as a link the explain the * attribute, e.g. --link-abstract=abstract.md')
    
      .check(function(args) {
    
    filmaj's avatar
    filmaj committed
        if (!fs.existsSync(args.input)) {
          throw 'Input file "' + args.input + '" does not exist!';
        }
        if (args.s && !fs.existsSync(args.s)) {
          throw 'Meta schema file "' + args.s + '" does not exist!';
        }
      })
    
      .alias('i', 'i18n')
      .describe('i', 'path to a locales folder with an en.json file in it. This file will be used for all text parts in all templates')
    
      .alias('h', 'header')
      .describe('h', 'if the value is false the header will be skipped')
      .default('h', true)
    
    filmaj's avatar
    filmaj committed
      .argv;
    
    const docs = _.fromPairs(_.toPairs(argv).filter(([ key, value ]) => { return key.startsWith('link-'); }).map(([ key, value ]) => { return [ key.substr(5), value ];}));
    
    const i18n = require('i18n');
    
    logger.configure({
    
      level: 'info',
    
      format: logger.format.combine(
        logger.format.splat(),
        logger.format.simple()
    
      ),
      transports: [
    
        new logger.transports.Console({})
    
      ]
    });
    
    var ajv = new Ajv({ allErrors: true, messages:true, schemaId: 'auto', logger: logger });
    
    console.log(argv.v);
    if (argv.v === '06'||argv.v === 6) {
      console.log('enabling draft-06 support');
      ajv.addMetaSchema(require('ajv/lib/refs/json-schema-draft-06.json'));
    } else if (argv.v === '04' || argv.v === 4) {
      ajv.addMetaSchema(require('ajv/lib/refs/json-schema-draft-04.json'));
    }
    
    var schemaPathMap = {};
    var metaElements = {};
    var schemaPath = path.resolve(argv.d);
    var outDir = path.resolve(argv.o);
    
    var schemaDir = argv.x === '-' ? '' : argv.x ? path.resolve(argv.x) : outDir;
    
    var target = fs.statSync(schemaPath);
    
    const readme = argv.n !== true;
    
    const schemaExtension = argv.e || 'schema.json';
    
    filmaj's avatar
    filmaj committed
    if (argv.s){
    
      ajv.addMetaSchema(require(path.resolve(argv.s)));
    }
    
    if (argv.m) {
    
    filmaj's avatar
    filmaj committed
      if (_.isArray(argv.m)){
    
        _.each(argv.m, function(item){
    
          var meta=item.split('=');
          if (meta.length === 2) {
            metaElements[meta[0]] = meta[1];
          }
        });
      } else {
        var meta=(argv.m).split('=');
        if (meta.length === 2) {
          metaElements[meta[0]] = meta[1];
        }
      }
    }
    
    let i18nPath;
    if (argv !== undefined && argv.i !== undefined){
      i18nPath=path.resolve(argv.i) ;
    } else {
      i18nPath=path.resolve(path.join(__dirname, 'lib/locales'));
    }
    i18n.configure({
      // setup some locales - other locales default to en silently
      locales:[ 'en' ],
      // where to store json files - defaults to './locales' relative to modules directory
      directory: i18nPath,
      defaultLocale: 'en'
    });
    
    
    logger.info('output directory: %s', outDir);
    if (target.isDirectory()) {
      // the ajv json validator will be passed into the main module to help with processing
      var files=[];
    
      readdirp(schemaPath, { root: schemaPath, fileFilter: `*.${schemaExtension}` })
    
        .on('data', entry => {
    
    filmaj's avatar
    filmaj committed
          files.push(entry.fullPath);
    
          try {
            ajv.addSchema(require(entry.fullPath), entry.fullPath);
    
    Anjan Kaur's avatar
    Anjan Kaur committed
          } catch (e){
            logger.error('Ajv processing error for schema at path %s', entry.fullPath);
    
            logger.error(e);
            process.exit(1);
          }
    
    filmaj's avatar
    filmaj committed
        })
    
        .on('end', () => {
    
    filmaj's avatar
    filmaj committed
          Schema.setAjv(ajv);
          Schema.setSchemaPathMap(schemaPathMap);
          return Promise.reduce(files, readSchemaFile, schemaPathMap)
    
            .then(schemaMap => {
    
              logger.info('finished reading all *.%s files in %s, beginning processing….', schemaExtension, schemaPath);
    
              return Schema.process(schemaMap, schemaPath, outDir, schemaDir, metaElements, readme, docs, argv);
    
    filmaj's avatar
    filmaj committed
            })
            .then(() => {
              logger.info('Processing complete.');
            })
    
            .catch(err => {
    
    filmaj's avatar
    filmaj committed
              logger.error(err);
              process.exit(1);
            });
        })
    
        .on('error', err => {
    
    filmaj's avatar
    filmaj committed
          logger.error(err);
          process.exit(1);
        });
    } else {
      readSchemaFile(schemaPathMap, schemaPath)
    
        .then(schemaMap => {
    
    filmaj's avatar
    filmaj committed
          ajv.addSchema(require(schemaPath), schemaPath);
          Schema.setAjv(ajv);
          Schema.setSchemaPathMap(schemaPathMap);
          logger.info('finished reading %s, beginning processing....', schemaPath);
    
          return Schema.process(schemaMap, schemaPath, outDir, schemaDir, metaElements, false, docs, argv);
    
        })
        .then(() => {
          logger.info('Processing complete.');
        })
    
        .catch(err => {