2022-02-01 00:10:55 +00:00
|
|
|
"""Diagnostics support for SamsungTV."""
|
|
|
|
from __future__ import annotations
|
|
|
|
|
2022-02-17 11:35:02 +00:00
|
|
|
from typing import Any
|
|
|
|
|
2022-02-01 00:10:55 +00:00
|
|
|
from homeassistant.components.diagnostics import async_redact_data
|
|
|
|
from homeassistant.config_entries import ConfigEntry
|
|
|
|
from homeassistant.const import CONF_TOKEN
|
|
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
|
2022-02-17 11:35:02 +00:00
|
|
|
from .bridge import SamsungTVLegacyBridge, SamsungTVWSBridge
|
|
|
|
from .const import DOMAIN
|
|
|
|
|
2022-02-01 00:10:55 +00:00
|
|
|
TO_REDACT = {CONF_TOKEN}
|
|
|
|
|
|
|
|
|
|
|
|
async def async_get_config_entry_diagnostics(
|
|
|
|
hass: HomeAssistant, entry: ConfigEntry
|
2022-02-17 11:35:02 +00:00
|
|
|
) -> dict[str, Any]:
|
2022-02-01 00:10:55 +00:00
|
|
|
"""Return diagnostics for a config entry."""
|
2022-02-17 11:35:02 +00:00
|
|
|
bridge: SamsungTVLegacyBridge | SamsungTVWSBridge = hass.data[DOMAIN][
|
|
|
|
entry.entry_id
|
|
|
|
]
|
|
|
|
return {
|
|
|
|
"entry": async_redact_data(entry.as_dict(), TO_REDACT),
|
|
|
|
"device_info": await hass.async_add_executor_job(bridge.device_info),
|
|
|
|
}
|