48 lines
1.1 KiB
Python
48 lines
1.1 KiB
Python
"""Diagnostics support for august."""
|
|
from __future__ import annotations
|
|
|
|
from typing import Any
|
|
|
|
from homeassistant.components.diagnostics import async_redact_data
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from . import AugustData
|
|
from .const import DOMAIN
|
|
|
|
TO_REDACT = {
|
|
"HouseID",
|
|
"OfflineKeys",
|
|
"installUserID",
|
|
"invitations",
|
|
"key",
|
|
"pins",
|
|
"pubsubChannel",
|
|
"recentImage",
|
|
"remoteOperateSecret",
|
|
"users",
|
|
"zWaveDSK",
|
|
}
|
|
|
|
|
|
async def async_get_config_entry_diagnostics(
|
|
hass: HomeAssistant, entry: ConfigEntry
|
|
) -> dict[str, Any]:
|
|
"""Return diagnostics for a config entry."""
|
|
data: AugustData = hass.data[DOMAIN][entry.entry_id]
|
|
|
|
return {
|
|
"locks": {
|
|
lock.device_id: async_redact_data(
|
|
data.get_device_detail(lock.device_id).raw, TO_REDACT
|
|
)
|
|
for lock in data.locks
|
|
},
|
|
"doorbells": {
|
|
doorbell.device_id: async_redact_data(
|
|
data.get_device_detail(doorbell.device_id).raw, TO_REDACT
|
|
)
|
|
for doorbell in data.doorbells
|
|
},
|
|
}
|