"kiwi init" as a KiwiCommand
This commit is contained in:
parent
b4684998fd
commit
a784475479
3 changed files with 64 additions and 64 deletions
|
@ -1,7 +1,7 @@
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
from enum import Enum, auto
|
from enum import Enum, auto
|
||||||
from typing import List, Tuple, Iterable
|
from typing import List, Tuple, Iterable, Any, Type
|
||||||
|
|
||||||
import click
|
import click
|
||||||
|
|
||||||
|
@ -53,6 +53,28 @@ class KiwiCommand:
|
||||||
(item, "blue"),
|
(item, "blue"),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def user_query(description: str, default: Any, cast_to: Type[Any] = str):
|
||||||
|
# prompt user as per argument
|
||||||
|
while True:
|
||||||
|
try:
|
||||||
|
prompt = \
|
||||||
|
click.style(f"Enter {description} [", fg="green") + \
|
||||||
|
click.style(default, fg="blue") + \
|
||||||
|
click.style("] ", fg="green")
|
||||||
|
str_value = input(prompt).strip()
|
||||||
|
if str_value:
|
||||||
|
return cast_to(str_value)
|
||||||
|
else:
|
||||||
|
return default
|
||||||
|
|
||||||
|
except EOFError:
|
||||||
|
click.echo("Input aborted.")
|
||||||
|
return default
|
||||||
|
|
||||||
|
except Exception as e:
|
||||||
|
click.echo(f"Invalid input: {e}")
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def run_for_instance(cls, instance: Instance, **kwargs) -> None:
|
def run_for_instance(cls, instance: Instance, **kwargs) -> None:
|
||||||
for project in instance.config.projects:
|
for project in instance.config.projects:
|
||||||
|
|
|
@ -5,20 +5,18 @@ from pathlib import Path
|
||||||
|
|
||||||
import click
|
import click
|
||||||
|
|
||||||
from .decorators import _pass_instance as pass_instance
|
from .cli import KiwiCommandType, KiwiCommand
|
||||||
|
from .decorators import kiwi_command
|
||||||
from .._constants import KIWI_CONF_NAME
|
from .._constants import KIWI_CONF_NAME
|
||||||
from ..config import KiwiConfig
|
from ..config import KiwiConfig
|
||||||
from ..instance import Instance
|
from ..instance import Instance
|
||||||
from ..misc import user_query
|
|
||||||
|
_logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
@click.command(
|
|
||||||
"init",
|
|
||||||
short_help="Initializes kiwi-scp",
|
|
||||||
)
|
|
||||||
@click.option(
|
@click.option(
|
||||||
"-o",
|
"-d",
|
||||||
"--output",
|
"--directory",
|
||||||
help=f"initialize a kiwi-scp instance in another directory",
|
help=f"initialize a kiwi-scp instance in another directory",
|
||||||
type=click.Path(
|
type=click.Path(
|
||||||
path_type=Path,
|
path_type=Path,
|
||||||
|
@ -31,46 +29,45 @@ from ..misc import user_query
|
||||||
"--force/--no-force",
|
"--force/--no-force",
|
||||||
help=f"use default values even if {KIWI_CONF_NAME} is present",
|
help=f"use default values even if {KIWI_CONF_NAME} is present",
|
||||||
)
|
)
|
||||||
@click.option(
|
@kiwi_command(
|
||||||
"-s/-S",
|
"init",
|
||||||
"--show/--no-show",
|
KiwiCommandType.INSTANCE,
|
||||||
help=f"show effective {KIWI_CONF_NAME} contents instead",
|
short_help="Initializes kiwi-scp",
|
||||||
)
|
)
|
||||||
@pass_instance
|
class CMD(KiwiCommand):
|
||||||
def CMD(ctx: Instance, output: Path, force: bool, show: bool):
|
|
||||||
"""Initialize or reconfigure a kiwi-scp instance"""
|
"""Initialize or reconfigure a kiwi-scp instance"""
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def run_for_instance(cls, instance: Instance, output: Path = None, force: bool = None, **kwargs) -> None:
|
||||||
if output is not None:
|
if output is not None:
|
||||||
ctx.directory = output
|
instance.directory = output
|
||||||
|
|
||||||
current_config = KiwiConfig() if force else ctx.config
|
current_config = KiwiConfig() if force else instance.config
|
||||||
|
|
||||||
if show:
|
|
||||||
# just show the currently effective kiwi.yml
|
|
||||||
click.echo_via_pager(current_config.kiwi_yml)
|
|
||||||
return
|
|
||||||
|
|
||||||
# check force switch
|
# check force switch
|
||||||
if force and os.path.isfile(KIWI_CONF_NAME):
|
if force and os.path.isfile(KIWI_CONF_NAME):
|
||||||
logging.warning(f"Overwriting an existing '{KIWI_CONF_NAME}'!")
|
_logger.warning(f"About to overwrite an existing '{KIWI_CONF_NAME}'!")
|
||||||
|
|
||||||
# build new kiwi dict
|
# build new kiwi dict
|
||||||
kiwi_dict = current_config.kiwi_dict
|
kiwi_dict = current_config.kiwi_dict
|
||||||
kiwi_dict.update({
|
kiwi_dict.update({
|
||||||
"version": user_query("kiwi-scp version to use in this instance", current_config.version),
|
"version": KiwiCommand.user_query("kiwi-scp version to use in this instance", current_config.version),
|
||||||
"storage": {
|
"storage": {
|
||||||
"directory": user_query("local directory for service data", current_config.storage.directory, Path),
|
"directory": KiwiCommand.user_query("local directory for service data",
|
||||||
|
current_config.storage.directory, Path),
|
||||||
},
|
},
|
||||||
"network": {
|
"network": {
|
||||||
"name": user_query("name for local network hub", current_config.network.name),
|
"name": KiwiCommand.user_query("name for local network hub", current_config.network.name),
|
||||||
"cidr": user_query("CIDRv4 block for local network hub", current_config.network.cidr, IPv4Network),
|
"cidr": KiwiCommand.user_query("CIDRv4 block for local network hub", current_config.network.cidr,
|
||||||
|
IPv4Network),
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
# ensure output directory exists
|
# ensure output directory exists
|
||||||
if not os.path.isdir(ctx.directory):
|
if not os.path.isdir(instance.directory):
|
||||||
os.mkdir(ctx.directory)
|
os.mkdir(instance.directory)
|
||||||
|
|
||||||
# write out the new kiwi.yml
|
# write out the new kiwi.yml
|
||||||
with open(ctx.directory.joinpath(KIWI_CONF_NAME), "w") as file:
|
cfg = KiwiConfig.parse_obj(kiwi_dict)
|
||||||
KiwiConfig.parse_obj(kiwi_dict).dump_kiwi_yml(file)
|
with open(instance.directory.joinpath(KIWI_CONF_NAME), "w") as file:
|
||||||
|
cfg.dump_kiwi_yml(file)
|
||||||
|
|
|
@ -1,31 +1,12 @@
|
||||||
import re
|
import re
|
||||||
from typing import Any, Type, Optional
|
from typing import Optional
|
||||||
|
|
||||||
import click
|
|
||||||
import ruamel.yaml
|
import ruamel.yaml
|
||||||
import ruamel.yaml.compat
|
import ruamel.yaml.compat
|
||||||
|
|
||||||
from ._constants import HEADER_KIWI_CONF_NAME
|
from ._constants import HEADER_KIWI_CONF_NAME
|
||||||
|
|
||||||
|
|
||||||
def user_query(description: str, default: Any, cast_to: Type[Any] = str):
|
|
||||||
# prompt user as per argument
|
|
||||||
while True:
|
|
||||||
try:
|
|
||||||
str_value = input(f"Enter {description} [{default}] ").strip()
|
|
||||||
if str_value:
|
|
||||||
return cast_to(str_value)
|
|
||||||
else:
|
|
||||||
return default
|
|
||||||
|
|
||||||
except EOFError:
|
|
||||||
click.echo("Input aborted.")
|
|
||||||
return default
|
|
||||||
|
|
||||||
except Exception as e:
|
|
||||||
click.echo(f"Invalid input: {e}")
|
|
||||||
|
|
||||||
|
|
||||||
class YAML(ruamel.yaml.YAML):
|
class YAML(ruamel.yaml.YAML):
|
||||||
def __init__(self, *args, **kwargs):
|
def __init__(self, *args, **kwargs):
|
||||||
super().__init__(*args, **kwargs)
|
super().__init__(*args, **kwargs)
|
||||||
|
|
Loading…
Reference in a new issue