45 lines
1.4 KiB
Python
45 lines
1.4 KiB
Python
"""The twinkly component."""
|
|
|
|
import twinkly_client
|
|
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.helpers.aiohttp_client import async_get_clientsession
|
|
from homeassistant.helpers.typing import HomeAssistantType
|
|
|
|
from .const import CONF_ENTRY_HOST, CONF_ENTRY_ID, DOMAIN
|
|
|
|
|
|
async def async_setup(hass: HomeAssistantType, config: dict):
|
|
"""Set up the twinkly integration."""
|
|
|
|
return True
|
|
|
|
|
|
async def async_setup_entry(hass: HomeAssistantType, config_entry: ConfigEntry):
|
|
"""Set up entries from config flow."""
|
|
|
|
# We setup the client here so if at some point we add any other entity for this device,
|
|
# we will be able to properly share the connection.
|
|
uuid = config_entry.data[CONF_ENTRY_ID]
|
|
host = config_entry.data[CONF_ENTRY_HOST]
|
|
|
|
hass.data.setdefault(DOMAIN, {})[uuid] = twinkly_client.TwinklyClient(
|
|
host, async_get_clientsession(hass)
|
|
)
|
|
|
|
hass.async_create_task(
|
|
hass.config_entries.async_forward_entry_setup(config_entry, "light")
|
|
)
|
|
return True
|
|
|
|
|
|
async def async_unload_entry(hass: HomeAssistantType, config_entry: ConfigEntry):
|
|
"""Remove a twinkly entry."""
|
|
|
|
# For now light entries don't have unload method, so we don't have to async_forward_entry_unload
|
|
# However we still have to cleanup the shared client!
|
|
uuid = config_entry.data[CONF_ENTRY_ID]
|
|
hass.data[DOMAIN].pop(uuid)
|
|
|
|
return True
|