mirror of https://github.com/home-assistant/core
34 lines
836 B
Python
34 lines
836 B
Python
"""Diagnostics support for Tile."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Any
|
|
|
|
from homeassistant.components.diagnostics import async_redact_data
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.const import CONF_LATITUDE, CONF_LONGITUDE, CONF_UUID
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from . import TileData
|
|
from .const import DOMAIN
|
|
|
|
CONF_ALTITUDE = "altitude"
|
|
|
|
TO_REDACT = {
|
|
CONF_ALTITUDE,
|
|
CONF_LATITUDE,
|
|
CONF_LONGITUDE,
|
|
CONF_UUID,
|
|
}
|
|
|
|
|
|
async def async_get_config_entry_diagnostics(
|
|
hass: HomeAssistant, entry: ConfigEntry
|
|
) -> dict[str, Any]:
|
|
"""Return diagnostics for a config entry."""
|
|
data: TileData = hass.data[DOMAIN][entry.entry_id]
|
|
|
|
return async_redact_data(
|
|
{"tiles": [tile.as_dict() for tile in data.tiles.values()]}, TO_REDACT
|
|
)
|