mirror of https://github.com/home-assistant/core
37 lines
1.1 KiB
Python
37 lines
1.1 KiB
Python
"""Diagnostics support for Modern Forms."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from dataclasses import asdict
|
|
from typing import TYPE_CHECKING, Any
|
|
|
|
from homeassistant.components.diagnostics import async_redact_data
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.const import CONF_MAC
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from .const import DOMAIN
|
|
from .coordinator import ModernFormsDataUpdateCoordinator
|
|
|
|
REDACT_CONFIG = {CONF_MAC}
|
|
REDACT_DEVICE_INFO = {"mac_address", "owner"}
|
|
|
|
|
|
async def async_get_config_entry_diagnostics(
|
|
hass: HomeAssistant, entry: ConfigEntry
|
|
) -> dict[str, Any]:
|
|
"""Return diagnostics for a config entry."""
|
|
coordinator: ModernFormsDataUpdateCoordinator = hass.data[DOMAIN][entry.entry_id]
|
|
if TYPE_CHECKING:
|
|
assert coordinator is not None
|
|
|
|
return {
|
|
"config_entry": async_redact_data(entry.as_dict(), REDACT_CONFIG),
|
|
"device": {
|
|
"info": async_redact_data(
|
|
asdict(coordinator.modern_forms.info), REDACT_DEVICE_INFO
|
|
),
|
|
"status": asdict(coordinator.modern_forms.status),
|
|
},
|
|
}
|