forked from Azure/azure-sdk-for-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservcheck.js
108 lines (92 loc) · 2.9 KB
/
servcheck.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
const args = require('yargs').argv;
const os = require('os');
const fs = require('fs');
const path = require('path');
const parser = require("pom-parser");
const colors = require('colors');
function servcheck() {
console.log('[INFO] starting to check api versions of services...\n');
readPom();
}
function readPom(callback) {
var opts = {
filePath: __dirname + "/pom.xml",
};
parser.parse(opts, function(err, response) {
if (err) {
console.log('[ERROR] ' + err);
process.exit(1);
}
console.log('[INFO] reading modules from pom...');
readProjSpecs(response.pomObject.project.modules.module);
});
}
const mappings = require('./api-specs.json');
function readProjSpecs(modules) {
console.log('[INFO] reading specs in project...');
var map = {};
Object.keys(mappings).forEach(key => {
if (modules.includes(mappings[key].dir)) {
var val = getCurrentApiVersion(mappings[key].args);
if (val !== undefined) {
map[key] = {};
map[key].name = key;
map[key].tag = val;
map[key].source = mappings[key].source;
}
}
});
readLatestSpecs(map);
}
function getCurrentApiVersion(value) {
var res = undefined;
value.split(/\s+/).forEach(item => {
if (item.includes('--tag=')) {
res = item.replace('--tag=', '');
}
});
return res;
}
function readLatestSpecs(map) {
console.log('[INFO] reading specs from swagger root...');
Object.keys(map).forEach(item => {
readLatestApiVersion(map[item]);
});
}
const dir = args['spec-root'];
function readLatestApiVersion(spec) {
console.log('\n[Service] ' + spec.name);
console.log(' current: ' + spec.tag);
const filePath = path.join(dir, spec.source);
const content = fs.readFileSync(filePath).toString('utf8');
var latest = {};
var allTags = [];
var lines = content.split('\n');
lines.forEach(line => {
if (line.startsWith('tag:')) {
if (latest.tag === undefined || latest.tag != undefined && line.includes(spec.name)) {
latest.tag = getApiVersion(line, 'tag:');
}
}
if (line.includes('Tag:') && !line.includes(' and ')) {
allTags.push(getApiVersion(line, '### Tag:'));
}
});
console.log(' latest: ' + latest.tag);
if (spec.tag !== latest.tag) {
allTags.sort().reverse();
console.log('\n potential versions to upgrade:');
allTags.forEach(tag => {
if (tag == spec.tag) {
console.log(' ' + tag.bold.underline.yellow);
} else {
console.log(' ' + tag);
}
});
}
return latest;
}
function getApiVersion(value, target) {
return value.replace(target, '').replace('\r', '').trim();
}
servcheck();