715 lines
24 KiB
Python
715 lines
24 KiB
Python
"""Support for SimpliSafe alarm systems."""
|
|
from __future__ import annotations
|
|
|
|
import asyncio
|
|
from collections.abc import Awaitable, Callable, Iterable
|
|
from datetime import timedelta
|
|
from typing import TYPE_CHECKING, Any, cast
|
|
|
|
from simplipy import API
|
|
from simplipy.device import Device, DeviceTypes
|
|
from simplipy.errors import (
|
|
EndpointUnavailableError,
|
|
InvalidCredentialsError,
|
|
SimplipyError,
|
|
)
|
|
from simplipy.system import SystemNotification
|
|
from simplipy.system.v2 import SystemV2
|
|
from simplipy.system.v3 import (
|
|
VOLUME_HIGH,
|
|
VOLUME_LOW,
|
|
VOLUME_MEDIUM,
|
|
VOLUME_OFF,
|
|
SystemV3,
|
|
)
|
|
from simplipy.websocket import (
|
|
EVENT_AUTOMATIC_TEST,
|
|
EVENT_CAMERA_MOTION_DETECTED,
|
|
EVENT_CONNECTION_LOST,
|
|
EVENT_CONNECTION_RESTORED,
|
|
EVENT_DEVICE_TEST,
|
|
EVENT_DOORBELL_DETECTED,
|
|
EVENT_LOCK_LOCKED,
|
|
EVENT_LOCK_UNLOCKED,
|
|
EVENT_POWER_OUTAGE,
|
|
EVENT_POWER_RESTORED,
|
|
EVENT_SECRET_ALERT_TRIGGERED,
|
|
EVENT_SENSOR_PAIRED_AND_NAMED,
|
|
EVENT_USER_INITIATED_TEST,
|
|
WebsocketEvent,
|
|
)
|
|
import voluptuous as vol
|
|
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.const import (
|
|
ATTR_CODE,
|
|
CONF_CODE,
|
|
CONF_TOKEN,
|
|
EVENT_HOMEASSISTANT_STOP,
|
|
)
|
|
from homeassistant.core import CoreState, Event, HomeAssistant, ServiceCall, callback
|
|
from homeassistant.exceptions import ConfigEntryAuthFailed, ConfigEntryNotReady
|
|
from homeassistant.helpers import (
|
|
aiohttp_client,
|
|
config_validation as cv,
|
|
device_registry as dr,
|
|
)
|
|
from homeassistant.helpers.dispatcher import (
|
|
async_dispatcher_connect,
|
|
async_dispatcher_send,
|
|
)
|
|
from homeassistant.helpers.entity import DeviceInfo
|
|
from homeassistant.helpers.service import (
|
|
async_register_admin_service,
|
|
verify_domain_control,
|
|
)
|
|
from homeassistant.helpers.update_coordinator import (
|
|
CoordinatorEntity,
|
|
DataUpdateCoordinator,
|
|
UpdateFailed,
|
|
)
|
|
|
|
from .const import (
|
|
ATTR_ALARM_DURATION,
|
|
ATTR_ALARM_VOLUME,
|
|
ATTR_CHIME_VOLUME,
|
|
ATTR_ENTRY_DELAY_AWAY,
|
|
ATTR_ENTRY_DELAY_HOME,
|
|
ATTR_EXIT_DELAY_AWAY,
|
|
ATTR_EXIT_DELAY_HOME,
|
|
ATTR_LIGHT,
|
|
ATTR_VOICE_PROMPT_VOLUME,
|
|
CONF_USER_ID,
|
|
DOMAIN,
|
|
LOGGER,
|
|
)
|
|
|
|
ATTR_CATEGORY = "category"
|
|
ATTR_LAST_EVENT_CHANGED_BY = "last_event_changed_by"
|
|
ATTR_LAST_EVENT_INFO = "last_event_info"
|
|
ATTR_LAST_EVENT_SENSOR_NAME = "last_event_sensor_name"
|
|
ATTR_LAST_EVENT_SENSOR_SERIAL = "last_event_sensor_serial"
|
|
ATTR_LAST_EVENT_SENSOR_TYPE = "last_event_sensor_type"
|
|
ATTR_LAST_EVENT_TIMESTAMP = "last_event_timestamp"
|
|
ATTR_LAST_EVENT_TYPE = "last_event_type"
|
|
ATTR_LAST_EVENT_TYPE = "last_event_type"
|
|
ATTR_MESSAGE = "message"
|
|
ATTR_PIN_LABEL = "label"
|
|
ATTR_PIN_LABEL_OR_VALUE = "label_or_pin"
|
|
ATTR_PIN_VALUE = "pin"
|
|
ATTR_SYSTEM_ID = "system_id"
|
|
ATTR_TIMESTAMP = "timestamp"
|
|
|
|
DEFAULT_ENTITY_MODEL = "alarm_control_panel"
|
|
DEFAULT_ENTITY_NAME = "Alarm Control Panel"
|
|
DEFAULT_REST_API_ERROR_COUNT = 2
|
|
DEFAULT_SCAN_INTERVAL = timedelta(seconds=30)
|
|
DEFAULT_SOCKET_MIN_RETRY = 15
|
|
|
|
|
|
DISPATCHER_TOPIC_WEBSOCKET_EVENT = "simplisafe_websocket_event_{0}"
|
|
|
|
EVENT_SIMPLISAFE_EVENT = "SIMPLISAFE_EVENT"
|
|
EVENT_SIMPLISAFE_NOTIFICATION = "SIMPLISAFE_NOTIFICATION"
|
|
|
|
PLATFORMS = (
|
|
"alarm_control_panel",
|
|
"binary_sensor",
|
|
"lock",
|
|
"sensor",
|
|
)
|
|
|
|
VOLUME_MAP = {
|
|
"high": VOLUME_HIGH,
|
|
"low": VOLUME_LOW,
|
|
"medium": VOLUME_MEDIUM,
|
|
"off": VOLUME_OFF,
|
|
}
|
|
|
|
SERVICE_BASE_SCHEMA = vol.Schema({vol.Required(ATTR_SYSTEM_ID): cv.positive_int})
|
|
|
|
SERVICE_REMOVE_PIN_SCHEMA = SERVICE_BASE_SCHEMA.extend(
|
|
{vol.Required(ATTR_PIN_LABEL_OR_VALUE): cv.string}
|
|
)
|
|
|
|
SERVICE_SET_PIN_SCHEMA = SERVICE_BASE_SCHEMA.extend(
|
|
{vol.Required(ATTR_PIN_LABEL): cv.string, vol.Required(ATTR_PIN_VALUE): cv.string}
|
|
)
|
|
|
|
SERVICE_SET_SYSTEM_PROPERTIES_SCHEMA = SERVICE_BASE_SCHEMA.extend(
|
|
{
|
|
vol.Optional(ATTR_ALARM_DURATION): vol.All(
|
|
cv.time_period,
|
|
lambda value: value.total_seconds(),
|
|
vol.Range(min=30, max=480),
|
|
),
|
|
vol.Optional(ATTR_ALARM_VOLUME): vol.All(vol.In(VOLUME_MAP), VOLUME_MAP.get),
|
|
vol.Optional(ATTR_CHIME_VOLUME): vol.All(vol.In(VOLUME_MAP), VOLUME_MAP.get),
|
|
vol.Optional(ATTR_ENTRY_DELAY_AWAY): vol.All(
|
|
cv.time_period,
|
|
lambda value: value.total_seconds(),
|
|
vol.Range(min=30, max=255),
|
|
),
|
|
vol.Optional(ATTR_ENTRY_DELAY_HOME): vol.All(
|
|
cv.time_period, lambda value: value.total_seconds(), vol.Range(max=255)
|
|
),
|
|
vol.Optional(ATTR_EXIT_DELAY_AWAY): vol.All(
|
|
cv.time_period,
|
|
lambda value: value.total_seconds(),
|
|
vol.Range(min=45, max=255),
|
|
),
|
|
vol.Optional(ATTR_EXIT_DELAY_HOME): vol.All(
|
|
cv.time_period, lambda value: value.total_seconds(), vol.Range(max=255)
|
|
),
|
|
vol.Optional(ATTR_LIGHT): cv.boolean,
|
|
vol.Optional(ATTR_VOICE_PROMPT_VOLUME): vol.All(
|
|
vol.In(VOLUME_MAP), VOLUME_MAP.get
|
|
),
|
|
}
|
|
)
|
|
|
|
WEBSOCKET_EVENTS_REQUIRING_SERIAL = [EVENT_LOCK_LOCKED, EVENT_LOCK_UNLOCKED]
|
|
WEBSOCKET_EVENTS_TO_FIRE_HASS_EVENT = [
|
|
EVENT_AUTOMATIC_TEST,
|
|
EVENT_CAMERA_MOTION_DETECTED,
|
|
EVENT_DOORBELL_DETECTED,
|
|
EVENT_DEVICE_TEST,
|
|
EVENT_SECRET_ALERT_TRIGGERED,
|
|
EVENT_SENSOR_PAIRED_AND_NAMED,
|
|
EVENT_USER_INITIATED_TEST,
|
|
]
|
|
|
|
CONFIG_SCHEMA = cv.deprecated(DOMAIN)
|
|
|
|
|
|
@callback
|
|
def _async_standardize_config_entry(hass: HomeAssistant, entry: ConfigEntry) -> None:
|
|
"""Bring a config entry up to current standards."""
|
|
if CONF_TOKEN not in entry.data:
|
|
raise ConfigEntryAuthFailed(
|
|
"New SimpliSafe OAuth standard requires re-authentication"
|
|
)
|
|
|
|
entry_updates = {}
|
|
if not entry.unique_id:
|
|
# If the config entry doesn't already have a unique ID, set one:
|
|
entry_updates["unique_id"] = entry.data[CONF_USER_ID]
|
|
if CONF_CODE in entry.data:
|
|
# If an alarm code was provided as part of configuration.yaml, pop it out of
|
|
# the config entry's data and move it to options:
|
|
data = {**entry.data}
|
|
entry_updates["data"] = data
|
|
entry_updates["options"] = {
|
|
**entry.options,
|
|
CONF_CODE: data.pop(CONF_CODE),
|
|
}
|
|
if entry_updates:
|
|
hass.config_entries.async_update_entry(entry, **entry_updates)
|
|
|
|
|
|
@callback
|
|
def _async_register_base_station(
|
|
hass: HomeAssistant, entry: ConfigEntry, system: SystemV2 | SystemV3
|
|
) -> None:
|
|
"""Register a new bridge."""
|
|
device_registry = dr.async_get(hass)
|
|
device_registry.async_get_or_create(
|
|
config_entry_id=entry.entry_id,
|
|
identifiers={(DOMAIN, system.system_id)},
|
|
manufacturer="SimpliSafe",
|
|
model=system.version,
|
|
name=system.address,
|
|
)
|
|
|
|
|
|
async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
|
"""Set up SimpliSafe as config entry."""
|
|
_async_standardize_config_entry(hass, entry)
|
|
|
|
_verify_domain_control = verify_domain_control(hass, DOMAIN)
|
|
websession = aiohttp_client.async_get_clientsession(hass)
|
|
|
|
try:
|
|
api = await API.async_from_refresh_token(
|
|
entry.data[CONF_TOKEN], session=websession
|
|
)
|
|
except InvalidCredentialsError as err:
|
|
raise ConfigEntryAuthFailed from err
|
|
except SimplipyError as err:
|
|
LOGGER.error("Config entry failed: %s", err)
|
|
raise ConfigEntryNotReady from err
|
|
|
|
simplisafe = SimpliSafe(hass, entry, api)
|
|
|
|
try:
|
|
await simplisafe.async_init()
|
|
except SimplipyError as err:
|
|
raise ConfigEntryNotReady from err
|
|
|
|
hass.data.setdefault(DOMAIN, {})
|
|
hass.data[DOMAIN][entry.entry_id] = simplisafe
|
|
|
|
hass.config_entries.async_setup_platforms(entry, PLATFORMS)
|
|
|
|
@callback
|
|
def verify_system_exists(
|
|
coro: Callable[..., Awaitable]
|
|
) -> Callable[..., Awaitable]:
|
|
"""Log an error if a service call uses an invalid system ID."""
|
|
|
|
async def decorator(call: ServiceCall) -> None:
|
|
"""Decorate."""
|
|
system_id = int(call.data[ATTR_SYSTEM_ID])
|
|
if system_id not in simplisafe.systems:
|
|
LOGGER.error("Unknown system ID in service call: %s", system_id)
|
|
return
|
|
await coro(call)
|
|
|
|
return decorator
|
|
|
|
@callback
|
|
def v3_only(coro: Callable[..., Awaitable]) -> Callable[..., Awaitable]:
|
|
"""Log an error if the decorated coroutine is called with a v2 system."""
|
|
|
|
async def decorator(call: ServiceCall) -> None:
|
|
"""Decorate."""
|
|
system = simplisafe.systems[int(call.data[ATTR_SYSTEM_ID])]
|
|
if system.version != 3:
|
|
LOGGER.error("Service only available on V3 systems")
|
|
return
|
|
await coro(call)
|
|
|
|
return decorator
|
|
|
|
@verify_system_exists
|
|
@_verify_domain_control
|
|
async def clear_notifications(call: ServiceCall) -> None:
|
|
"""Clear all active notifications."""
|
|
system = simplisafe.systems[call.data[ATTR_SYSTEM_ID]]
|
|
try:
|
|
await system.async_clear_notifications()
|
|
except SimplipyError as err:
|
|
LOGGER.error("Error during service call: %s", err)
|
|
|
|
@verify_system_exists
|
|
@_verify_domain_control
|
|
async def remove_pin(call: ServiceCall) -> None:
|
|
"""Remove a PIN."""
|
|
system = simplisafe.systems[call.data[ATTR_SYSTEM_ID]]
|
|
try:
|
|
await system.async_remove_pin(call.data[ATTR_PIN_LABEL_OR_VALUE])
|
|
except SimplipyError as err:
|
|
LOGGER.error("Error during service call: %s", err)
|
|
|
|
@verify_system_exists
|
|
@_verify_domain_control
|
|
async def set_pin(call: ServiceCall) -> None:
|
|
"""Set a PIN."""
|
|
system = simplisafe.systems[call.data[ATTR_SYSTEM_ID]]
|
|
try:
|
|
await system.async_set_pin(
|
|
call.data[ATTR_PIN_LABEL], call.data[ATTR_PIN_VALUE]
|
|
)
|
|
except SimplipyError as err:
|
|
LOGGER.error("Error during service call: %s", err)
|
|
|
|
@verify_system_exists
|
|
@v3_only
|
|
@_verify_domain_control
|
|
async def set_system_properties(call: ServiceCall) -> None:
|
|
"""Set one or more system parameters."""
|
|
system = cast(SystemV3, simplisafe.systems[call.data[ATTR_SYSTEM_ID]])
|
|
try:
|
|
await system.async_set_properties(
|
|
{
|
|
prop: value
|
|
for prop, value in call.data.items()
|
|
if prop != ATTR_SYSTEM_ID
|
|
}
|
|
)
|
|
except SimplipyError as err:
|
|
LOGGER.error("Error during service call: %s", err)
|
|
|
|
for service, method, schema in (
|
|
("clear_notifications", clear_notifications, None),
|
|
("remove_pin", remove_pin, SERVICE_REMOVE_PIN_SCHEMA),
|
|
("set_pin", set_pin, SERVICE_SET_PIN_SCHEMA),
|
|
(
|
|
"set_system_properties",
|
|
set_system_properties,
|
|
SERVICE_SET_SYSTEM_PROPERTIES_SCHEMA,
|
|
),
|
|
):
|
|
async_register_admin_service(hass, DOMAIN, service, method, schema=schema)
|
|
|
|
entry.async_on_unload(entry.add_update_listener(async_reload_entry))
|
|
|
|
return True
|
|
|
|
|
|
async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
|
"""Unload a SimpliSafe config entry."""
|
|
unload_ok = await hass.config_entries.async_unload_platforms(entry, PLATFORMS)
|
|
if unload_ok:
|
|
hass.data[DOMAIN].pop(entry.entry_id)
|
|
|
|
return unload_ok
|
|
|
|
|
|
async def async_reload_entry(hass: HomeAssistant, entry: ConfigEntry) -> None:
|
|
"""Handle an options update."""
|
|
await hass.config_entries.async_reload(entry.entry_id)
|
|
|
|
|
|
class SimpliSafe:
|
|
"""Define a SimpliSafe data object."""
|
|
|
|
def __init__(self, hass: HomeAssistant, entry: ConfigEntry, api: API) -> None:
|
|
"""Initialize."""
|
|
self._api = api
|
|
self._hass = hass
|
|
self._system_notifications: dict[int, set[SystemNotification]] = {}
|
|
self.entry = entry
|
|
self.initial_event_to_use: dict[int, dict[str, Any]] = {}
|
|
self.systems: dict[int, SystemV2 | SystemV3] = {}
|
|
|
|
# This will get filled in by async_init:
|
|
self.coordinator: DataUpdateCoordinator | None = None
|
|
|
|
@callback
|
|
def _async_process_new_notifications(self, system: SystemV2 | SystemV3) -> None:
|
|
"""Act on any new system notifications."""
|
|
if self._hass.state != CoreState.running:
|
|
# If HASS isn't fully running yet, it may cause the SIMPLISAFE_NOTIFICATION
|
|
# event to fire before dependent components (like automation) are fully
|
|
# ready. If that's the case, skip:
|
|
return
|
|
|
|
latest_notifications = set(system.notifications)
|
|
|
|
to_add = latest_notifications.difference(
|
|
self._system_notifications[system.system_id]
|
|
)
|
|
|
|
if not to_add:
|
|
return
|
|
|
|
LOGGER.debug("New system notifications: %s", to_add)
|
|
|
|
for notification in to_add:
|
|
text = notification.text
|
|
if notification.link:
|
|
text = f"{text} For more information: {notification.link}"
|
|
|
|
self._hass.bus.async_fire(
|
|
EVENT_SIMPLISAFE_NOTIFICATION,
|
|
event_data={
|
|
ATTR_CATEGORY: notification.category,
|
|
ATTR_CODE: notification.code,
|
|
ATTR_MESSAGE: text,
|
|
ATTR_TIMESTAMP: notification.timestamp,
|
|
},
|
|
)
|
|
|
|
self._system_notifications[system.system_id] = latest_notifications
|
|
|
|
async def _async_websocket_on_connect(self) -> None:
|
|
"""Define a callback for connecting to the websocket."""
|
|
if TYPE_CHECKING:
|
|
assert self._api.websocket
|
|
await self._api.websocket.async_listen()
|
|
|
|
@callback
|
|
def _async_websocket_on_event(self, event: WebsocketEvent) -> None:
|
|
"""Define a callback for receiving a websocket event."""
|
|
LOGGER.debug("New websocket event: %s", event)
|
|
|
|
async_dispatcher_send(
|
|
self._hass, DISPATCHER_TOPIC_WEBSOCKET_EVENT.format(event.system_id), event
|
|
)
|
|
|
|
if event.event_type not in WEBSOCKET_EVENTS_TO_FIRE_HASS_EVENT:
|
|
return
|
|
|
|
sensor_type: str | None
|
|
if event.sensor_type:
|
|
sensor_type = event.sensor_type.name
|
|
else:
|
|
sensor_type = None
|
|
|
|
self._hass.bus.async_fire(
|
|
EVENT_SIMPLISAFE_EVENT,
|
|
event_data={
|
|
ATTR_LAST_EVENT_CHANGED_BY: event.changed_by,
|
|
ATTR_LAST_EVENT_TYPE: event.event_type,
|
|
ATTR_LAST_EVENT_INFO: event.info,
|
|
ATTR_LAST_EVENT_SENSOR_NAME: event.sensor_name,
|
|
ATTR_LAST_EVENT_SENSOR_SERIAL: event.sensor_serial,
|
|
ATTR_LAST_EVENT_SENSOR_TYPE: sensor_type,
|
|
ATTR_SYSTEM_ID: event.system_id,
|
|
ATTR_LAST_EVENT_TIMESTAMP: event.timestamp,
|
|
},
|
|
)
|
|
|
|
async def async_init(self) -> None:
|
|
"""Initialize the SimpliSafe "manager" class."""
|
|
if TYPE_CHECKING:
|
|
assert self._api.refresh_token
|
|
assert self._api.websocket
|
|
|
|
self._api.websocket.add_connect_listener(self._async_websocket_on_connect)
|
|
self._api.websocket.add_event_listener(self._async_websocket_on_event)
|
|
asyncio.create_task(self._api.websocket.async_connect())
|
|
|
|
async def async_websocket_disconnect_listener(_: Event) -> None:
|
|
"""Define an event handler to disconnect from the websocket."""
|
|
if TYPE_CHECKING:
|
|
assert self._api.websocket
|
|
|
|
if self._api.websocket.connected:
|
|
await self._api.websocket.async_disconnect()
|
|
|
|
self.entry.async_on_unload(
|
|
self._hass.bus.async_listen_once(
|
|
EVENT_HOMEASSISTANT_STOP, async_websocket_disconnect_listener
|
|
)
|
|
)
|
|
|
|
self.systems = await self._api.async_get_systems()
|
|
for system in self.systems.values():
|
|
self._system_notifications[system.system_id] = set()
|
|
|
|
_async_register_base_station(self._hass, self.entry, system)
|
|
|
|
# Future events will come from the websocket, but since subscription to the
|
|
# websocket doesn't provide the most recent event, we grab it from the REST
|
|
# API to ensure event-related attributes aren't empty on startup:
|
|
try:
|
|
self.initial_event_to_use[
|
|
system.system_id
|
|
] = await system.async_get_latest_event()
|
|
except SimplipyError as err:
|
|
LOGGER.error("Error while fetching initial event: %s", err)
|
|
self.initial_event_to_use[system.system_id] = {}
|
|
|
|
self.coordinator = DataUpdateCoordinator(
|
|
self._hass,
|
|
LOGGER,
|
|
name=self.entry.data[CONF_USER_ID],
|
|
update_interval=DEFAULT_SCAN_INTERVAL,
|
|
update_method=self.async_update,
|
|
)
|
|
|
|
@callback
|
|
def async_save_refresh_token(token: str) -> None:
|
|
"""Save a refresh token to the config entry."""
|
|
LOGGER.info("Saving new refresh token to HASS storage")
|
|
self._hass.config_entries.async_update_entry(
|
|
self.entry,
|
|
data={**self.entry.data, CONF_TOKEN: token},
|
|
)
|
|
|
|
self.entry.async_on_unload(
|
|
self._api.add_refresh_token_listener(async_save_refresh_token)
|
|
)
|
|
|
|
async_save_refresh_token(self._api.refresh_token)
|
|
|
|
async def async_update(self) -> None:
|
|
"""Get updated data from SimpliSafe."""
|
|
|
|
async def async_update_system(system: SystemV2 | SystemV3) -> None:
|
|
"""Update a system."""
|
|
await system.async_update(cached=system.version != 3)
|
|
self._async_process_new_notifications(system)
|
|
|
|
tasks = [async_update_system(system) for system in self.systems.values()]
|
|
results = await asyncio.gather(*tasks, return_exceptions=True)
|
|
|
|
for result in results:
|
|
if isinstance(result, InvalidCredentialsError):
|
|
raise ConfigEntryAuthFailed("Invalid credentials") from result
|
|
|
|
if isinstance(result, EndpointUnavailableError):
|
|
# In case the user attempts an action not allowed in their current plan,
|
|
# we merely log that message at INFO level (so the user is aware,
|
|
# but not spammed with ERROR messages that they cannot change):
|
|
LOGGER.info(result)
|
|
|
|
if isinstance(result, SimplipyError):
|
|
raise UpdateFailed(f"SimpliSafe error while updating: {result}")
|
|
|
|
|
|
class SimpliSafeEntity(CoordinatorEntity):
|
|
"""Define a base SimpliSafe entity."""
|
|
|
|
def __init__(
|
|
self,
|
|
simplisafe: SimpliSafe,
|
|
system: SystemV2 | SystemV3,
|
|
*,
|
|
device: Device | None = None,
|
|
additional_websocket_events: Iterable[str] | None = None,
|
|
) -> None:
|
|
"""Initialize."""
|
|
assert simplisafe.coordinator
|
|
super().__init__(simplisafe.coordinator)
|
|
|
|
self._rest_api_errors = 0
|
|
|
|
if device:
|
|
model = device.type.name
|
|
device_name = device.name
|
|
serial = device.serial
|
|
else:
|
|
model = DEFAULT_ENTITY_MODEL
|
|
device_name = DEFAULT_ENTITY_NAME
|
|
serial = system.serial
|
|
|
|
try:
|
|
device_type = DeviceTypes(
|
|
simplisafe.initial_event_to_use[system.system_id].get("sensorType")
|
|
)
|
|
except ValueError:
|
|
device_type = DeviceTypes.unknown
|
|
|
|
event = simplisafe.initial_event_to_use[system.system_id]
|
|
|
|
self._attr_extra_state_attributes = {
|
|
ATTR_LAST_EVENT_INFO: event.get("info"),
|
|
ATTR_LAST_EVENT_SENSOR_NAME: event.get("sensorName"),
|
|
ATTR_LAST_EVENT_SENSOR_TYPE: device_type.name,
|
|
ATTR_LAST_EVENT_TIMESTAMP: event.get("eventTimestamp"),
|
|
ATTR_SYSTEM_ID: system.system_id,
|
|
}
|
|
|
|
self._attr_device_info = DeviceInfo(
|
|
identifiers={(DOMAIN, serial)},
|
|
manufacturer="SimpliSafe",
|
|
model=model,
|
|
name=device_name,
|
|
via_device=(DOMAIN, system.system_id),
|
|
)
|
|
|
|
self._attr_name = f"{system.address} {device_name} {' '.join([w.title() for w in model.split('_')])}"
|
|
self._attr_unique_id = serial
|
|
self._device = device
|
|
self._online = True
|
|
self._simplisafe = simplisafe
|
|
self._system = system
|
|
self._websocket_events_to_listen_for = [
|
|
EVENT_CONNECTION_LOST,
|
|
EVENT_CONNECTION_RESTORED,
|
|
EVENT_POWER_OUTAGE,
|
|
EVENT_POWER_RESTORED,
|
|
]
|
|
if additional_websocket_events:
|
|
self._websocket_events_to_listen_for += additional_websocket_events
|
|
|
|
@property
|
|
def available(self) -> bool:
|
|
"""Return whether the entity is available."""
|
|
# We can easily detect if the V3 system is offline, but no simple check exists
|
|
# for the V2 system. Therefore, assuming the coordinator hasn't failed, we mark
|
|
# the entity as available if:
|
|
# 1. We can verify that the system is online (assuming True if we can't)
|
|
# 2. We can verify that the entity is online
|
|
if isinstance(self._system, SystemV3):
|
|
system_offline = self._system.offline
|
|
else:
|
|
system_offline = False
|
|
|
|
return (
|
|
self._rest_api_errors < DEFAULT_REST_API_ERROR_COUNT
|
|
and self._online
|
|
and not system_offline
|
|
)
|
|
|
|
@callback
|
|
def _handle_coordinator_update(self) -> None:
|
|
"""Update the entity with new REST API data."""
|
|
# SimpliSafe can incorrectly return an error state when there isn't any
|
|
# error. This can lead to the system having an unknown state frequently.
|
|
# To protect against that, we measure how many "error states" we receive
|
|
# and only alter the state if we detect a few in a row:
|
|
if self.coordinator.last_update_success:
|
|
self._rest_api_errors = 0
|
|
else:
|
|
self._rest_api_errors += 1
|
|
|
|
self.async_update_from_rest_api()
|
|
self.async_write_ha_state()
|
|
|
|
@callback
|
|
def _handle_websocket_update(self, event: WebsocketEvent) -> None:
|
|
"""Update the entity with new websocket data."""
|
|
# Ignore this event if it belongs to a system other than this one:
|
|
if event.system_id != self._system.system_id:
|
|
return
|
|
|
|
# Ignore this event if this entity hasn't expressed interest in its type:
|
|
if event.event_type not in self._websocket_events_to_listen_for:
|
|
return
|
|
|
|
# Ignore this event if it belongs to a entity with a different serial
|
|
# number from this one's:
|
|
if (
|
|
self._device
|
|
and event.event_type in WEBSOCKET_EVENTS_REQUIRING_SERIAL
|
|
and event.sensor_serial != self._device.serial
|
|
):
|
|
return
|
|
|
|
if event.event_type in (EVENT_CONNECTION_LOST, EVENT_POWER_OUTAGE):
|
|
self._online = False
|
|
elif event.event_type in (EVENT_CONNECTION_RESTORED, EVENT_POWER_RESTORED):
|
|
self._online = True
|
|
|
|
# It's uncertain whether SimpliSafe events will still propagate down the
|
|
# websocket when the base station is offline. Just in case, we guard against
|
|
# further action until connection is restored:
|
|
if not self._online:
|
|
return
|
|
|
|
sensor_type: str | None
|
|
if event.sensor_type:
|
|
sensor_type = event.sensor_type.name
|
|
else:
|
|
sensor_type = None
|
|
|
|
self._attr_extra_state_attributes.update(
|
|
{
|
|
ATTR_LAST_EVENT_INFO: event.info,
|
|
ATTR_LAST_EVENT_SENSOR_NAME: event.sensor_name,
|
|
ATTR_LAST_EVENT_SENSOR_TYPE: sensor_type,
|
|
ATTR_LAST_EVENT_TIMESTAMP: event.timestamp,
|
|
}
|
|
)
|
|
|
|
self.async_update_from_websocket_event(event)
|
|
self.async_write_ha_state()
|
|
|
|
async def async_added_to_hass(self) -> None:
|
|
"""Register callbacks."""
|
|
await super().async_added_to_hass()
|
|
|
|
self.async_on_remove(
|
|
async_dispatcher_connect(
|
|
self.hass,
|
|
DISPATCHER_TOPIC_WEBSOCKET_EVENT.format(self._system.system_id),
|
|
self._handle_websocket_update,
|
|
)
|
|
)
|
|
|
|
self.async_update_from_rest_api()
|
|
|
|
@callback
|
|
def async_update_from_rest_api(self) -> None:
|
|
"""Update the entity when new data comes from the REST API."""
|
|
raise NotImplementedError()
|
|
|
|
@callback
|
|
def async_update_from_websocket_event(self, event: WebsocketEvent) -> None:
|
|
"""Update the entity when new data comes from the websocket."""
|
|
raise NotImplementedError()
|