Source code for hubvault.entry.dispatch

"""
Command-line interface entry point for the :mod:`hubvault` package.

This module defines the main Click command group used to expose the CLI for
the project, including version reporting, global repository-path selection,
and help configuration. It builds user-facing metadata from the project
configuration and provides a top-level command entry point.

The module contains the following main components:

* :func:`hubvaultcli` - Main Click command group for the CLI

Example::

    >>> from hubvault.entry.dispatch import hubvaultcli
    >>> # Typically invoked via a Click entry point:
    >>> # python -m hubvault --help

.. note::
   The version display is implemented via a Click option callback, which
   prints version information and exits the process. Runtime repo discovery is
   delegated to :mod:`hubvault.entry.context`.

"""

import click
from click.core import Context, Option

from .base import CONTEXT_SETTINGS
from .context import set_cli_repo_path
from .style import echo, style_text
from ..config.meta import __TITLE__, __VERSION__, __AUTHOR__, __AUTHOR_EMAIL__, __DESCRIPTION__

_raw_authors = [item.strip() for item in __AUTHOR__.split(',') if item.strip()]
_raw_emails = [item.strip() for item in __AUTHOR_EMAIL__.split(',')]
if len(_raw_emails) < len(_raw_authors):  # pragma: no cover
    _raw_emails += [None] * (len(_raw_authors) - len(_raw_emails))
elif len(_raw_emails) > len(_raw_authors):  # pragma: no cover
    _raw_emails[len(_raw_authors) - 1] = tuple(_raw_emails[len(_raw_authors) - 1:])
    del _raw_emails[len(_raw_authors):]

_author_tuples = [
    (author, tuple([item for item in (email if isinstance(email, tuple) else ((email,) if email else ())) if item]))
    for author, email in zip(_raw_authors, _raw_emails)
]
_authors = [
    author if not emails else '{author} ({emails})'.format(author=author, emails=', '.join(emails))
    for author, emails in _author_tuples
]


# noinspection PyUnusedLocal




@click.group(context_settings=CONTEXT_SETTINGS, help=__DESCRIPTION__)
@click.option(
    "-C",
    "repo_path",
    default=None,
    type=click.Path(file_okay=False, dir_okay=True),
    help="Run the command as if hubvault was started in the given path.",
)
@click.option('-v', '--version', is_flag=True,
              callback=print_version, expose_value=False, is_eager=True,
              help="Show hubvault's version information.")
@click.pass_context
def hubvaultcli(ctx: Context, repo_path: str) -> None:
    """
    Main Click command group for the :mod:`hubvault` CLI.

    This command group provides a common entry point for subcommands and
    integrates global options such as ``-C``, ``--version``, and help flags.

    :param ctx: Click context for the current command invocation.
    :type ctx: :class:`click.core.Context`
    :param repo_path: Optional repo path passed through ``-C``.
    :type repo_path: str

    :return: ``None``.
    :rtype: None

    Example::

        >>> # Typically invoked via a console entry point:
        >>> # $ hubvault -C /path/to/repo status

    """
    set_cli_repo_path(ctx, repo_path)