-
Notifications
You must be signed in to change notification settings - Fork 41
/
CxProjectStatisticsReporter1.py
400 lines (258 loc) · 14.1 KB
/
CxProjectStatisticsReporter1.py
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
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
import optparse;
import os;
import traceback;
import platform;
import re;
import string;
import sys;
from datetime import datetime;
import CxServerEndpoint1;
import CxProjectData1;
import CxProjectDataCollection1;
optParser = optparse.OptionParser();
sScriptId = optParser.get_prog_name();
sScriptVers = "(v1.0515)";
sScriptDisp = sScriptId+" "+sScriptVers+":"
cScriptArgc = len(sys.argv);
bVerbose = False;
sScriptCxServerURL = None;
sScriptCxAuthUserId = None;
sScriptCxAuthPassword = None;
sScriptOutputStatsReportFile = "";
sScriptOutputStatsHtmlFile = "";
def main():
try:
sPythonVers = ("v%s.%s.%s" % (sys.version_info.major, sys.version_info.minor, sys.version_info.micro));
sServerNode = platform.node();
dtNow = datetime.now();
sDTNowStamp = dtNow.strftime("%Y/%m/%d at %H:%M:%S");
print("%s The Checkmarx Project 'statistics' via Rest API #1 is starting execution from Server [%s] on [%s] under Python [%s]..." % (sScriptDisp, sServerNode, sDTNowStamp, sPythonVers));
print("");
optParser.add_option("-v", "--verbose", dest="run_verbose", default=False, help="Run VERBOSE", action="store_true");
optParser.add_option("--url", dest="cx_server_url", default="", help="Checkmarx Server URL - Protocol/Host/Port - sample: --url=http://hostname:8080", metavar="Checkmarx-Server-URL");
optParser.add_option("--user", dest="cx_auth_user", default="", help="Checkmarx Authentication UserId", metavar="Checkmarx-UserId");
optParser.add_option("--pswd", dest="cx_auth_pswd", default="", help="Checkmarx Authentication Password", metavar="Checkmarx-Password");
optParser.add_option("-o", "--output-report-file", dest="output_report_file", default="", help="(Output) 'statistics' report file [generated]");
optParser.add_option("-f", "--output-html-file", dest="output_html_file", default="", help="(Output) 'statistics' Html (report) file [generated]");
(options, args) = optParser.parse_args();
bVerbose = options.run_verbose;
sScriptCxServerURL = options.cx_server_url.strip();
sScriptCxAuthUserId = options.cx_auth_user.strip();
sScriptCxAuthPassword = options.cx_auth_pswd.strip();
sScriptOutputStatsReportFile = options.output_report_file.strip();
sScriptOutputStatsHtmlFile = options.output_html_file.strip();
if bVerbose == True:
print("%s Command VERBOSE flag is [%s]..." % (sScriptDisp, bVerbose));
print("");
print("%s Command Checkmarx Server URL is [%s]..." % (sScriptDisp, sScriptCxServerURL));
print("%s Command Checkmarx Authentication UserId is [%s]..." % (sScriptDisp, sScriptCxAuthUserId));
print("%s Command Checkmarx Authentication Password is [%s]..." % (sScriptDisp, sScriptCxAuthPassword));
print("%s Command (Output) 'statistics' report file is [%s]..." % (sScriptDisp, sScriptOutputStatsReportFile));
print("%s Command (Output) 'statistics' Html (report) file is [%s]..." % (sScriptDisp, sScriptOutputStatsHtmlFile));
print("");
if sScriptCxServerURL != None:
sScriptCxServerURL = sScriptCxServerURL.strip();
if sScriptCxServerURL == None or \
len(sScriptCxServerURL) < 1:
sScriptCxServerURL = None;
else:
sScriptCxServerURLLow = sScriptCxServerURL.lower();
if sScriptCxServerURLLow.startswith("http://") == False and \
sScriptCxServerURLLow.startswith("https://") == False:
sScriptCxServerURL = None;
if sScriptCxServerURL != None:
sScriptCxServerURL = sScriptCxServerURL.strip();
if sScriptCxServerURL == None or \
len(sScriptCxServerURL) < 1:
print("");
print("%s The Checkmarx Server URL is None or Empty - this MUST be supplied - Error!" % (sScriptDisp));
print("");
return False;
if sScriptCxAuthUserId != None:
sScriptCxAuthUserId = sScriptCxAuthUserId.strip();
if sScriptCxAuthUserId == None or \
len(sScriptCxAuthUserId) < 1:
sScriptCxAuthUserId = None;
print("");
print("%s The Checkmarx Auth UserId is None or Empty - this SHOULD be supplied - Warning!" % (sScriptDisp));
print("");
if sScriptCxAuthPassword != None:
sScriptCxAuthPassword = sScriptCxAuthPassword.strip();
if sScriptCxAuthPassword == None or \
len(sScriptCxAuthPassword) < 1:
sScriptCxAuthPassword = None;
print("");
print("%s The Checkmarx Auth Password is None or Empty - this SHOULD be supplied - Warning!" % (sScriptDisp));
print("");
if sScriptOutputStatsReportFile != None:
sScriptOutputStatsReportFile = sScriptOutputStatsReportFile.strip();
if sScriptOutputStatsReportFile == None or \
len(sScriptOutputStatsReportFile) < 1:
print("%s Checkmarx (Output) 'statistics' report filename is None or Empty - this output will be bypassed - Warning!" % (sScriptDisp));
sScriptOutputStatsReportFile == None;
else:
if bVerbose == True:
print("");
print("%s Generating the Checkmarx (Output) 'statistics' report into the file [%s]..." % (sScriptDisp, sScriptOutputStatsReportFile));
print("");
if sScriptOutputStatsHtmlFile != None:
sScriptOutputStatsHtmlFile = sScriptOutputStatsHtmlFile.strip();
if sScriptOutputStatsHtmlFile == None or \
len(sScriptOutputStatsHtmlFile) < 1:
print("%s Checkmarx (Output) 'statistics' Html (report) filename is None or Empty - this output will be bypassed - Warning!" % (sScriptDisp));
sScriptOutputStatsHtmlFile == None;
else:
if bVerbose == True:
print("");
print("%s Generating the Checkmarx (Output) 'statistics' Html (report) into the file [%s]..." % (sScriptDisp, sScriptOutputStatsHtmlFile));
print("");
bProcessingError = False;
cxServerEndpoint = CxServerEndpoint1.CxServerEndpoint(trace=bVerbose, cxserverendpointactive=True, cxserverurl=sScriptCxServerURL, cxauthuserid=sScriptCxAuthUserId, cxauthpassword=sScriptCxAuthPassword);
if cxServerEndpoint == None:
print("");
print("%s The CxServerEndpoint object is None - this object failed to create - Error!" % (sScriptDisp));
print("");
return False;
if bVerbose == True:
print("");
print("%s CxServerEndpoint (after init) is:" % (sScriptDisp));
print(cxServerEndpoint.toString());
print("");
cxProjCollection = CxProjectDataCollection1.CxProjectDataCollection(trace=bVerbose, cxserverendpoint=cxServerEndpoint);
if cxProjCollection == None:
print("");
print("%s The CxProjectDataCollection object is None - this object failed to create - Error!" % (sScriptDisp));
print("");
return False;
if bVerbose == True:
print("");
print("%s CxProjectDataCollection (after init) is:" % (sScriptDisp));
print(cxProjCollection.toString());
print("");
bProjCollectionMetaOk = cxProjCollection.loadCxProjectDataMetaDataToCollectionFromRestAPI();
if bProjCollectionMetaOk == False:
print("");
print("%s The CxProjectDataCollection.loadCxProjectDataMetaDataToCollectionFromRestAPI() call failed - Error!" % (sScriptDisp));
print("");
return False;
if bVerbose == True:
print("");
print("%s CxProjectDataCollection (after meta data load) is:" % (sScriptDisp));
print(cxProjCollection.toString());
print("");
bProjCollectionLoadOk = cxProjCollection.loadCxProjectDataCollectionFromRestAPI();
if bProjCollectionLoadOk == False:
print("");
print("%s The CxProjectDataCollection.loadCxProjectDataCollectionFromRestAPI() call failed - Error!" % (sScriptDisp));
print("");
return False;
if bVerbose == True:
print("");
print("%s CxProjectDataCollection (after project load) is:" % (sScriptDisp));
print(cxProjCollection.toString());
print("");
bGenerateScanDeltaOk = cxProjCollection.generateCxProjectDataCollectionScansDelta();
if bGenerateScanDeltaOk == False:
print("");
print("%s The CxProjectDataCollection.generateCxProjectDataCollectionScansDelta() call failed - Error!" % (sScriptDisp));
print("");
return False;
if bVerbose == True:
print("");
print("%s CxProjectDataCollection (after scans delta) is:" % (sScriptDisp));
print(cxProjCollection.toString());
print("");
bProjCollectionReportOk = cxProjCollection.generateCxProjectDataCollectionReport();
if bProjCollectionReportOk == False:
print("");
print("%s The CxProjectDataCollection.generateCxProjectDataCollectionReport() call failed - Error!" % (sScriptDisp));
print("");
return False;
if bVerbose == True:
print("");
print("%s CxProjectDataCollection (after generate report) is:" % (sScriptDisp));
print(cxProjCollection.toString());
print("");
asCxProjectDataCollectionReport = cxProjCollection.getCxProjectDataCollectionReportAsList();
if asCxProjectDataCollectionReport == None or \
len(asCxProjectDataCollectionReport) < 1:
print("");
print("%s The CxProjectDataCollection generated 'statistics' report is None or 'empty' - Error!" % (sScriptDisp));
print("");
return False;
print('\n'.join(asCxProjectDataCollectionReport));
print("");
if sScriptOutputStatsReportFile != None:
sScriptOutputStatsReportFile = sScriptOutputStatsReportFile.strip();
if sScriptOutputStatsReportFile != None and \
len(sScriptOutputStatsReportFile) > 0:
bSaveDataCollectionReportOk = cxProjCollection.saveCxProjectDataCollectionReportToFile(outputprojectdatacollectionreportfile=sScriptOutputStatsReportFile);
if bSaveDataCollectionReportOk == False:
print("");
print("%s The CxProjectDataCollection generated 'statistics' report failed to save to the file [%s] - Error!" % (sScriptDisp, sScriptOutputStatsReportFile));
print("");
bProcessingError = True;
bProjCollectionHtmlOk = cxProjCollection.generateCxProjectDataCollectionHtml();
if bProjCollectionHtmlOk == False:
print("");
print("%s The CxProjectDataCollection.generateCxProjectDataCollectionHtml() call failed - Error!" % (sScriptDisp));
print("");
return False;
if bVerbose == True:
print("");
print("%s CxProjectDataCollection (after generate html) is:" % (sScriptDisp));
print(cxProjCollection.toString());
print("");
asCxProjectDataCollectionHtml = cxProjCollection.getCxProjectDataCollectionHtmlAsList();
if asCxProjectDataCollectionHtml == None or \
len(asCxProjectDataCollectionHtml) < 1:
print("");
print("%s The CxProjectDataCollection generated 'statistics' Html (report) is None or 'empty' - Error!" % (sScriptDisp));
print("");
return False;
print('\n'.join(asCxProjectDataCollectionHtml));
print("");
if sScriptOutputStatsHtmlFile != None:
sScriptOutputStatsHtmlFile = sScriptOutputStatsHtmlFile.strip();
if sScriptOutputStatsHtmlFile != None and \
len(sScriptOutputStatsHtmlFile) > 0:
bSaveDataCollectionHtmlOk = cxProjCollection.saveCxProjectDataCollectionHtmlToFile(outputprojectdatacollectionhtmlfile=sScriptOutputStatsHtmlFile);
if bSaveDataCollectionHtmlOk == False:
print("");
print("%s The CxProjectDataCollection generated 'statistics' Html (report) failed to save to the file [%s] - Error!" % (sScriptDisp, sScriptOutputStatsHtmlFile));
print("");
bProcessingError = True;
dtNow = datetime.now();
sDTNowStamp = dtNow.strftime("%Y/%m/%d at %H:%M:%S");
print("");
print("%s The Checkmarx Project 'statistics' via Rest API #1 is ending execution from Server [%s] on [%s] under Python [%s]..." % (sScriptDisp, sServerNode, sDTNowStamp, sPythonVers));
print("");
except Exception as inst:
print("%s 'main()' - exception occured..." % (sScriptDisp));
print(type(inst));
print(inst);
excType, excValue, excTraceback = sys.exc_info();
asTracebackLines = traceback.format_exception(excType, excValue, excTraceback);
print("- - - ");
print('\n'.join(asTracebackLines));
print("- - - ");
return False;
return True;
if __name__ == '__main__':
try:
pass;
except Exception as inst:
print("%s '<before>-main()' - exception occured..." % (sScriptDisp));
print(type(inst));
print(inst);
excType, excValue, excTraceback = sys.exc_info();
asTracebackLines = traceback.format_exception(excType, excValue, excTraceback);
print("- - - ");
print('\n'.join(asTracebackLines));
print("- - - ");
bCmdExecOk = main();
if bCmdExecOk == False:
print("%s Exiting with a Return Code of (31)..." % (sScriptDisp));
sys.exit(31);
print("%s Exiting with a Return Code of (0)..." % (sScriptDisp));
sys.exit(0);