mirror of
https://gitlab.com/kupfer/kupferbootstrap.git
synced 2025-02-23 05:35:44 -05:00
70 lines
2.9 KiB
Python
70 lines
2.9 KiB
Python
import click
|
|
import logging
|
|
|
|
from json import dumps as json_dump
|
|
from typing import Optional
|
|
|
|
from config.state import config
|
|
from utils import colors_supported, color_str
|
|
|
|
from .flavour import get_flavours, get_profile_flavour
|
|
|
|
profile_option = click.option('-p', '--profile', help="name of the profile to use", required=False, default=None)
|
|
|
|
|
|
@click.command(name='flavours')
|
|
@click.option('-j', '--json', is_flag=True, help='output machine-parsable JSON format')
|
|
@click.option('--output-file', type=click.Path(exists=False, file_okay=True), help="Dump JSON to file")
|
|
def cmd_flavours(json: bool = False, output_file: Optional[str] = None):
|
|
'list information about available flavours'
|
|
results = []
|
|
json_results = {}
|
|
profile_flavour = None
|
|
flavours = get_flavours()
|
|
interactive_json = json and not output_file
|
|
use_colors = colors_supported(config.runtime.colors) and not interactive_json
|
|
if output_file:
|
|
json = True
|
|
if not flavours:
|
|
raise Exception("No flavours found!")
|
|
if not interactive_json:
|
|
try:
|
|
profile_flavour = get_profile_flavour()
|
|
except Exception as ex:
|
|
logging.debug(f"Failed to get profile flavour for marking as currently selected, continuing anyway. Exception: {ex}")
|
|
for name in sorted(flavours.keys()):
|
|
f = flavours[name]
|
|
try:
|
|
f.parse_flavourinfo()
|
|
except Exception as ex:
|
|
logging.debug(f"A problem happened while parsing flavourinfo for {name}, continuing anyway. Exception: {ex}")
|
|
if not interactive_json:
|
|
block = [*f.nice_str(newlines=True, colors=use_colors).split('\n'), '']
|
|
if profile_flavour == f:
|
|
prefix = color_str('>>> ', bold=True, fg='bright_green', use_colors=use_colors)
|
|
block += [
|
|
color_str("Currently selected by profile ", bold=True, use_colors=use_colors) +
|
|
color_str(f'"{config.file.profiles.current}"\n', bold=True, fg="bright_green")
|
|
]
|
|
block = [prefix + line for line in block]
|
|
results += block
|
|
if json:
|
|
d = dict(f)
|
|
d["description"] = f.flavour_info.description if (f.flavour_info and f.flavour_info.description) else f.description
|
|
if "flavour_info" in d and d["flavour_info"]:
|
|
for k in set(d["flavour_info"].keys()) - set(['description']):
|
|
d[k] = d["flavour_info"][k]
|
|
del d["flavour_info"]
|
|
d["pkgbuild"] = f.pkgbuild.path if f.pkgbuild else None
|
|
d["package"] = f.pkgbuild.name
|
|
d["arches"] = sorted(f.pkgbuild.arches) if f.pkgbuild else None
|
|
json_results[d["name"]] = d
|
|
print()
|
|
if output_file:
|
|
with open(output_file, 'w') as fd:
|
|
fd.write(json_dump(json_results))
|
|
if interactive_json:
|
|
print(json_dump(json_results, indent=4))
|
|
else:
|
|
for r in results:
|
|
print(r)
|