-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
75 lines (65 loc) · 2.1 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
const fs = require('fs');
const path = require('path');
const yaml = require('js-yaml');
const { merge, isErrorResult } = require('openapi-merge');
const argv = require('minimist')(process.argv.slice(2));
function buildSpecArray(config, basePath) {
const mergeArray = [];
for (i in config.inputs) {
let apiSpec = yaml.load(
fs.readFileSync(`${basePath}${configFile.inputs[i].inputFile}`, 'utf8')
);
let servers = apiSpec.servers;
for (specPath in apiSpec.paths) {
apiSpec.paths[specPath].servers = servers;
}
delete apiSpec.info;
delete apiSpec.servers;
mergeObj = {
oas: apiSpec,
};
mergeArray.push(mergeObj);
}
return mergeArray;
}
function mergeSpecs(mergeArray) {
const mergeResult = merge(mergeArray);
if (isErrorResult(mergeResult)) {
console.error(`${mergeResult.message} (${mergeResult.type})`);
} else {
console.log(`Merge successful!`);
// console.log(JSON.stringify(mergeResult.output, null, 2));
return mergeResult;
}
}
function main(config, basePath) {
const mergeArray = buildSpecArray(config, basePath);
const apiSpec = mergeSpecs(mergeArray).output;
let info = {
title: 'Bandwidth',
description: `Bandwidth's Communication APIs`,
contact: {
name: 'Bandwidth',
url: 'https://dev.bandwidth.com',
email: 'letstalk@bandwidth.com',
},
version: '1.0.0',
};
apiSpec.info = info;
/**
* Only save the file if the -t/--test flag is not present
*/
fileExtension = path.extname(configFile.output);
if( argv.t != true && argv.test != true ){
if(fileExtension == '.json'){
fs.writeFileSync(`${basePath}${configFile.output}`, JSON.stringify(apiSpec, null, 4), 'utf8');
} else if(fileExtension == '.yaml' || fileExtension == '.yml'){
fs.writeFileSync(`${basePath}${configFile.output}`, yaml.dump(apiSpec));
} else {
throw new Error('Unsupported output file type. Only `.json`, `.yaml`, and `.yml` are supported.');
}
}
}
const configFile = yaml.load(fs.readFileSync(argv.c || argv.config, 'utf8'));
const basePath = argv.path;
main(configFile, basePath);