-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathcli.js
More file actions
executable file
·288 lines (260 loc) · 8.58 KB
/
Copy pathcli.js
File metadata and controls
executable file
·288 lines (260 loc) · 8.58 KB
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
#!/usr/bin/env node
/*
Copyright © 2019-2026 Google LLC
Licensed 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
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
const { Command } = require("commander");
const program = new Command(),
fs = require("fs"),
path = require("path"),
tmp = require("tmp"),
AdmZip = require("adm-zip"),
bl = require("./lib/package/bundleLinter.js"),
rc = require("./lib/package/apigeelintrc.js"),
pkj = require("./package.json"),
downloader = require("./lib/package/downloader.js"),
bundleType = require("./lib/package/BundleTypes.js"),
debug = require("debug"),
defaults = {
formatter: "json.js",
complexConditionTermCount: 12,
policyCountLimit: 100,
profile: "apigee",
};
/**
* findBundle returns an array of three items:
* 0: the validated source path, useful for resolving .apigeelintrc
* 1: the actual directory, which may be a tmp dir if the source path is a zip
* 2: either 'zip' or 'filesystem'
**********************************************/
const findBundle = (p) => {
// handle zipped bundles
if (p.endsWith(".zip") && fs.existsSync(p) && fs.statSync(p).isFile()) {
const tmpdir = tmp.dirSync({
prefix: `apigeelint-${path.basename(p)}`,
keep: false,
unsafeCleanup: true, // this does not seem to work in apigeelint
});
// make sure to cleanup when the process exits
process.on("exit", function () {
tmpdir.removeCallback();
});
const zip = new AdmZip(p);
zip.extractAllTo(tmpdir.name, false);
const found = findBundle(tmpdir.name);
return [p, found[1], "zip"];
}
if (p.endsWith("/")) {
p = p.slice(0, -1);
}
const subdirnames = [
bundleType.BundleType.SHAREDFLOW,
bundleType.BundleType.APIPROXY,
];
if (subdirnames.find((n) => p.endsWith(n)) && fs.statSync(p).isDirectory()) {
return [p, p, "filesystem"];
}
const subdirs = subdirnames.map((d) => path.join(p, d));
for (let i = 0; i < subdirs.length; i++) {
if (fs.existsSync(subdirs[i]) && fs.statSync(subdirs[i]).isDirectory()) {
if (
!fs.existsSync(subdirs[1 - i]) ||
!fs.statSync(subdirs[1 - i]).isDirectory()
) {
return [subdirs[i], subdirs[i], "filesystem"];
}
throw new Error(
"that path appears to contain both an apiproxy and a sharedflowbundle",
);
}
}
throw new Error(
"that path does not appear to resolve to an apiproxy or sharedflowbundle",
);
};
(async function main() {
program
.version(pkj.version)
.option(
"-s, --path <path>",
"Path of the proxy or sharedflow to analyze (directory or zipped bundle)",
)
.option(
"-d, --download [value]",
"Download the API proxy or sharedflow to analyze. Exclusive of -s / --path. Example: org:ORG,API:proxyname or org:ORG,sf:SHAREDFLOWNAME",
)
.option(
"-f, --formatter [value]",
`Specify formatters (default: ${defaults.formatter})`,
)
.option("-w, --write [value]", "file path to write results")
.option(
"-e, --excluded [value]",
"The comma separated list of tests to exclude (default: none)",
)
.option(
"-x, --externalPluginsDirectory [value]",
"Relative or full path to an external plugins directory",
)
.option(
"-q, --quiet",
"do not emit the report to stdout. (can use --write option to write to file)",
)
.option(
"--list",
"do not scan, instead list the available plugins and formatters",
)
.option(
"--maxWarnings [value]",
"Number of warnings to trigger nonzero exit code (default: -1)",
)
.option(
"--complexConditionTermCount [value]",
`Maximum number of terms in a condition before it is considered too complex by CC004 (default: ${defaults.complexConditionTermCount})`,
)
.option(
"--policyCountLimit [value]",
`Maximum number of policies in a bundle before it is considered too complex by BN006 (default: ${defaults.policyCountLimit})`,
)
.option(
"--profile [value]",
`Either apigee or apigeex (default: ${defaults.profile})`,
)
.option(
"--norc",
"do not search for and use the .apigeelintrc file for settings",
)
.option(
"--ignoreDirectives",
"ignore any directives within XML files that disable warnings",
)
.option(
"--po025-no-retry",
"disables the retry logic in PO025, when eslint finds no eslint.config.js",
);
program.addHelpText(
"after",
`
Examples:
apigeelint -f table.js -s sampleProxy/apiproxy
apigeelint -f table.js -s path/to/your/apiproxy.zip
apigeelint -f table.js --download org:my-org,api:my-proxy\n`,
);
program.parse(process.argv);
const options = program.opts();
if (options.list) {
console.log("available plugins: " + bl.listRuleIds().join(", ") + "\n");
console.log("available formatters: " + bl.listFormatters().join(", "));
if (fs.existsSync(options.externalPluginsDirectory)) {
console.log(
"\n" +
"available external plugins: " +
bl.listExternalRuleIds(options.externalPluginsDirectory).join(", ") +
"\n",
);
}
process.exit(0);
}
if (options.download) {
if (options.path) {
console.log(
"you must specify either the -s /--path option, or the -d /--download option. Not both.",
);
process.exit(1);
}
// This will work only with Apigee X/hybrid
options.path = await downloader.downloadBundle(options.download);
}
if (!options.path) {
console.log(
"you must specify the -s option, or the long form of that: --path ",
);
process.exit(1);
}
let [sourcePath, resolvedPath, sourceType] = findBundle(options.path);
// apply RC file
if (!options.norc) {
const rcSettings = rc.readRc([".apigeelintrc"], sourcePath);
if (rcSettings) {
Object.keys(rcSettings)
.filter((key) => key != "path" && key != "list" && !options[key])
.forEach((key) => {
debug("apigeelint:rc")(`applying [${key}] = ${rcSettings[key]}`);
options[key] = rcSettings[key];
});
}
}
if (
options.complexConditionTermCount &&
options.complexConditionTermCount < 1
) {
console.log(
"Specify a value greater than zero for complexConditionTermCount.\n",
);
process.exit(1);
}
if (options.policyCountLimit && options.policyCountLimit < 1) {
console.log("Specify a value greater than zero for policyCountLimit.\n");
process.exit(1);
}
const configuration = {
debug: true,
source: {
type: sourceType,
path: resolvedPath,
sourcePath: sourcePath,
bundleType: resolvedPath.endsWith(bundleType.BundleType.SHAREDFLOW)
? bundleType.BundleType.SHAREDFLOW
: bundleType.BundleType.APIPROXY,
},
complexConditionTermCount:
Number(options.complexConditionTermCount) ||
defaults.complexConditionTermCount,
policyCountLimit:
Number(options.policyCountLimit) || defaults.policyCountLimit,
externalPluginsDirectory: options.externalPluginsDirectory,
excluded: {},
maxWarnings: -1,
profile: defaults.profile,
};
if (!isNaN(options.maxWarnings)) {
configuration.maxWarnings = Number.parseInt(options.maxWarnings);
}
if (options.formatter) {
configuration.formatter = options.formatter || defaults.formatter;
}
if (options.quiet) {
configuration.output = "none";
}
if (options.ignoreDirectives) {
configuration.ignoreDirectives = true;
}
if (options.po025NoRetry === true) {
configuration.po025NoRetry = true;
}
if (options.excluded && typeof options.excluded === "string") {
configuration.excluded = options.excluded
.split(",")
.map((s) => s.trim())
.reduce((acc, item) => ((acc[item] = true), acc), {});
}
if (options.write) {
configuration.writePath = options.write;
}
if (options.profile && ["apigee", "apigeex"].includes(options.profile)) {
configuration.profile = options.profile;
}
bl.lint(configuration, (bundle) => {
debug("apigeelint:cli")(`exitCode ${bundle.lintExitCode}`);
//console.error(`exitCode ${bundle.lintExitCode}`);
process.exit(bundle.lintExitCode);
});
})();