ha_gehome/ge_kitchen/__init__.py

74 lines
2.2 KiB
Python
Raw Normal View History

2020-08-12 09:03:22 -06:00
"""The ge_kitchen integration."""
2020-08-13 15:10:55 -06:00
import asyncio
import async_timeout
import logging
2020-08-12 09:03:22 -06:00
import voluptuous as vol
from gekitchensdk import GeAuthFailedError, GeGeneralServerError, GeNotAuthenticatedError
2020-08-25 11:09:28 -06:00
from homeassistant.config_entries import ConfigEntry
2020-08-12 09:03:22 -06:00
from homeassistant.core import HomeAssistant
2020-08-13 15:10:55 -06:00
from .const import (
DOMAIN
2020-08-12 09:03:22 -06:00
)
from .exceptions import HaAuthError, HaCannotConnect
2020-08-13 15:10:55 -06:00
from .update_coordinator import GeKitchenUpdateCoordinator
2020-08-12 09:03:22 -06:00
2020-08-13 15:10:55 -06:00
CONFIG_SCHEMA = vol.Schema({DOMAIN: vol.Schema({})}, extra=vol.ALLOW_EXTRA)
PLATFORMS = ["binary_sensor", "sensor", "switch", "water_heater"]
2020-08-12 09:03:22 -06:00
2020-08-13 15:10:55 -06:00
_LOGGER = logging.getLogger(__name__)
2020-08-12 09:03:22 -06:00
async def async_setup(hass: HomeAssistant, config: dict):
"""Set up the ge_kitchen component."""
2020-08-13 15:10:55 -06:00
hass.data.setdefault(DOMAIN, {})
2020-08-12 09:03:22 -06:00
if DOMAIN not in config:
return True
async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry):
"""Set up ge_kitchen from a config entry."""
coordinator = GeKitchenUpdateCoordinator(hass, entry)
2020-08-13 15:10:55 -06:00
hass.data[DOMAIN][entry.entry_id] = coordinator
2020-08-12 09:03:22 -06:00
2020-08-25 11:09:28 -06:00
try:
await coordinator.async_start_client()
except (GeNotAuthenticatedError, GeAuthFailedError):
raise HaAuthError('Authentication failure')
except GeGeneralServerError:
raise HaCannotConnect('Cannot connect (server error)')
2020-09-17 20:22:51 -06:00
except Exception:
raise HaCannotConnect('Unknown connection failure')
2020-08-25 11:09:28 -06:00
try:
with async_timeout.timeout(30):
await coordinator.initialization_future
2020-09-17 20:22:51 -06:00
except TimeoutError:
raise HaCannotConnect('Initialization timed out')
2020-08-12 09:03:22 -06:00
for component in PLATFORMS:
hass.async_create_task(
hass.config_entries.async_forward_entry_setup(entry, component)
)
return True
async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry):
"""Unload a config entry."""
unload_ok = all(
await asyncio.gather(
*[
hass.config_entries.async_forward_entry_unload(entry, component)
for component in PLATFORMS
]
)
)
if unload_ok:
hass.data[DOMAIN].pop(entry.entry_id)
return unload_ok
2020-08-25 11:09:28 -06:00
async def async_update_options(hass, config_entry):
"""Update options."""
await hass.config_entries.async_reload(config_entry.entry_id)