@@ -151,13 +151,39 @@ def print_versions(lynk_ctx, fmt_json):
151
151
return 0
152
152
153
153
154
- def print_status (lynk_ctx ):
154
+ def print_status (lynk_ctx , fmt_json ):
155
155
status = lynk_ctx .status ()
156
156
if status is None :
157
157
print ('Failed to fetch status for the version' )
158
158
return 1
159
- json .dump (status , sys .stdout , indent = 4 , ensure_ascii = False )
159
+ if fmt_json :
160
+ json .dump (status , sys .stdout , indent = 4 , ensure_ascii = False )
161
+ return 0
162
+
163
+ # Calculate dynamic column widths
164
+ key_width = 20
165
+ value_width = 20
160
166
167
+ # Format the header with dynamic column widths
168
+ header = (
169
+ f"{ 'ACTION KEY' :<{key_width }} | "
170
+ f"{ 'STATUS' :<{value_width }} "
171
+ )
172
+ print (header )
173
+
174
+ # Add a horizontal line after the header
175
+ # 12 is the total length of separators and spaces
176
+ width = key_width + value_width + 5
177
+ line = "-" * width + "|"
178
+ print (line )
179
+
180
+ # Format each row with dynamic column widths and a bar between elements
181
+ for key , value in status .items ():
182
+ row = (
183
+ f"{ key :<{key_width }} | "
184
+ f"{ value :<{value_width }} |"
185
+ )
186
+ print (row )
161
187
162
188
def download_sbom (lynk_ctx ):
163
189
"""
@@ -198,6 +224,13 @@ def upload_sbom(lynk_ctx, sbom_file):
198
224
"""
199
225
return lynk_ctx .upload (sbom_file )
200
226
227
+ def add_output_format_group (parser ):
228
+ """
229
+ Adds mutually exclusive output format arguments (--json and --table) to the parser.
230
+ """
231
+ output_group = parser .add_mutually_exclusive_group ()
232
+ output_group .add_argument ("--json" , action = 'store_true' , help = "JSON Formatted (default)" )
233
+ output_group .add_argument ("--table" , action = 'store_true' , help = "Table Formatted" )
201
234
202
235
def setup_args ():
203
236
"""
@@ -211,10 +244,7 @@ def setup_args():
211
244
products_parser .add_argument ("--token" ,
212
245
required = False ,
213
246
help = "Security token" )
214
- products_parser .add_argument ("--json" ,
215
- required = False ,
216
- action = 'store_true' ,
217
- help = "JSON Formatted" )
247
+ add_output_format_group (products_parser )
218
248
219
249
vers_parser = subparsers .add_parser ("vers" , help = "List Versions" )
220
250
vers_group = vers_parser .add_mutually_exclusive_group (required = True )
@@ -226,10 +256,8 @@ def setup_args():
226
256
vers_parser .add_argument ("--token" ,
227
257
required = False ,
228
258
help = "Security token" )
229
- vers_parser .add_argument ("--json" ,
230
- required = False ,
231
- action = 'store_true' ,
232
- help = "JSON Formatted" )
259
+ add_output_format_group (vers_parser )
260
+
233
261
234
262
status_parser = subparsers .add_parser ("status" , help = "SBOM Status" )
235
263
status_group = status_parser .add_mutually_exclusive_group (required = True )
@@ -245,6 +273,7 @@ def setup_args():
245
273
status_parser .add_argument ("--token" ,
246
274
required = False ,
247
275
help = "Security token" )
276
+ add_output_format_group (status_parser )
248
277
249
278
upload_parser = subparsers .add_parser ("upload" , help = "Upload SBOM" )
250
279
upload_group = upload_parser .add_mutually_exclusive_group (required = True )
@@ -332,12 +361,13 @@ def main() -> int:
332
361
if not lynk_ctx .validate ():
333
362
exit (1 )
334
363
364
+ fmt_json = not args .table
335
365
if args .subcommand == "prods" :
336
- print_products (lynk_ctx , args . json )
366
+ print_products (lynk_ctx , fmt_json )
337
367
elif args .subcommand == "vers" :
338
- print_versions (lynk_ctx , args . json )
368
+ print_versions (lynk_ctx , fmt_json )
339
369
elif args .subcommand == "status" :
340
- print_status (lynk_ctx )
370
+ print_status (lynk_ctx , fmt_json )
341
371
elif args .subcommand == "upload" :
342
372
upload_sbom (lynk_ctx , args .sbom )
343
373
elif args .subcommand == "download" :
0 commit comments