51 lines
1.7 KiB
Python
51 lines
1.7 KiB
Python
"""The totalconnect component."""
|
|
from total_connect_client import TotalConnectClient
|
|
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.const import CONF_PASSWORD, CONF_USERNAME
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.exceptions import ConfigEntryAuthFailed
|
|
import homeassistant.helpers.config_validation as cv
|
|
|
|
from .const import CONF_USERCODES, DOMAIN
|
|
|
|
PLATFORMS = ["alarm_control_panel", "binary_sensor"]
|
|
|
|
CONFIG_SCHEMA = cv.deprecated(DOMAIN)
|
|
|
|
|
|
async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
|
"""Set up upon config entry in user interface."""
|
|
conf = entry.data
|
|
username = conf[CONF_USERNAME]
|
|
password = conf[CONF_PASSWORD]
|
|
|
|
if CONF_USERCODES not in conf:
|
|
# should only happen for those who used UI before we added usercodes
|
|
raise ConfigEntryAuthFailed("No usercodes in TotalConnect configuration")
|
|
|
|
temp_codes = conf[CONF_USERCODES]
|
|
usercodes = {int(code): temp_codes[code] for code in temp_codes}
|
|
client = await hass.async_add_executor_job(
|
|
TotalConnectClient.TotalConnectClient, username, password, usercodes
|
|
)
|
|
|
|
if not client.is_valid_credentials():
|
|
raise ConfigEntryAuthFailed("TotalConnect authentication failed")
|
|
|
|
hass.data.setdefault(DOMAIN, {})
|
|
hass.data[DOMAIN][entry.entry_id] = client
|
|
|
|
hass.config_entries.async_setup_platforms(entry, PLATFORMS)
|
|
|
|
return True
|
|
|
|
|
|
async def async_unload_entry(hass, entry: ConfigEntry):
|
|
"""Unload a 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
|