2020-08-06 12:34:25 +00:00
|
|
|
import logging
|
|
|
|
import os
|
|
|
|
|
2020-08-08 17:41:11 +00:00
|
|
|
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)
|
2020-08-10 12:05:19 +00:00
|
|
|
exe_file = config[key]
|
2020-08-08 17:41:11 +00:00
|
|
|
|
2020-08-10 12:05:19 +00:00
|
|
|
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)
|
2020-08-10 12:05:19 +00:00
|
|
|
|
|
|
|
if exe_file is not None:
|
2020-08-10 12:50:47 +00:00
|
|
|
logging.debug(f"Found executable at '{exe_file}'.")
|
2020-08-10 12:05:19 +00:00
|
|
|
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-08 17:41:11 +00:00
|
|
|
|
|
|
|
|
2020-08-06 12:34:25 +00:00
|
|
|
class InitCommand(SubCommand):
|
2020-08-10 13:48:15 +00:00
|
|
|
def __init__(self):
|
|
|
|
super().__init__(
|
|
|
|
'init',
|
2020-08-10 09:24:39 +00:00
|
|
|
description="Create a new kiwi-config instance"
|
|
|
|
)
|
|
|
|
|
2020-08-11 10:33:21 +00:00
|
|
|
self._parser.add_argument(
|
2020-08-10 09:24:39 +00:00
|
|
|
'-f', '--force',
|
|
|
|
action='store_true',
|
2020-08-10 14:35:38 +00:00
|
|
|
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
|
|
|
|
2020-08-10 13:48:15 +00:00
|
|
|
def run(self):
|
2020-08-10 12:05:19 +00:00
|
|
|
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
|
|
|
|
2020-08-10 12:05:19 +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
|
|
|
|
2020-08-10 12:05:19 +00:00
|
|
|
# runtime
|
2020-08-10 09:24:39 +00:00
|
|
|
user_input(config, 'runtime:storage', "Enter local directory for service data")
|
2020-08-08 17:41:11 +00:00
|
|
|
|
2020-08-10 12:05:19 +00:00
|
|
|
# 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")
|
|
|
|
|
2020-08-10 12:05:19 +00:00
|
|
|
# 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")
|
|
|
|
|
2020-08-10 12:05:19 +00:00
|
|
|
# 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()
|