Skip to content

Commit 246f5fa

Browse files
Merge pull request #42 from interlynk-io/fix/json-defaults
[NO-TKT] default to json output format
2 parents 5e5e984 + c1f892d commit 246f5fa

File tree

1 file changed

+43
-13
lines changed

1 file changed

+43
-13
lines changed

pylynk.py

+43-13
Original file line numberDiff line numberDiff line change
@@ -151,13 +151,39 @@ def print_versions(lynk_ctx, fmt_json):
151151
return 0
152152

153153

154-
def print_status(lynk_ctx):
154+
def print_status(lynk_ctx, fmt_json):
155155
status = lynk_ctx.status()
156156
if status is None:
157157
print('Failed to fetch status for the version')
158158
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
160166

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)
161187

162188
def download_sbom(lynk_ctx):
163189
"""
@@ -198,6 +224,13 @@ def upload_sbom(lynk_ctx, sbom_file):
198224
"""
199225
return lynk_ctx.upload(sbom_file)
200226

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")
201234

202235
def setup_args():
203236
"""
@@ -211,10 +244,7 @@ def setup_args():
211244
products_parser.add_argument("--token",
212245
required=False,
213246
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)
218248

219249
vers_parser = subparsers.add_parser("vers", help="List Versions")
220250
vers_group = vers_parser.add_mutually_exclusive_group(required=True)
@@ -226,10 +256,8 @@ def setup_args():
226256
vers_parser.add_argument("--token",
227257
required=False,
228258
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+
233261

234262
status_parser = subparsers.add_parser("status", help="SBOM Status")
235263
status_group = status_parser.add_mutually_exclusive_group(required=True)
@@ -245,6 +273,7 @@ def setup_args():
245273
status_parser.add_argument("--token",
246274
required=False,
247275
help="Security token")
276+
add_output_format_group(status_parser)
248277

249278
upload_parser = subparsers.add_parser("upload", help="Upload SBOM")
250279
upload_group = upload_parser.add_mutually_exclusive_group(required=True)
@@ -332,12 +361,13 @@ def main() -> int:
332361
if not lynk_ctx.validate():
333362
exit(1)
334363

364+
fmt_json = not args.table
335365
if args.subcommand == "prods":
336-
print_products(lynk_ctx, args.json)
366+
print_products(lynk_ctx, fmt_json)
337367
elif args.subcommand == "vers":
338-
print_versions(lynk_ctx, args.json)
368+
print_versions(lynk_ctx, fmt_json)
339369
elif args.subcommand == "status":
340-
print_status(lynk_ctx)
370+
print_status(lynk_ctx, fmt_json)
341371
elif args.subcommand == "upload":
342372
upload_sbom(lynk_ctx, args.sbom)
343373
elif args.subcommand == "download":

0 commit comments

Comments
 (0)