194 lines
5.4 KiB
Python
194 lines
5.4 KiB
Python
"""The roomba component."""
|
|
import asyncio
|
|
import logging
|
|
|
|
import async_timeout
|
|
from roomba import Roomba, RoombaConnectionError
|
|
import voluptuous as vol
|
|
|
|
from homeassistant import config_entries, exceptions
|
|
from homeassistant.const import CONF_HOST, CONF_PASSWORD
|
|
from homeassistant.core import callback
|
|
from homeassistant.helpers import config_validation as cv
|
|
|
|
from .const import (
|
|
BLID,
|
|
COMPONENTS,
|
|
CONF_BLID,
|
|
CONF_CERT,
|
|
CONF_CONTINUOUS,
|
|
CONF_DELAY,
|
|
CONF_NAME,
|
|
DEFAULT_CERT,
|
|
DEFAULT_CONTINUOUS,
|
|
DEFAULT_DELAY,
|
|
DOMAIN,
|
|
ROOMBA_SESSION,
|
|
)
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
def _has_all_unique_bilds(value):
|
|
"""Validate that each vacuum configured has a unique bild.
|
|
|
|
Uniqueness is determined case-independently.
|
|
"""
|
|
bilds = [device[CONF_BLID] for device in value]
|
|
schema = vol.Schema(vol.Unique())
|
|
schema(bilds)
|
|
return value
|
|
|
|
|
|
DEVICE_SCHEMA = vol.All(
|
|
cv.deprecated(CONF_CERT),
|
|
vol.Schema(
|
|
{
|
|
vol.Required(CONF_HOST): str,
|
|
vol.Required(CONF_BLID): str,
|
|
vol.Required(CONF_PASSWORD): str,
|
|
vol.Optional(CONF_CERT, default=DEFAULT_CERT): str,
|
|
vol.Optional(CONF_CONTINUOUS, default=DEFAULT_CONTINUOUS): bool,
|
|
vol.Optional(CONF_DELAY, default=DEFAULT_DELAY): int,
|
|
},
|
|
),
|
|
)
|
|
|
|
|
|
CONFIG_SCHEMA = vol.Schema(
|
|
{DOMAIN: vol.All(cv.ensure_list, [DEVICE_SCHEMA], _has_all_unique_bilds)},
|
|
extra=vol.ALLOW_EXTRA,
|
|
)
|
|
|
|
|
|
async def async_setup(hass, config):
|
|
"""Set up the roomba environment."""
|
|
hass.data.setdefault(DOMAIN, {})
|
|
|
|
if DOMAIN not in config:
|
|
return True
|
|
for index, conf in enumerate(config[DOMAIN]):
|
|
_LOGGER.debug("Importing Roomba #%d - %s", index, conf[CONF_HOST])
|
|
hass.async_create_task(
|
|
hass.config_entries.flow.async_init(
|
|
DOMAIN, context={"source": config_entries.SOURCE_IMPORT}, data=conf,
|
|
)
|
|
)
|
|
|
|
return True
|
|
|
|
|
|
async def async_setup_entry(hass, config_entry):
|
|
"""Set the config entry up."""
|
|
# Set up roomba platforms with config entry
|
|
|
|
if not config_entry.options:
|
|
hass.config_entries.async_update_entry(
|
|
config_entry,
|
|
options={
|
|
"continuous": config_entry.data[CONF_CONTINUOUS],
|
|
"delay": config_entry.data[CONF_DELAY],
|
|
},
|
|
)
|
|
|
|
roomba = Roomba(
|
|
address=config_entry.data[CONF_HOST],
|
|
blid=config_entry.data[CONF_BLID],
|
|
password=config_entry.data[CONF_PASSWORD],
|
|
continuous=config_entry.options[CONF_CONTINUOUS],
|
|
delay=config_entry.options[CONF_DELAY],
|
|
)
|
|
|
|
try:
|
|
if not await async_connect_or_timeout(hass, roomba):
|
|
return False
|
|
except CannotConnect:
|
|
raise exceptions.ConfigEntryNotReady
|
|
|
|
hass.data[DOMAIN][config_entry.entry_id] = {
|
|
ROOMBA_SESSION: roomba,
|
|
BLID: config_entry.data[CONF_BLID],
|
|
}
|
|
|
|
for component in COMPONENTS:
|
|
hass.async_create_task(
|
|
hass.config_entries.async_forward_entry_setup(config_entry, component)
|
|
)
|
|
|
|
if not config_entry.update_listeners:
|
|
config_entry.add_update_listener(async_update_options)
|
|
|
|
return True
|
|
|
|
|
|
async def async_connect_or_timeout(hass, roomba):
|
|
"""Connect to vacuum."""
|
|
try:
|
|
name = None
|
|
with async_timeout.timeout(10):
|
|
_LOGGER.debug("Initialize connection to vacuum")
|
|
await hass.async_add_job(roomba.connect)
|
|
while not roomba.roomba_connected or name is None:
|
|
# Waiting for connection and check datas ready
|
|
name = roomba_reported_state(roomba).get("name", None)
|
|
if name:
|
|
break
|
|
await asyncio.sleep(1)
|
|
except RoombaConnectionError:
|
|
_LOGGER.error("Error to connect to vacuum")
|
|
raise CannotConnect
|
|
except asyncio.TimeoutError:
|
|
# api looping if user or password incorrect and roomba exist
|
|
await async_disconnect_or_timeout(hass, roomba)
|
|
_LOGGER.error("Timeout expired")
|
|
raise CannotConnect
|
|
|
|
return {ROOMBA_SESSION: roomba, CONF_NAME: name}
|
|
|
|
|
|
async def async_disconnect_or_timeout(hass, roomba):
|
|
"""Disconnect to vacuum."""
|
|
_LOGGER.debug("Disconnect vacuum")
|
|
with async_timeout.timeout(3):
|
|
await hass.async_add_job(roomba.disconnect)
|
|
return True
|
|
|
|
|
|
async def async_update_options(hass, config_entry):
|
|
"""Update options."""
|
|
await hass.config_entries.async_reload(config_entry.entry_id)
|
|
|
|
|
|
async def async_unload_entry(hass, config_entry):
|
|
"""Unload a config entry."""
|
|
unload_ok = all(
|
|
await asyncio.gather(
|
|
*[
|
|
hass.config_entries.async_forward_entry_unload(config_entry, component)
|
|
for component in COMPONENTS
|
|
]
|
|
)
|
|
)
|
|
if unload_ok:
|
|
domain_data = hass.data[DOMAIN][config_entry.entry_id]
|
|
await async_disconnect_or_timeout(hass, roomba=domain_data[ROOMBA_SESSION])
|
|
hass.data[DOMAIN].pop(config_entry.entry_id)
|
|
|
|
return unload_ok
|
|
|
|
|
|
def roomba_reported_state(roomba):
|
|
"""Roomba report."""
|
|
return roomba.master_state.get("state", {}).get("reported", {})
|
|
|
|
|
|
@callback
|
|
def _async_find_matching_config_entry(hass, prefix):
|
|
for entry in hass.config_entries.async_entries(DOMAIN):
|
|
if entry.unique_id == prefix:
|
|
return entry
|
|
|
|
|
|
class CannotConnect(exceptions.HomeAssistantError):
|
|
"""Error to indicate we cannot connect."""
|