57 lines
2.0 KiB
Python
57 lines
2.0 KiB
Python
"""Diagnostics for the Subaru integration."""
|
|
from __future__ import annotations
|
|
|
|
from typing import Any
|
|
|
|
from subarulink.const import LATITUDE, LONGITUDE, ODOMETER, VEHICLE_NAME
|
|
|
|
from homeassistant.components.diagnostics.util import async_redact_data
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.const import CONF_DEVICE_ID, CONF_PASSWORD, CONF_PIN, CONF_USERNAME
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.exceptions import HomeAssistantError
|
|
from homeassistant.helpers.device_registry import DeviceEntry
|
|
|
|
from .const import DOMAIN, ENTRY_COORDINATOR, VEHICLE_VIN
|
|
|
|
CONFIG_FIELDS_TO_REDACT = [CONF_USERNAME, CONF_PASSWORD, CONF_PIN, CONF_DEVICE_ID]
|
|
DATA_FIELDS_TO_REDACT = [VEHICLE_VIN, VEHICLE_NAME, LATITUDE, LONGITUDE, ODOMETER]
|
|
|
|
|
|
async def async_get_config_entry_diagnostics(
|
|
hass: HomeAssistant, config_entry: ConfigEntry
|
|
) -> dict[str, Any]:
|
|
"""Return diagnostics for a config entry."""
|
|
coordinator = hass.data[DOMAIN][config_entry.entry_id][ENTRY_COORDINATOR]
|
|
|
|
diagnostics_data = {
|
|
"config_entry": async_redact_data(config_entry.data, CONFIG_FIELDS_TO_REDACT),
|
|
"options": async_redact_data(config_entry.options, []),
|
|
"data": [
|
|
async_redact_data(info, DATA_FIELDS_TO_REDACT)
|
|
for info in coordinator.data.values()
|
|
],
|
|
}
|
|
|
|
return diagnostics_data
|
|
|
|
|
|
async def async_get_device_diagnostics(
|
|
hass: HomeAssistant, config_entry: ConfigEntry, device: DeviceEntry
|
|
) -> dict[str, Any]:
|
|
"""Return diagnostics for a device."""
|
|
coordinator = hass.data[DOMAIN][config_entry.entry_id][ENTRY_COORDINATOR]
|
|
|
|
vin = next(iter(device.identifiers))[1]
|
|
|
|
if info := coordinator.data.get(vin):
|
|
return {
|
|
"config_entry": async_redact_data(
|
|
config_entry.data, CONFIG_FIELDS_TO_REDACT
|
|
),
|
|
"options": async_redact_data(config_entry.options, []),
|
|
"data": async_redact_data(info, DATA_FIELDS_TO_REDACT),
|
|
}
|
|
|
|
raise HomeAssistantError("Device not found")
|