mirror of
https://github.com/yavook/kiwi-scp.git
synced 2024-11-22 04:43:00 +00:00
91 lines
2.1 KiB
Python
91 lines
2.1 KiB
Python
from typing import Any, Type, List, Callable
|
|
|
|
import attr
|
|
import click
|
|
from click.decorators import FC
|
|
|
|
|
|
@attr.s
|
|
class _MultiDecorator:
|
|
options: List[Callable[[FC], FC]] = attr.ib(factory=list)
|
|
|
|
def __call__(self, target: FC):
|
|
for option in reversed(self.options):
|
|
target = option(target)
|
|
|
|
return target
|
|
|
|
|
|
_project_arg = click.argument(
|
|
"project",
|
|
required=False,
|
|
type=click.Path(exists=True),
|
|
default=".",
|
|
)
|
|
|
|
_service_arg = click.argument(
|
|
"service",
|
|
required=False,
|
|
type=str,
|
|
)
|
|
|
|
instance_command = _MultiDecorator([])
|
|
project_command = _MultiDecorator([_project_arg])
|
|
service_command = _MultiDecorator([_project_arg, _service_arg])
|
|
|
|
|
|
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}")
|
|
|
|
|
|
def _surround(string, bang):
|
|
midlane = f"{bang * 3} {string} {bang * 3}"
|
|
sidelane = bang * len(midlane)
|
|
|
|
return f"{sidelane}\n{midlane}\n{sidelane}"
|
|
|
|
|
|
def _emphasize(lines):
|
|
if isinstance(lines, list):
|
|
return '\n'.join([_emphasize(line) for line in lines])
|
|
elif lines:
|
|
return f">>> {lines} <<<"
|
|
else:
|
|
return lines
|
|
|
|
|
|
def are_you_sure(prompt, default="no"):
|
|
if default.lower() == 'yes':
|
|
suffix = "[YES|no]"
|
|
else:
|
|
suffix = "[yes|NO]"
|
|
|
|
answer = input(
|
|
f"{_surround('MUST HAVE CAREFULING IN PROCESS', '!')}\n"
|
|
f"\n"
|
|
f"{_emphasize(prompt)}\n"
|
|
f"\n"
|
|
f"Are you sure you want to proceed? {suffix} "
|
|
).strip().lower()
|
|
|
|
if answer == '':
|
|
answer = default
|
|
|
|
while answer not in ['yes', 'no']:
|
|
answer = input("Please type 'yes' or 'no' explicitly: ").strip().lower()
|
|
|
|
return answer == 'yes'
|