|
|
|
@ -11,8 +11,9 @@ from utils.console import handle_input
|
|
|
|
|
console = Console()
|
|
|
|
|
config = dict # autocomplete
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def crawl(obj: dict, func=lambda x, y: print(x, y, end="\n"), path=None):
|
|
|
|
|
if path is None: # path Default argument value is mutable
|
|
|
|
|
if path is None: # path Default argument value is mutable
|
|
|
|
|
path = []
|
|
|
|
|
for key in obj.keys():
|
|
|
|
|
if type(obj[key]) is dict:
|
|
|
|
@ -53,11 +54,7 @@ def check(value, checks, name):
|
|
|
|
|
and not hasattr(value, "__iter__")
|
|
|
|
|
and (
|
|
|
|
|
("nmin" in checks and checks["nmin"] is not None and value < checks["nmin"])
|
|
|
|
|
or (
|
|
|
|
|
"nmax" in checks
|
|
|
|
|
and checks["nmax"] is not None
|
|
|
|
|
and value > checks["nmax"]
|
|
|
|
|
)
|
|
|
|
|
or ("nmax" in checks and checks["nmax"] is not None and value > checks["nmax"])
|
|
|
|
|
)
|
|
|
|
|
):
|
|
|
|
|
incorrect = True
|
|
|
|
@ -65,16 +62,8 @@ def check(value, checks, name):
|
|
|
|
|
not incorrect
|
|
|
|
|
and hasattr(value, "__iter__")
|
|
|
|
|
and (
|
|
|
|
|
(
|
|
|
|
|
"nmin" in checks
|
|
|
|
|
and checks["nmin"] is not None
|
|
|
|
|
and len(value) < checks["nmin"]
|
|
|
|
|
)
|
|
|
|
|
or (
|
|
|
|
|
"nmax" in checks
|
|
|
|
|
and checks["nmax"] is not None
|
|
|
|
|
and len(value) > checks["nmax"]
|
|
|
|
|
)
|
|
|
|
|
("nmin" in checks and checks["nmin"] is not None and len(value) < checks["nmin"])
|
|
|
|
|
or ("nmax" in checks and checks["nmax"] is not None and len(value) > checks["nmax"])
|
|
|
|
|
)
|
|
|
|
|
):
|
|
|
|
|
incorrect = True
|
|
|
|
@ -82,15 +71,9 @@ def check(value, checks, name):
|
|
|
|
|
if incorrect:
|
|
|
|
|
value = handle_input(
|
|
|
|
|
message=(
|
|
|
|
|
(
|
|
|
|
|
("[blue]Example: " + str(checks["example"]) + "\n")
|
|
|
|
|
if "example" in checks
|
|
|
|
|
else ""
|
|
|
|
|
)
|
|
|
|
|
(("[blue]Example: " + str(checks["example"]) + "\n") if "example" in checks else "")
|
|
|
|
|
+ "[red]"
|
|
|
|
|
+ ("Non-optional ", "Optional ")[
|
|
|
|
|
"optional" in checks and checks["optional"] is True
|
|
|
|
|
]
|
|
|
|
|
+ ("Non-optional ", "Optional ")["optional" in checks and checks["optional"] is True]
|
|
|
|
|
)
|
|
|
|
|
+ "[#C0CAF5 bold]"
|
|
|
|
|
+ str(name)
|
|
|
|
@ -131,9 +114,7 @@ def check_toml(template_file, config_file) -> Tuple[bool, Dict]:
|
|
|
|
|
try:
|
|
|
|
|
template = toml.load(template_file)
|
|
|
|
|
except Exception as error:
|
|
|
|
|
console.print(
|
|
|
|
|
f"[red bold]Encountered error when trying to to load {template_file}: {error}"
|
|
|
|
|
)
|
|
|
|
|
console.print(f"[red bold]Encountered error when trying to to load {template_file}: {error}")
|
|
|
|
|
return False
|
|
|
|
|
try:
|
|
|
|
|
config = toml.load(config_file)
|
|
|
|
|