-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.js
130 lines (110 loc) · 3.59 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
var fs = require("fs");
var path = require("path");
var ramlParser = require('raml-1-parser');
var program = require('commander');
var _ = require('lodash');
var jsonfile = require('jsonfile');
// Define help
program
.option('-f, --file <path>', 'RAML input file')
.option('-o, --output <path>', 'output dir')
.parse(process.argv);
// Show help if no file
if (!program.file) {
console.log('No input file specified');
program.outputHelp();
process.exit(1);
}
// Proceed with file
var outputDir = path.resolve(process.cwd(), __dirname, program.output || 'out');
var ramlFile = checkIfFileExists(program.file);
var ramlApi = parseRamlFile(ramlFile);
var typeDefinitions = ramlApi.types();
// Create output directory
if (!checkIfFileExists(outputDir)) {
fs.mkdirSync(outputDir);
}
parseRamlToJson(typeDefinitions);
//----------------------------------------------------------------------------------------------------
/**
* Check if input file exists
* @param filePath
* @returns {string}
*/
function checkIfFileExists(filePath) {
var inputFile = path.resolve(process.cwd(), filePath);
try {
fs.statSync(inputFile);
return inputFile;
}
catch (e) {
return false;
}
}
/**
* Convert Raml to API Object
* @param ramlFile
*/
function parseRamlFile(ramlFile) {
try {
return ramlParser
.loadApiSync(ramlFile)
.expand();
}
catch (e) {
console.log('Incorrect RAML file!');
process.exit(1);
}
}
function parseRamlToJson(typeDefinitions) {
typeDefinitions.forEach(function (typeDefinition, idx) {
// Debug type definition
var definition = typeDefinition.toJSON({serializeMetadata: false}),
name = typeDefinition.name(),
stack;
definition[name]['$schema'] = "http://json-schema.org/draft-04/schema#";
recursivelyIterateProperties(definition[name]);
saveJsonFile(outputDir + '/' + name + '.json', definition[name]);
})
}
function recursivelyIterateProperties(jsonObject) {
// // Convert type from array to string value
if (_.isArray(_.result(jsonObject,'type'))) {
jsonObject.type = jsonObject.type[0];
//TODO: Arrays and nested user defined data types
if (jsonObject.type.indexOf('[]') >= 0) {
jsonObject.items = {
type: jsonObject.type.replace('[]', '')
}
jsonObject.type = 'array';
}
// Unions
if (jsonObject.type.indexOf('|') >= 0) {
// Remove spaces
jsonObject.type = jsonObject.type.replace(/ /g, '');
// Split different types into array of types
jsonObject.type = jsonObject.type.split('|');
}
// TODO: Parse array unions like (string | Person)[]
}
// Remove unnecessary keys
// TODO: better to say which keys do we need
jsonObject.name = undefined;
jsonObject.displayName = undefined;
jsonObject.repeat = undefined;
jsonObject.structuredExample = undefined;
if (jsonObject.type === 'object' && _.isObject(jsonObject.properties)) {
// Find all required properties
jsonObject.required = _.map(_.filter(jsonObject.properties, 'required'), 'name');
// Parse children properties
_.forEach(jsonObject.properties, function (propObject, propKey) {
recursivelyIterateProperties(propObject)
})
} else {
jsonObject.required = undefined;
}
}
function saveJsonFile(filePath, content) {
console.log('Saving file ', filePath)
return jsonfile.writeFileSync(filePath, content, {spaces: 2})
}