mirror of
https://github.com/home-assistant/core.git
synced 2026-07-01 03:36:05 +01:00
d766aae436
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: frenck <195327+frenck@users.noreply.github.com>
46 lines
1.1 KiB
Python
46 lines
1.1 KiB
Python
"""Diagnostics support for Notion."""
|
|
|
|
from typing import Any
|
|
|
|
from homeassistant.components.diagnostics import async_redact_data
|
|
from homeassistant.const import CONF_EMAIL, CONF_UNIQUE_ID, CONF_USERNAME
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from .const import CONF_REFRESH_TOKEN, CONF_USER_UUID
|
|
from .coordinator import NotionConfigEntry
|
|
|
|
CONF_DEVICE_KEY = "device_key"
|
|
CONF_HARDWARE_ID = "hardware_id"
|
|
CONF_LAST_BRIDGE_HARDWARE_ID = "last_bridge_hardware_id"
|
|
CONF_TITLE = "title"
|
|
CONF_USER_ID = "user_id"
|
|
|
|
TO_REDACT = {
|
|
CONF_DEVICE_KEY,
|
|
CONF_EMAIL,
|
|
CONF_HARDWARE_ID,
|
|
CONF_LAST_BRIDGE_HARDWARE_ID,
|
|
CONF_REFRESH_TOKEN,
|
|
# Config entry title and unique ID may contain sensitive data:
|
|
CONF_TITLE,
|
|
CONF_UNIQUE_ID,
|
|
CONF_USERNAME,
|
|
CONF_USER_ID,
|
|
CONF_USER_UUID,
|
|
}
|
|
|
|
|
|
async def async_get_config_entry_diagnostics(
|
|
hass: HomeAssistant, entry: NotionConfigEntry
|
|
) -> dict[str, Any]:
|
|
"""Return diagnostics for a config entry."""
|
|
coordinator = entry.runtime_data
|
|
|
|
return async_redact_data(
|
|
{
|
|
"entry": entry.as_dict(),
|
|
"data": coordinator.data.asdict(),
|
|
},
|
|
TO_REDACT,
|
|
)
|