-
Notifications
You must be signed in to change notification settings - Fork 41
/
CxGitLabGetAllProjects1.py
358 lines (232 loc) · 13.1 KB
/
CxGitLabGetAllProjects1.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
import optparse;
import os;
import traceback;
import platform;
import re;
import string;
import sys;
import collections;
from datetime import datetime;
import CxGitLabServerEndpoint1;
import CxGitLabProjectData1;
import CxGitLabProjectDataCollection1;
optParser = optparse.OptionParser();
sScriptId = optParser.get_prog_name();
sScriptVers = "(v2.0205)";
sScriptDisp = sScriptId+" "+sScriptVers+":"
cScriptArgc = len(sys.argv);
bVerbose = False;
sScriptGitLabGroup = None;
sScriptGitLabServerURL = None;
sScriptGitLabUserId = None;
sScriptGitLabPassword = None;
sScriptOutputReportFile = "";
sScriptOutputPlistsDir = "";
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 GitLab 'Get-ALL-Projects' 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("-g", "--group", dest="gitlab_group", default="", help="GitLab Group", metavar="GitLab-Group");
optParser.add_option("--url", dest="gitlab_server_url", default="", help="GitLab Server URL - Protocol/Host/Port - sample: --url=http://hostname:8080", metavar="GitLab-Server-URL");
optParser.add_option("--user", dest="gitlab_user_id", default="", help="GitLab Authentication UserId", metavar="GitLab-UserId");
optParser.add_option("--pswd", dest="gitlab_password", default="", help="GitLab Authentication (UserId) Password", metavar="GitLab-Password");
optParser.add_option("-o", "--output-report-file", dest="output_report_file", default="", help="(Output) 'report' file [generated]");
optParser.add_option("-p", "--output-plists-dir", dest="output_plists_dir", default="", help="(Output) 'plists' directory [generated to]");
(options, args) = optParser.parse_args();
bVerbose = options.run_verbose;
sScriptGitLabGroup = options.gitlab_group.strip();
sScriptGitLabServerURL = options.gitlab_server_url.strip();
sScriptGitLabUserId = options.gitlab_user_id.strip();
sScriptGitLabPassword = options.gitlab_password.strip();
sScriptOutputReportFile = options.output_report_file.strip();
sScriptOutputPlistsDir = options.output_plists_dir.strip();
if bVerbose == True:
print("%s Command VERBOSE flag is [%s]..." % (sScriptDisp, bVerbose));
print("");
print("%s Command GitLab Group is [%s]..." % (sScriptDisp, sScriptGitLabGroup));
print("%s Command GitLab Server URL is [%s]..." % (sScriptDisp, sScriptGitLabServerURL));
print("%s Command GitLab UserId is [%s]..." % (sScriptDisp, sScriptGitLabUserId));
print("%s Command GitLab (UserId) Password is [%s]..." % (sScriptDisp, sScriptGitLabPassword));
print("%s Command (Output) 'report' file is [%s]..." % (sScriptDisp, sScriptOutputReportFile));
print("%s Command (Output) 'plists' directory is [%s]..." % (sScriptDisp, sScriptOutputPlistsDir));
print("");
if sScriptGitLabGroup != None:
sScriptGitLabGroup = sScriptGitLabGroup.strip();
if sScriptGitLabGroup == None or \
len(sScriptGitLabGroup) < 1:
print("");
print("%s The GitLab 'group' is None or Empty - this MUST be supplied - Error!" % (sScriptDisp));
print("");
return False;
if sScriptGitLabServerURL != None:
sScriptGitLabServerURL = sScriptGitLabServerURL.strip();
if sScriptGitLabServerURL == None or \
len(sScriptGitLabServerURL) < 1:
sScriptGitLabServerURL = None;
else:
sScriptGitLabServerURLLow = sScriptGitLabServerURL.lower();
if sScriptGitLabServerURLLow.startswith("http://") == False and \
sScriptGitLabServerURLLow.startswith("https://") == False and \
sScriptGitLabServerURLLow.startswith("ssh://") == False:
sScriptGitLabServerURL = None;
if sScriptGitLabServerURL != None:
sScriptGitLabServerURL = sScriptGitLabServerURL.strip();
if sScriptGitLabServerURL == None or \
len(sScriptGitLabServerURL) < 1:
print("");
print("%s The GitLab Server URL is None or Empty - this MUST be supplied - Error!" % (sScriptDisp));
print("");
return False;
if sScriptGitLabUserId != None:
sScriptGitLabUserId = sScriptGitLabUserId.strip();
if sScriptGitLabUserId == None or \
len(sScriptGitLabUserId) < 1:
sScriptGitLabUserId = None;
print("");
print("%s The GitLab UserId is None or Empty - this SHOULD be supplied - Warning!" % (sScriptDisp));
print("");
if sScriptGitLabPassword != None:
sScriptGitLabPassword = sScriptGitLabPassword.strip();
if sScriptGitLabPassword == None or \
len(sScriptGitLabPassword) < 1:
sScriptGitLabPassword = None;
print("");
print("%s The GitLab (UserId) Password is None or Empty - this SHOULD be supplied - Warning!" % (sScriptDisp));
print("");
if sScriptOutputReportFile != None:
sScriptOutputReportFile = sScriptOutputReportFile.strip();
if sScriptOutputReportFile == None or \
len(sScriptOutputReportFile) < 1:
sScriptOutputReportFile == "CxGitLabGetAllProjects1_response.json";
print("%s Checkmarx (Output) 'report' file is None or Empty - defaulting to file [%s] - Warning!" % (sScriptDisp, sScriptOutputReportFile));
else:
if bVerbose == True:
print("");
print("%s Generating the Checkmarx (Output) 'report' into the file [%s]..." % (sScriptDisp, sScriptOutputReportFile));
print("");
if sScriptOutputPlistsDir != None:
sScriptOutputPlistsDir = sScriptOutputPlistsDir.strip();
if sScriptOutputPlistsDir == None or \
len(sScriptOutputPlistsDir) < 1:
sScriptOutputPlistsDir = None;
print("");
print("%s The supplied (Output) 'plists' directory is None or Empty - this MUST be supplied - Error!" % (sScriptDisp));
print("");
return False;
sScriptOutputPlistsDirspec = os.path.realpath(sScriptOutputPlistsDir);
if not os.path.isdir(sScriptOutputPlistsDirspec):
print("");
print("%s The (Output) 'plists' directory of [%s] is NOT a valid directory - a valid directory MUST be supplied - Warning!" % (sScriptDisp, sScriptOutputPlistsDirspec));
print("");
return False;
bProcessingError = False;
cxGitLabServerEndpoint = CxGitLabServerEndpoint1.CxGitLabServerEndpoint(trace=bVerbose, cxgitlabserverendpointactive=True, cxgitlabserverurl=sScriptGitLabServerURL, cxgitlabgroup=sScriptGitLabGroup, cxgitlabuserid=sScriptGitLabUserId, cxgitlabpassword=sScriptGitLabPassword);
if cxGitLabServerEndpoint == None:
print("");
print("%s The CxGitLabServerEndpoint object is None - this object failed to create - Error!" % (sScriptDisp));
print("");
return False;
if bVerbose == True:
print("");
print("%s CxGitLabServerEndpoint (after init) is:" % (sScriptDisp));
print(cxGitLabServerEndpoint.toString());
print("");
if cxGitLabServerEndpoint.getCxGitLabServerEndpointActiveFlag() == False:
print("");
print("%s The CxGitLabServerEndpoint is NOT marked 'active' - it MUST be marked 'active' to be used - Error!" % (sScriptDisp));
print("");
return False;
cxGitLabProjCollection = CxGitLabProjectDataCollection1.CxGitLabProjectDataCollection(trace=bVerbose, cxgitlabserverendpoint=cxGitLabServerEndpoint);
if cxGitLabProjCollection == None:
print("");
print("%s The CxGitLabProjectDataCollection object is None - this object failed to create - Error!" % (sScriptDisp));
print("");
return False;
if bVerbose == True:
print("");
print("%s CxGitLabProjectDataCollection (after init) is:" % (sScriptDisp));
print(cxGitLabProjCollection.toString());
print("");
bGitLabProjCollectionInitialDataLoadOk = cxGitLabProjCollection.loadCxGitLabProjectDataInitialDataToCollectionFromRestAPI();
if bGitLabProjCollectionInitialDataLoadOk == False:
print("");
print("%s The CxGitLabProjectDataCollection.loadCxGitLabProjectDataInitialDataToCollectionFromRestAPI() call failed - Error!" % (sScriptDisp));
print("");
return False;
if bVerbose == True:
print("");
print("%s CxGitLabProjectDataCollection (after InitialData load) is:" % (sScriptDisp));
print(cxGitLabProjCollection.toString());
print("");
bGenerateProjReportOk = cxGitLabProjCollection.generateCxGitLabProjectDataCollectionReport();
if bGenerateProjReportOk == False:
print("");
print("%s The CxGitLabProjectDataCollection.generateCxGitLabProjectDataCollectionReport() call failed - Error!" % (sScriptDisp));
print("");
return False;
if bVerbose == True:
print("");
print("%s CxGitLabProjectDataCollection (after report) is:" % (sScriptDisp));
print(cxGitLabProjCollection.toString());
print("");
if sScriptOutputReportFile != None:
sScriptOutputReportFile = sScriptOutputReportFile.strip();
if sScriptOutputReportFile != None and \
len(sScriptOutputReportFile) > 0:
bSaveGitLabProjCollectionReportOk = cxGitLabProjCollection.saveCxGitLabProjectDataCollectionReportToFile(outputprojectdatacollectionreportfile=sScriptOutputReportFile);
if bSaveGitLabProjCollectionReportOk == False:
print("");
print("%s The CxGitLabProjectDataCollection generated 'report' failed to save to the file [%s] - Error!" % (sScriptDisp, sScriptOutputReportFile));
print("");
bProcessingError = True;
if sScriptOutputPlistsDirspec != None:
sScriptOutputPlistsDirspec = sScriptOutputPlistsDirspec.strip();
if sScriptOutputPlistsDirspec != None and \
len(sScriptOutputPlistsDirspec) > 0:
bSaveGitLabProjPlistsToDirectoryOk = cxGitLabProjCollection.saveCxGitLabProjectDataCollectionAsPlistToDirectory(outputprojectdatacollectionplistsdir=sScriptOutputPlistsDirspec);
if bSaveGitLabProjPlistsToDirectoryOk == False:
print("");
print("%s The CxGitLabProjectDataCollection 'plist(s)' failed to save to the directory [%s] - Error!" % (sScriptDisp, sScriptOutputPlistsDirspec));
print("");
bProcessingError = True;
dtNow = datetime.now();
sDTNowStamp = dtNow.strftime("%Y/%m/%d at %H:%M:%S");
print("");
print("%s The Checkmarx GitLab 'Get-ALL-Projects' 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;
if bProcessingError == True:
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);