1
0
Fork 0
mirror of https://github.com/yavook/kiwi-scp.git synced 2024-11-22 21:03:00 +00:00
kiwi-scp/kiwi_scp/commands/cmd_enable.py

41 lines
1.2 KiB
Python
Raw Normal View History

2021-12-01 11:29:40 +00:00
import click
2021-12-02 16:19:14 +00:00
from .cmd import KiwiCommandType, KiwiCommand
2021-12-01 11:29:40 +00:00
from .decorators import kiwi_command
from .._constants import KIWI_CONF_NAME
2021-12-02 16:08:14 +00:00
from ..instance import Instance
from ..project import Project
2021-12-01 11:29:40 +00:00
@click.option(
"-f/-F",
"--force/--no-force",
help=f"skip confirmation",
)
2021-12-01 16:49:19 +00:00
@kiwi_command()
2022-01-19 14:35:33 +00:00
class EnableCommand(KiwiCommand):
2021-12-01 16:49:19 +00:00
"""Enable project(s)"""
type = KiwiCommandType.PROJECTS
2021-12-01 11:29:40 +00:00
@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:
2021-12-02 01:38:29 +00:00
if project.config.enabled:
2021-12-01 11:29:40 +00:00
KiwiCommand.print_error(f"Project {project.name} is already enabled!")
return
2021-12-02 01:38:29 +00:00
project.config.enabled = True
2021-12-01 11:29:40 +00:00
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)