2019-02-13 20:21:14 +00:00
|
|
|
"""Support for SimpliSafe alarm systems."""
|
2019-03-29 08:38:58 +00:00
|
|
|
import asyncio
|
2018-10-12 17:07:47 +00:00
|
|
|
import logging
|
|
|
|
from datetime import timedelta
|
|
|
|
|
2019-07-29 21:52:30 +00:00
|
|
|
from simplipy import API
|
|
|
|
from simplipy.errors import InvalidCredentialsError, SimplipyError
|
2019-11-26 18:44:40 +00:00
|
|
|
from simplipy.system.v3 import LevelMap as V3Volume
|
2018-10-12 17:07:47 +00:00
|
|
|
import voluptuous as vol
|
|
|
|
|
|
|
|
from homeassistant.config_entries import SOURCE_IMPORT
|
|
|
|
from homeassistant.const import (
|
2019-07-31 19:25:30 +00:00
|
|
|
CONF_CODE,
|
|
|
|
CONF_PASSWORD,
|
|
|
|
CONF_SCAN_INTERVAL,
|
|
|
|
CONF_TOKEN,
|
|
|
|
CONF_USERNAME,
|
2019-11-26 18:44:40 +00:00
|
|
|
STATE_HOME,
|
2019-07-31 19:25:30 +00:00
|
|
|
)
|
2018-10-12 17:07:47 +00:00
|
|
|
from homeassistant.core import callback
|
|
|
|
from homeassistant.exceptions import ConfigEntryNotReady
|
2019-07-29 21:52:30 +00:00
|
|
|
from homeassistant.helpers import (
|
2019-07-31 19:25:30 +00:00
|
|
|
aiohttp_client,
|
|
|
|
config_validation as cv,
|
|
|
|
device_registry as dr,
|
|
|
|
)
|
2019-11-09 22:41:02 +00:00
|
|
|
from homeassistant.helpers.dispatcher import (
|
|
|
|
async_dispatcher_connect,
|
|
|
|
async_dispatcher_send,
|
|
|
|
)
|
|
|
|
from homeassistant.helpers.entity import Entity
|
2018-10-12 17:07:47 +00:00
|
|
|
from homeassistant.helpers.event import async_track_time_interval
|
2019-07-19 04:07:07 +00:00
|
|
|
from homeassistant.helpers.service import verify_domain_control
|
2018-10-12 17:07:47 +00:00
|
|
|
|
|
|
|
from .config_flow import configured_instances
|
|
|
|
from .const import DATA_CLIENT, DEFAULT_SCAN_INTERVAL, DOMAIN, TOPIC_UPDATE
|
|
|
|
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
2019-11-26 18:44:40 +00:00
|
|
|
CONF_ACCOUNTS = "accounts"
|
|
|
|
|
|
|
|
DATA_LISTENER = "listener"
|
|
|
|
|
|
|
|
ATTR_ARMED_LIGHT_STATE = "armed_light_state"
|
|
|
|
ATTR_ARRIVAL_STATE = "arrival_state"
|
2019-07-31 19:25:30 +00:00
|
|
|
ATTR_PIN_LABEL = "label"
|
|
|
|
ATTR_PIN_LABEL_OR_VALUE = "label_or_pin"
|
|
|
|
ATTR_PIN_VALUE = "pin"
|
2019-11-26 18:44:40 +00:00
|
|
|
ATTR_SECONDS = "seconds"
|
2019-07-31 19:25:30 +00:00
|
|
|
ATTR_SYSTEM_ID = "system_id"
|
2019-11-26 18:44:40 +00:00
|
|
|
ATTR_TRANSITION = "transition"
|
|
|
|
ATTR_VOLUME = "volume"
|
|
|
|
ATTR_VOLUME_PROPERTY = "volume_property"
|
2019-07-31 19:25:30 +00:00
|
|
|
|
2019-11-26 18:44:40 +00:00
|
|
|
STATE_AWAY = "away"
|
|
|
|
STATE_ENTRY = "entry"
|
|
|
|
STATE_EXIT = "exit"
|
2019-07-31 19:25:30 +00:00
|
|
|
|
2019-11-26 18:44:40 +00:00
|
|
|
VOLUME_PROPERTY_ALARM = "alarm"
|
|
|
|
VOLUME_PROPERTY_CHIME = "chime"
|
|
|
|
VOLUME_PROPERTY_VOICE_PROMPT = "voice_prompt"
|
2019-07-31 19:25:30 +00:00
|
|
|
|
2019-11-26 18:44:40 +00:00
|
|
|
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_DELAY_SCHEMA = SERVICE_BASE_SCHEMA.extend(
|
2019-07-31 19:25:30 +00:00
|
|
|
{
|
2019-11-26 18:44:40 +00:00
|
|
|
vol.Required(ATTR_ARRIVAL_STATE): vol.In((STATE_AWAY, STATE_HOME)),
|
|
|
|
vol.Required(ATTR_TRANSITION): vol.In((STATE_ENTRY, STATE_EXIT)),
|
|
|
|
vol.Required(ATTR_SECONDS): cv.positive_int,
|
2019-07-31 19:25:30 +00:00
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2019-11-26 18:44:40 +00:00
|
|
|
SERVICE_SET_LIGHT_SCHEMA = SERVICE_BASE_SCHEMA.extend(
|
|
|
|
{vol.Required(ATTR_ARMED_LIGHT_STATE): cv.boolean}
|
|
|
|
)
|
|
|
|
|
|
|
|
SERVICE_SET_PIN_SCHEMA = SERVICE_BASE_SCHEMA.extend(
|
|
|
|
{vol.Required(ATTR_PIN_LABEL): cv.string, vol.Required(ATTR_PIN_VALUE): cv.string}
|
|
|
|
)
|
|
|
|
|
|
|
|
SERVICE_SET_VOLUME_SCHEMA = SERVICE_BASE_SCHEMA.extend(
|
2019-07-31 19:25:30 +00:00
|
|
|
{
|
2019-11-26 18:44:40 +00:00
|
|
|
vol.Required(ATTR_VOLUME_PROPERTY): vol.In(
|
|
|
|
(VOLUME_PROPERTY_ALARM, VOLUME_PROPERTY_CHIME, VOLUME_PROPERTY_VOICE_PROMPT)
|
|
|
|
),
|
|
|
|
vol.Required(ATTR_VOLUME): cv.string,
|
2019-07-31 19:25:30 +00:00
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
ACCOUNT_CONFIG_SCHEMA = vol.Schema(
|
|
|
|
{
|
|
|
|
vol.Required(CONF_USERNAME): cv.string,
|
|
|
|
vol.Required(CONF_PASSWORD): cv.string,
|
|
|
|
vol.Optional(CONF_CODE): cv.string,
|
|
|
|
vol.Optional(CONF_SCAN_INTERVAL, default=DEFAULT_SCAN_INTERVAL): cv.time_period,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
CONFIG_SCHEMA = vol.Schema(
|
|
|
|
{
|
|
|
|
DOMAIN: vol.Schema(
|
|
|
|
{
|
|
|
|
vol.Optional(CONF_ACCOUNTS): vol.All(
|
|
|
|
cv.ensure_list, [ACCOUNT_CONFIG_SCHEMA]
|
|
|
|
)
|
|
|
|
}
|
|
|
|
)
|
|
|
|
},
|
|
|
|
extra=vol.ALLOW_EXTRA,
|
|
|
|
)
|
2018-10-12 17:07:47 +00:00
|
|
|
|
|
|
|
|
|
|
|
@callback
|
|
|
|
def _async_save_refresh_token(hass, config_entry, token):
|
|
|
|
hass.config_entries.async_update_entry(
|
2019-07-31 19:25:30 +00:00
|
|
|
config_entry, data={**config_entry.data, CONF_TOKEN: token}
|
|
|
|
)
|
2018-10-12 17:07:47 +00:00
|
|
|
|
|
|
|
|
2019-07-17 22:13:03 +00:00
|
|
|
async def async_register_base_station(hass, system, config_entry_id):
|
|
|
|
"""Register a new bridge."""
|
|
|
|
device_registry = await dr.async_get_registry(hass)
|
|
|
|
device_registry.async_get_or_create(
|
|
|
|
config_entry_id=config_entry_id,
|
2019-07-31 19:25:30 +00:00
|
|
|
identifiers={(DOMAIN, system.serial)},
|
|
|
|
manufacturer="SimpliSafe",
|
2019-07-17 22:13:03 +00:00
|
|
|
model=system.version,
|
|
|
|
name=system.address,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2018-10-12 17:07:47 +00:00
|
|
|
async def async_setup(hass, config):
|
|
|
|
"""Set up the SimpliSafe component."""
|
|
|
|
hass.data[DOMAIN] = {}
|
|
|
|
hass.data[DOMAIN][DATA_CLIENT] = {}
|
|
|
|
hass.data[DOMAIN][DATA_LISTENER] = {}
|
|
|
|
|
|
|
|
if DOMAIN not in config:
|
|
|
|
return True
|
|
|
|
|
|
|
|
conf = config[DOMAIN]
|
|
|
|
|
|
|
|
for account in conf[CONF_ACCOUNTS]:
|
|
|
|
if account[CONF_USERNAME] in configured_instances(hass):
|
|
|
|
continue
|
|
|
|
|
|
|
|
hass.async_create_task(
|
|
|
|
hass.config_entries.flow.async_init(
|
|
|
|
DOMAIN,
|
2019-07-31 19:25:30 +00:00
|
|
|
context={"source": SOURCE_IMPORT},
|
2018-10-12 17:07:47 +00:00
|
|
|
data={
|
|
|
|
CONF_USERNAME: account[CONF_USERNAME],
|
|
|
|
CONF_PASSWORD: account[CONF_PASSWORD],
|
|
|
|
CONF_CODE: account.get(CONF_CODE),
|
|
|
|
CONF_SCAN_INTERVAL: account[CONF_SCAN_INTERVAL],
|
2019-07-31 19:25:30 +00:00
|
|
|
},
|
|
|
|
)
|
|
|
|
)
|
2018-10-12 17:07:47 +00:00
|
|
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
async def async_setup_entry(hass, config_entry):
|
|
|
|
"""Set up SimpliSafe as config entry."""
|
2019-07-19 04:07:07 +00:00
|
|
|
_verify_domain_control = verify_domain_control(hass, DOMAIN)
|
|
|
|
|
2018-10-12 17:07:47 +00:00
|
|
|
websession = aiohttp_client.async_get_clientsession(hass)
|
|
|
|
|
|
|
|
try:
|
2019-07-31 19:25:30 +00:00
|
|
|
api = await API.login_via_token(config_entry.data[CONF_TOKEN], websession)
|
2018-10-14 20:26:44 +00:00
|
|
|
except InvalidCredentialsError:
|
2019-07-31 19:25:30 +00:00
|
|
|
_LOGGER.error("Invalid credentials provided")
|
2018-10-14 20:26:44 +00:00
|
|
|
return False
|
2018-10-12 17:07:47 +00:00
|
|
|
except SimplipyError as err:
|
2019-07-31 19:25:30 +00:00
|
|
|
_LOGGER.error("Config entry failed: %s", err)
|
2018-10-12 17:07:47 +00:00
|
|
|
raise ConfigEntryNotReady
|
|
|
|
|
2019-07-29 21:52:30 +00:00
|
|
|
_async_save_refresh_token(hass, config_entry, api.refresh_token)
|
2018-10-12 17:07:47 +00:00
|
|
|
|
2019-07-29 21:52:30 +00:00
|
|
|
systems = await api.get_systems()
|
2019-11-26 18:44:40 +00:00
|
|
|
simplisafe = SimpliSafe(hass, api, systems, config_entry)
|
2019-07-30 23:23:42 +00:00
|
|
|
await simplisafe.async_update()
|
2019-07-29 21:52:30 +00:00
|
|
|
hass.data[DOMAIN][DATA_CLIENT][config_entry.entry_id] = simplisafe
|
2018-10-12 17:07:47 +00:00
|
|
|
|
2019-11-13 19:48:08 +00:00
|
|
|
for component in ("alarm_control_panel", "lock"):
|
|
|
|
hass.async_create_task(
|
|
|
|
hass.config_entries.async_forward_entry_setup(config_entry, component)
|
2019-07-31 19:25:30 +00:00
|
|
|
)
|
2018-10-12 17:07:47 +00:00
|
|
|
|
|
|
|
async def refresh(event_time):
|
|
|
|
"""Refresh data from the SimpliSafe account."""
|
2019-07-29 21:52:30 +00:00
|
|
|
await simplisafe.async_update()
|
2019-07-31 19:25:30 +00:00
|
|
|
_LOGGER.debug("Updated data for all SimpliSafe systems")
|
2019-07-30 23:23:42 +00:00
|
|
|
async_dispatcher_send(hass, TOPIC_UPDATE)
|
2018-10-12 17:07:47 +00:00
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
hass.data[DOMAIN][DATA_LISTENER][config_entry.entry_id] = async_track_time_interval(
|
|
|
|
hass, refresh, timedelta(seconds=config_entry.data[CONF_SCAN_INTERVAL])
|
|
|
|
)
|
2018-10-12 17:07:47 +00:00
|
|
|
|
2019-07-17 22:13:03 +00:00
|
|
|
# Register the base station for each system:
|
|
|
|
for system in systems.values():
|
|
|
|
hass.async_create_task(
|
2019-07-31 19:25:30 +00:00
|
|
|
async_register_base_station(hass, system, config_entry.entry_id)
|
|
|
|
)
|
2019-07-17 22:13:03 +00:00
|
|
|
|
2019-11-26 18:44:40 +00:00
|
|
|
@callback
|
|
|
|
def verify_system_exists(coro):
|
|
|
|
"""Log an error if a service call uses an invalid system ID."""
|
|
|
|
|
|
|
|
async def decorator(call):
|
|
|
|
"""Decorate."""
|
|
|
|
system_id = int(call.data[ATTR_SYSTEM_ID])
|
|
|
|
if system_id not in systems:
|
|
|
|
_LOGGER.error("Unknown system ID in service call: %s", system_id)
|
|
|
|
return
|
|
|
|
await coro(call)
|
|
|
|
|
|
|
|
return decorator
|
|
|
|
|
|
|
|
@callback
|
|
|
|
def v3_only(coro):
|
|
|
|
"""Log an error if the decorated coroutine is called with a v2 system."""
|
|
|
|
|
|
|
|
async def decorator(call):
|
|
|
|
"""Decorate."""
|
|
|
|
system = 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
|
2019-07-19 04:07:07 +00:00
|
|
|
@_verify_domain_control
|
|
|
|
async def remove_pin(call):
|
|
|
|
"""Remove a PIN."""
|
2019-11-26 18:44:40 +00:00
|
|
|
system = systems[call.data[ATTR_SYSTEM_ID]]
|
|
|
|
try:
|
|
|
|
await system.remove_pin(call.data[ATTR_PIN_LABEL_OR_VALUE])
|
|
|
|
except SimplipyError as err:
|
|
|
|
_LOGGER.error("Error during service call: %s", err)
|
|
|
|
return
|
|
|
|
|
|
|
|
@verify_system_exists
|
|
|
|
@v3_only
|
|
|
|
@_verify_domain_control
|
|
|
|
async def set_alarm_duration(call):
|
|
|
|
"""Set the duration of a running alarm."""
|
|
|
|
system = systems[call.data[ATTR_SYSTEM_ID]]
|
|
|
|
try:
|
|
|
|
await system.set_alarm_duration(call.data[ATTR_SECONDS])
|
|
|
|
except SimplipyError as err:
|
|
|
|
_LOGGER.error("Error during service call: %s", err)
|
|
|
|
return
|
|
|
|
|
|
|
|
@verify_system_exists
|
|
|
|
@v3_only
|
|
|
|
@_verify_domain_control
|
|
|
|
async def set_delay(call):
|
|
|
|
"""Set the delay duration for entry/exit, away/home (any combo)."""
|
|
|
|
system = systems[call.data[ATTR_SYSTEM_ID]]
|
|
|
|
coro = getattr(
|
|
|
|
system,
|
|
|
|
f"set_{call.data[ATTR_TRANSITION]}_delay_{call.data[ATTR_ARRIVAL_STATE]}",
|
|
|
|
)
|
|
|
|
|
|
|
|
try:
|
|
|
|
await coro(call.data[ATTR_SECONDS])
|
|
|
|
except SimplipyError as err:
|
|
|
|
_LOGGER.error("Error during service call: %s", err)
|
|
|
|
return
|
|
|
|
|
|
|
|
@verify_system_exists
|
|
|
|
@v3_only
|
|
|
|
@_verify_domain_control
|
|
|
|
async def set_armed_light(call):
|
|
|
|
"""Turn the base station light on/off."""
|
|
|
|
system = systems[call.data[ATTR_SYSTEM_ID]]
|
|
|
|
try:
|
|
|
|
await system.set_light(call.data[ATTR_ARMED_LIGHT_STATE])
|
|
|
|
except SimplipyError as err:
|
|
|
|
_LOGGER.error("Error during service call: %s", err)
|
|
|
|
return
|
2019-07-19 04:07:07 +00:00
|
|
|
|
2019-11-26 18:44:40 +00:00
|
|
|
@verify_system_exists
|
2019-07-19 04:07:07 +00:00
|
|
|
@_verify_domain_control
|
|
|
|
async def set_pin(call):
|
|
|
|
"""Set a PIN."""
|
2019-11-26 18:44:40 +00:00
|
|
|
system = systems[call.data[ATTR_SYSTEM_ID]]
|
|
|
|
try:
|
|
|
|
await system.set_pin(call.data[ATTR_PIN_LABEL], call.data[ATTR_PIN_VALUE])
|
|
|
|
except SimplipyError as err:
|
|
|
|
_LOGGER.error("Error during service call: %s", err)
|
|
|
|
return
|
|
|
|
|
|
|
|
@verify_system_exists
|
|
|
|
@v3_only
|
|
|
|
@_verify_domain_control
|
|
|
|
async def set_volume_property(call):
|
|
|
|
"""Set a volume parameter in an appropriate service call."""
|
|
|
|
system = systems[call.data[ATTR_SYSTEM_ID]]
|
|
|
|
try:
|
|
|
|
volume = V3Volume[call.data[ATTR_VOLUME]]
|
|
|
|
except KeyError:
|
|
|
|
_LOGGER.error("Unknown volume string: %s", call.data[ATTR_VOLUME])
|
|
|
|
return
|
|
|
|
except SimplipyError as err:
|
|
|
|
_LOGGER.error("Error during service call: %s", err)
|
|
|
|
return
|
|
|
|
else:
|
|
|
|
coro = getattr(system, f"set_{call.data[ATTR_VOLUME_PROPERTY]}_volume")
|
|
|
|
await coro(volume)
|
2019-07-19 04:07:07 +00:00
|
|
|
|
|
|
|
for service, method, schema in [
|
2019-07-31 19:25:30 +00:00
|
|
|
("remove_pin", remove_pin, SERVICE_REMOVE_PIN_SCHEMA),
|
2019-11-26 18:44:40 +00:00
|
|
|
("set_alarm_duration", set_alarm_duration, SERVICE_SET_DELAY_SCHEMA),
|
|
|
|
("set_delay", set_delay, SERVICE_SET_DELAY_SCHEMA),
|
|
|
|
("set_armed_light", set_armed_light, SERVICE_SET_LIGHT_SCHEMA),
|
2019-07-31 19:25:30 +00:00
|
|
|
("set_pin", set_pin, SERVICE_SET_PIN_SCHEMA),
|
2019-11-26 18:44:40 +00:00
|
|
|
("set_volume_property", set_volume_property, SERVICE_SET_VOLUME_SCHEMA),
|
2019-07-19 04:07:07 +00:00
|
|
|
]:
|
|
|
|
hass.services.async_register(DOMAIN, service, method, schema=schema)
|
|
|
|
|
2018-10-12 17:07:47 +00:00
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
async def async_unload_entry(hass, entry):
|
|
|
|
"""Unload a SimpliSafe config entry."""
|
2019-11-13 19:48:08 +00:00
|
|
|
tasks = [
|
|
|
|
hass.config_entries.async_forward_entry_unload(entry, component)
|
|
|
|
for component in ("alarm_control_panel", "lock")
|
|
|
|
]
|
|
|
|
|
|
|
|
await asyncio.gather(*tasks)
|
2018-10-12 17:07:47 +00:00
|
|
|
|
|
|
|
hass.data[DOMAIN][DATA_CLIENT].pop(entry.entry_id)
|
|
|
|
remove_listener = hass.data[DOMAIN][DATA_LISTENER].pop(entry.entry_id)
|
|
|
|
remove_listener()
|
|
|
|
|
|
|
|
return True
|
2019-07-29 21:52:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
class SimpliSafe:
|
|
|
|
"""Define a SimpliSafe API object."""
|
|
|
|
|
2019-11-26 18:44:40 +00:00
|
|
|
def __init__(self, hass, api, systems, config_entry):
|
2019-07-29 21:52:30 +00:00
|
|
|
"""Initialize."""
|
2019-11-26 18:44:40 +00:00
|
|
|
self._api = api
|
2019-07-29 21:52:30 +00:00
|
|
|
self._config_entry = config_entry
|
|
|
|
self._hass = hass
|
2019-07-30 23:23:42 +00:00
|
|
|
self.last_event_data = {}
|
2019-07-29 21:52:30 +00:00
|
|
|
self.systems = systems
|
|
|
|
|
2019-07-30 23:23:42 +00:00
|
|
|
async def _update_system(self, system):
|
|
|
|
"""Update a system."""
|
|
|
|
try:
|
|
|
|
await system.update()
|
|
|
|
latest_event = await system.get_latest_event()
|
|
|
|
except SimplipyError as err:
|
|
|
|
_LOGGER.error(
|
2019-07-31 19:25:30 +00:00
|
|
|
'SimpliSafe error while updating "%s": %s', system.address, err
|
|
|
|
)
|
2019-07-30 23:23:42 +00:00
|
|
|
return
|
|
|
|
except Exception as err: # pylint: disable=broad-except
|
2019-07-31 19:25:30 +00:00
|
|
|
_LOGGER.error('Unknown error while updating "%s": %s', system.address, err)
|
2019-07-30 23:23:42 +00:00
|
|
|
return
|
|
|
|
|
|
|
|
self.last_event_data[system.system_id] = latest_event
|
|
|
|
|
2019-11-26 18:44:40 +00:00
|
|
|
if self._api.refresh_token_dirty:
|
2019-07-30 23:23:42 +00:00
|
|
|
_async_save_refresh_token(
|
2019-11-26 18:44:40 +00:00
|
|
|
self._hass, self._config_entry, self._api.refresh_token
|
2019-07-31 19:25:30 +00:00
|
|
|
)
|
2019-07-30 23:23:42 +00:00
|
|
|
|
2019-07-29 21:52:30 +00:00
|
|
|
async def async_update(self):
|
|
|
|
"""Get updated data from SimpliSafe."""
|
2019-07-31 19:25:30 +00:00
|
|
|
tasks = [self._update_system(system) for system in self.systems.values()]
|
2019-07-30 23:23:42 +00:00
|
|
|
|
|
|
|
await asyncio.gather(*tasks)
|
2019-11-09 22:41:02 +00:00
|
|
|
|
|
|
|
|
|
|
|
class SimpliSafeEntity(Entity):
|
|
|
|
"""Define a base SimpliSafe entity."""
|
|
|
|
|
|
|
|
def __init__(self, system, name, *, serial=None):
|
|
|
|
"""Initialize."""
|
|
|
|
self._async_unsub_dispatcher_connect = None
|
|
|
|
self._attrs = {ATTR_SYSTEM_ID: system.system_id}
|
|
|
|
self._name = name
|
|
|
|
self._online = True
|
|
|
|
self._system = system
|
|
|
|
|
|
|
|
if serial:
|
|
|
|
self._serial = serial
|
|
|
|
else:
|
|
|
|
self._serial = system.serial
|
|
|
|
|
|
|
|
@property
|
|
|
|
def available(self):
|
|
|
|
"""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, 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
|
|
|
|
system_offline = self._system.version == 3 and self._system.offline
|
|
|
|
return not system_offline and self._online
|
|
|
|
|
|
|
|
@property
|
|
|
|
def device_info(self):
|
|
|
|
"""Return device registry information for this entity."""
|
|
|
|
return {
|
|
|
|
"identifiers": {(DOMAIN, self._system.system_id)},
|
|
|
|
"manufacturer": "SimpliSafe",
|
|
|
|
"model": self._system.version,
|
|
|
|
"name": self._name,
|
|
|
|
"via_device": (DOMAIN, self._system.serial),
|
|
|
|
}
|
|
|
|
|
|
|
|
@property
|
|
|
|
def device_state_attributes(self):
|
|
|
|
"""Return the state attributes."""
|
|
|
|
return self._attrs
|
|
|
|
|
|
|
|
@property
|
|
|
|
def name(self):
|
|
|
|
"""Return the name of the entity."""
|
|
|
|
return f"{self._system.address} {self._name}"
|
|
|
|
|
|
|
|
@property
|
|
|
|
def unique_id(self):
|
|
|
|
"""Return the unique ID of the entity."""
|
|
|
|
return self._serial
|
|
|
|
|
|
|
|
async def async_added_to_hass(self):
|
|
|
|
"""Register callbacks."""
|
|
|
|
|
|
|
|
@callback
|
|
|
|
def update():
|
|
|
|
"""Update the state."""
|
|
|
|
self.async_schedule_update_ha_state(True)
|
|
|
|
|
|
|
|
self._async_unsub_dispatcher_connect = async_dispatcher_connect(
|
|
|
|
self.hass, TOPIC_UPDATE, update
|
|
|
|
)
|
|
|
|
|
|
|
|
async def async_will_remove_from_hass(self) -> None:
|
|
|
|
"""Disconnect dispatcher listener when removed."""
|
|
|
|
if self._async_unsub_dispatcher_connect:
|
|
|
|
self._async_unsub_dispatcher_connect()
|