mobili_cli/mobili_cli/cli.py

64 lines
1.6 KiB
Python
Raw Permalink Normal View History

2021-08-23 01:08:25 +02:00
import os
import sys
import click
CONTEXT_SETTINGS = dict(auto_envvar_prefix="COMPLEX")
class Environment:
def __init__(self):
self.verbose = False
self.home = os.getcwd()
def log(self, msg, *args):
"""Logs a message to stderr."""
if args:
msg %= args
click.echo(msg, file=sys.stderr)
def vlog(self, msg, *args):
"""Logs a message to stderr only if verbose is enabled."""
if self.verbose:
self.log(msg, *args)
pass_environment = click.make_pass_decorator(Environment, ensure=True)
cmd_folder = os.path.abspath(os.path.join(os.path.dirname(__file__), "commands"))
2021-10-01 01:55:09 +02:00
# print(cmd_folder)
2021-08-23 01:08:25 +02:00
class ComplexCLI(click.MultiCommand):
def list_commands(self, ctx):
rv = []
for filename in os.listdir(cmd_folder):
if filename.endswith(".py") and filename.startswith("cmd_"):
rv.append(filename[4:-3])
rv.sort()
return rv
def get_command(self, ctx, name):
try:
mod = __import__(f"mobili_cli.commands.cmd_{name}", None, None, ["cli"])
except ImportError:
return
return mod.cli
@click.command(cls=ComplexCLI, context_settings=CONTEXT_SETTINGS)
@click.option(
"--home",
type=click.Path(exists=True, file_okay=False, resolve_path=True),
help="Changes the folder to operate on.",
)
@click.option("-v", "--verbose", is_flag=True, help="Enables verbose mode.")
@pass_environment
2021-10-01 01:55:09 +02:00
2021-08-23 01:08:25 +02:00
def cli(ctx, verbose, home):
"""A mobilizon command line interface."""
ctx.verbose = verbose
2021-10-01 01:55:09 +02:00
# click.echo('Hello mobili_cli')
2021-08-23 01:08:25 +02:00
if home is not None:
ctx.home = home