From 88004f0d2dbe0bfc953200ae16bead91ac5c3f81 Mon Sep 17 00:00:00 2001 From: ldericher <40151420+ldericher@users.noreply.github.com> Date: Wed, 1 Dec 2021 12:29:40 +0100 Subject: [PATCH] "kiwi enable", "kiwi disable" --- kiwi_scp/commands/cmd_disable.py | 39 ++++++++++++++++++++++++++++++++ kiwi_scp/commands/cmd_enable.py | 39 ++++++++++++++++++++++++++++++++ 2 files changed, 78 insertions(+) create mode 100644 kiwi_scp/commands/cmd_disable.py create mode 100644 kiwi_scp/commands/cmd_enable.py diff --git a/kiwi_scp/commands/cmd_disable.py b/kiwi_scp/commands/cmd_disable.py new file mode 100644 index 0000000..69d0c77 --- /dev/null +++ b/kiwi_scp/commands/cmd_disable.py @@ -0,0 +1,39 @@ +import click + +from .cli import KiwiCommand, KiwiCommandType +from .decorators import kiwi_command +from .._constants import KIWI_CONF_NAME +from ..instance import Instance, Project + + +@click.option( + "-f/-F", + "--force/--no-force", + help=f"skip confirmation", +) +@kiwi_command( + cmd_type=KiwiCommandType.PROJECT, +) +class DisableCommand(KiwiCommand): + """Disable a project""" + + @classmethod + def run_for_instance(cls, instance: Instance, force: bool = None) -> None: + if not force: + if not KiwiCommand.danger_confirm("This will disable all projects in this instance."): + return + + super().run_for_instance(instance) + + @classmethod + def run_for_project(cls, instance: Instance, project: Project, **kwargs) -> None: + if not project.project_config.enabled: + KiwiCommand.print_error(f"Project {project.name} is already disabled!") + return + + project.project_config.enabled = False + KiwiCommand.print_header(f"Project {project.name} disabled") + + # write out the new kiwi.yml + with open(instance.directory.joinpath(KIWI_CONF_NAME), "w") as file: + instance.config.dump_kiwi_yml(file) diff --git a/kiwi_scp/commands/cmd_enable.py b/kiwi_scp/commands/cmd_enable.py new file mode 100644 index 0000000..d0e952e --- /dev/null +++ b/kiwi_scp/commands/cmd_enable.py @@ -0,0 +1,39 @@ +import click + +from .cli import KiwiCommand, KiwiCommandType +from .decorators import kiwi_command +from .._constants import KIWI_CONF_NAME +from ..instance import Instance, Project + + +@click.option( + "-f/-F", + "--force/--no-force", + help=f"skip confirmation", +) +@kiwi_command( + cmd_type=KiwiCommandType.PROJECT, +) +class DisableCommand(KiwiCommand): + """Enable a project""" + + @classmethod + def run_for_instance(cls, instance: Instance, force: bool = None) -> None: + if not force: + if not KiwiCommand.danger_confirm("This will enable all projects in this instance."): + return + + super().run_for_instance(instance) + + @classmethod + def run_for_project(cls, instance: Instance, project: Project, **kwargs) -> None: + if project.project_config.enabled: + KiwiCommand.print_error(f"Project {project.name} is already enabled!") + return + + project.project_config.enabled = True + KiwiCommand.print_header(f"Project {project.name} enabled") + + # write out the new kiwi.yml + with open(instance.directory.joinpath(KIWI_CONF_NAME), "w") as file: + instance.config.dump_kiwi_yml(file)