kiwi-scp/src/kiwi/subcommands/init.py

80 lines
2.4 KiB
Python
Raw Normal View History

2020-08-06 12:34:25 +00:00
import logging
import os
from ..core import KIWI_CONF_NAME, Parser
2020-08-10 09:24:39 +00:00
from ..config import DefaultConfig, LoadedConfig
2020-08-06 12:34:25 +00:00
2020-08-10 12:50:47 +00:00
from ._utils import SubCommand, is_executable, find_exe_file, get_exe_key
2020-08-06 12:34:25 +00:00
def user_input(config, key, prompt):
# prompt user as per argument
2020-08-10 09:24:39 +00:00
result = input("{} [{}] ".format(prompt, config[key])).strip()
2020-08-06 12:34:25 +00:00
# store result if present
if result:
config[key] = result
2020-08-10 12:50:47 +00:00
def user_input_exe(config, exe_name):
key = get_exe_key(exe_name)
exe_file = config[key]
if not is_executable(exe_file):
2020-08-10 12:50:47 +00:00
logging.info(f"Reconfiguring '{exe_name}' executable path.")
exe_file = find_exe_file(exe_name)
if exe_file is not None:
2020-08-10 12:50:47 +00:00
logging.debug(f"Found executable at '{exe_file}'.")
config[key] = exe_file
else:
2020-08-10 12:50:47 +00:00
user_input(config, key, f"Enter path to '{exe_name}' executable")
2020-08-06 12:34:25 +00:00
class InitCommand(SubCommand):
2020-08-10 09:24:39 +00:00
command = 'init'
2020-08-06 12:34:25 +00:00
@classmethod
def setup(cls):
2020-08-10 13:21:39 +00:00
parser = Parser().get_subparsers().add_parser(
2020-08-10 09:24:39 +00:00
cls.command,
description="Create a new kiwi-config instance"
)
parser.add_argument(
'-f', '--force',
action='store_true',
help=f"Use default values even if {KIWI_CONF_NAME} is present"
2020-08-10 09:24:39 +00:00
)
2020-08-06 12:34:25 +00:00
@classmethod
def run(cls):
logging.info(f"Initializing kiwi-config instance in '{os.getcwd()}'")
2020-08-06 12:34:25 +00:00
2020-08-10 13:21:39 +00:00
if Parser().get_args().force and os.path.isfile(KIWI_CONF_NAME):
2020-08-10 12:50:47 +00:00
logging.warning(f"Overwriting existing '{KIWI_CONF_NAME}'!")
2020-08-10 09:24:39 +00:00
config = DefaultConfig.get()
else:
config = LoadedConfig.get()
2020-08-06 12:34:25 +00:00
# version
2020-08-10 09:24:39 +00:00
user_input(config, 'version', "Enter kiwi-config version for this instance")
2020-08-06 12:34:25 +00:00
# runtime
2020-08-10 09:24:39 +00:00
user_input(config, 'runtime:storage', "Enter local directory for service data")
# markers
2020-08-06 12:34:25 +00:00
user_input(config, 'markers:project', "Enter marker string for project directories")
user_input(config, 'markers:down', "Enter marker string for disabled projects")
# network
2020-08-06 12:34:25 +00:00
user_input(config, 'network:name', "Enter name for local docker network")
user_input(config, 'network:cidr', "Enter CIDR block for local docker network")
# executables
2020-08-10 12:50:47 +00:00
user_input_exe(config, 'docker')
user_input_exe(config, 'docker-compose')
user_input_exe(config, 'sudo')
2020-08-06 12:34:25 +00:00
config.save()