Source code for click_extra.telemetry
# Copyright Kevin Deldycke <kevin@deldycke.com> and contributors.
#
# This program is Free Software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
"""Telemetry utilities."""
from __future__ import annotations
import os
from configparser import RawConfigParser
from gettext import gettext as _
from click.core import ParameterSource
from . import context
from .parameters import ExtraOption
TYPE_CHECKING = False
if TYPE_CHECKING:
from collections.abc import Sequence
import click
[docs]
class TelemetryOption(ExtraOption):
"""A pre-configured `--telemetry`/`--no-telemetry` option flag.
Respects the
[proposed DO_NOT_TRACK environment variable](https://consoledonottrack.com) as a
unified standard to opt-out of telemetry for TUI/console apps: a truthy
`DO_NOT_TRACK` forces telemetry off, overriding the user-defined environment
variables, the auto-generated values, and configuration files. Only an
explicit `--telemetry` on the command line outranks it.
The resolved value is stored in
{data}`ctx.meta[click_extra.context.TELEMETRY] <click_extra.context.TELEMETRY>`,
aligning with every other Click Extra option's per-invocation context-meta
storage pattern.
```{seealso}
- A [knowledge base of telemetry disabling configuration options](https://github.com/beatcracker/toptout).
- And another [list of environment variable to disable telemetry in desktop apps](https://telemetry.timseverien.com/opt-out/).
```
"""
[docs]
def set_telemetry(
self,
ctx: click.Context,
param: click.Parameter,
value: bool,
) -> None:
"""Reconcile the flag with `DO_NOT_TRACK` and store the result on `ctx.meta`.
An explicit `--telemetry`/`--no-telemetry` on the command line wins.
Otherwise a truthy `DO_NOT_TRACK` (bare presence, or any value not
parseable as false, in the permissive spirit of the color environment
variables) forces telemetry off. Read via
{func}`click_extra.context.get(ctx, click_extra.context.TELEMETRY)
<click_extra.context.get>`.
```{note}
`DO_NOT_TRACK` is read here rather than wired through the option's
`envvar`: Click's environment plumbing feeds the raw value straight
to the boolean flag, so `DO_NOT_TRACK=1` would *enable* telemetry,
inverting the convention. Reading it manually keeps the opt-out
meaning, mirroring how {class}`~click_extra.color.ColorOption` reads
`NO_COLOR` and friends.
```
"""
assert self.name is not None # Always set for Option subclasses.
if ctx.get_parameter_source(self.name) is not ParameterSource.COMMANDLINE:
raw = os.environ.get("DO_NOT_TRACK")
if raw is not None and RawConfigParser.BOOLEAN_STATES.get(
raw.lower(), True
):
value = False
context.set(ctx, context.TELEMETRY, value)
def __init__(
self,
param_decls: Sequence[str] | None = None,
default=False,
expose_value=False,
envvar=None,
show_envvar=True,
help=_("Collect telemetry and usage data."),
**kwargs,
) -> None:
if not param_decls:
param_decls = ("--telemetry/--no-telemetry",)
kwargs.setdefault("callback", self.set_telemetry)
super().__init__(
param_decls=param_decls,
default=default,
expose_value=expose_value,
envvar=envvar,
show_envvar=show_envvar,
help=help,
**kwargs,
)