1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00
2020-06-21 14:11:23 -07:00

230 lines
5.8 KiB
Python

"""CLI Command definitions."""
# Standard Library
import sys
from getpass import getuser
from pathlib import Path
# Third Party
import inquirer
from click import group, option, confirm, help_option
# Project
from hyperglass.util import cpu_count
from hyperglass.cli.echo import error, label, cmd_help
from hyperglass.cli.util import build_ui
from hyperglass.cli.static import LABEL, CLI_HELP, E
from hyperglass.cli.formatting import HelpColorsGroup, HelpColorsCommand, random_colors
# Define working directory
WORKING_DIR = Path(__file__).parent
supports_color = "utf" in sys.getfilesystemencoding().lower()
def _print_version(ctx, param, value):
from hyperglass import __version__
if not value or ctx.resilient_parsing:
return
label("hyperglass version: {v}", v=__version__)
ctx.exit()
@group(
cls=HelpColorsGroup,
help=CLI_HELP,
context_settings={"help_option_names": ["-h", "--help"], "color": supports_color},
help_headers_color=LABEL,
help_options_custom_colors=random_colors("build-ui", "start", "secret", "setup"),
)
@option(
"-v",
"--version",
is_flag=True,
callback=_print_version,
expose_value=False,
is_eager=True,
help=cmd_help(E.NUMBERS, "hyperglass version", supports_color),
)
@help_option(
"-h",
"--help",
help=cmd_help(E.FOLDED_HANDS, "Show this help message", supports_color),
)
def hg():
"""Initialize Click Command Group."""
pass
@hg.command(
"build-ui", help=cmd_help(E.BUTTERFLY, "Create a new UI build", supports_color)
)
def build_frontend():
"""Create a new UI build.
Raises:
click.ClickException: Raised on any errors.
"""
return build_ui()
@hg.command( # noqa: C901
"start",
help=cmd_help(E.ROCKET, "Start web server", supports_color),
cls=HelpColorsCommand,
help_options_custom_colors=random_colors("-b", "-d", "-w"),
)
@option("-b", "--build", is_flag=True, help="Render theme & build frontend assets")
@option(
"-d",
"--direct",
is_flag=True,
default=False,
help="Start hyperglass directly instead of through process manager",
)
@option(
"-w",
"--workers",
type=int,
required=False,
default=0,
help=f"Number of workers. By default, calculated from CPU cores [{cpu_count(2)}]",
)
def start(build, direct, workers):
"""Start web server and optionally build frontend assets."""
try:
from hyperglass.main import start
from hyperglass.api import start as uvicorn_start
except ImportError as e:
error("Error importing hyperglass: {}", str(e))
kwargs = {}
if workers != 0:
kwargs["workers"] = workers
try:
if build:
build_complete = build_ui()
if build_complete and not direct:
start(**kwargs)
elif build_complete and direct:
uvicorn_start(**kwargs)
if not build and not direct:
start(**kwargs)
elif not build and direct:
uvicorn_start(**kwargs)
except Exception as err:
error(str(err))
@hg.command(
"secret",
help=cmd_help(E.LOCK, "Generate agent secret", supports_color),
cls=HelpColorsCommand,
help_options_custom_colors=random_colors("-l"),
)
@option(
"-l", "--length", "length", default=32, help="Number of characters [default: 32]"
)
def generate_secret(length):
"""Generate secret for hyperglass-agent.
Arguments:
length {int} -- Length of secret
"""
import secrets
gen_secret = secrets.token_urlsafe(length)
label("Secret: {s}", s=gen_secret)
@hg.command(
"setup",
help=cmd_help(E.TOOLBOX, "Run the setup wizard", supports_color),
cls=HelpColorsCommand,
help_options_custom_colors=random_colors("-d"),
)
@option(
"-d",
"--use-defaults",
"unattended",
default=False,
is_flag=True,
help="Use hyperglass defaults (requires no input)",
)
def setup(unattended):
"""Define application directory, move example files, generate systemd service."""
from hyperglass.cli.util import (
create_dir,
move_files,
make_systemd,
write_to_file,
migrate_static_assets,
install_systemd,
)
user_path = Path.home() / "hyperglass"
root_path = Path("/etc/hyperglass/")
install_paths = [
inquirer.List(
"install_path",
message="Choose a directory for hyperglass",
choices=[user_path, root_path],
)
]
if not unattended:
answer = inquirer.prompt(install_paths)
if answer is None:
error("A directory for hyperglass is required")
install_path = answer["install_path"]
elif unattended:
install_path = user_path
ui_dir = install_path / "static" / "ui"
images_dir = install_path / "static" / "images"
favicon_dir = images_dir / "favicons"
custom_dir = install_path / "static" / "custom"
create_dir(install_path)
for path in (ui_dir, images_dir, custom_dir, favicon_dir):
create_dir(path, parents=True)
migrate_static_assets(install_path)
example_dir = WORKING_DIR.parent / "examples"
files = example_dir.iterdir()
do_move = True
if not unattended and not confirm(
"Do you want to install example configuration files? (This is non-destructive)"
):
do_move = False
if do_move:
move_files(example_dir, install_path, files)
if install_path == user_path:
user = getuser()
else:
user = "root"
do_systemd = True
if not unattended and not confirm(
"Do you want to generate a systemd service file?"
):
do_systemd = False
if do_systemd:
systemd_file = install_path / "hyperglass.service"
systemd = make_systemd(user)
write_to_file(systemd_file, systemd)
install_systemd(install_path)