mirror of
https://github.com/home-assistant/core.git
synced 2026-06-01 21:24:17 +01:00
d5c7a04751
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
47 lines
1.1 KiB
Python
47 lines
1.1 KiB
Python
"""Diagnostics support for OpenUV."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Any
|
|
|
|
from homeassistant.components.diagnostics import async_redact_data
|
|
from homeassistant.const import (
|
|
CONF_API_KEY,
|
|
CONF_LATITUDE,
|
|
CONF_LONGITUDE,
|
|
CONF_UNIQUE_ID,
|
|
)
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from .coordinator import OpenUvConfigEntry
|
|
|
|
CONF_COORDINATES = "coordinates"
|
|
CONF_TITLE = "title"
|
|
|
|
TO_REDACT = {
|
|
CONF_API_KEY,
|
|
CONF_LATITUDE,
|
|
CONF_LONGITUDE,
|
|
# Config entry title and unique ID may contain sensitive data:
|
|
CONF_TITLE,
|
|
CONF_UNIQUE_ID,
|
|
}
|
|
|
|
|
|
async def async_get_config_entry_diagnostics(
|
|
hass: HomeAssistant, entry: OpenUvConfigEntry
|
|
) -> dict[str, Any]:
|
|
"""Return diagnostics for a config entry."""
|
|
coordinators = entry.runtime_data
|
|
|
|
return async_redact_data(
|
|
{
|
|
"entry": entry.as_dict(),
|
|
"data": {
|
|
coordinator_name: coordinator.data
|
|
for coordinator_name, coordinator in coordinators.items()
|
|
},
|
|
},
|
|
TO_REDACT,
|
|
)
|