core/homeassistant/components/twinkly/__init__.py

40 lines
1.2 KiB
Python
Raw Normal View History

"""The twinkly component."""
import twinkly_client
from homeassistant.config_entries import ConfigEntry
from homeassistant.core import HomeAssistant
from homeassistant.helpers.aiohttp_client import async_get_clientsession
from .const import CONF_ENTRY_HOST, CONF_ENTRY_ID, DOMAIN
PLATFORMS = ["light"]
2021-05-27 13:56:20 +00:00
async def async_setup_entry(hass: HomeAssistant, 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.
2021-05-27 13:56:20 +00:00
uuid = entry.data[CONF_ENTRY_ID]
host = entry.data[CONF_ENTRY_HOST]
hass.data.setdefault(DOMAIN, {})[uuid] = twinkly_client.TwinklyClient(
host, async_get_clientsession(hass)
)
2021-05-27 13:56:20 +00:00
hass.config_entries.async_setup_platforms(entry, PLATFORMS)
return True
2021-05-27 13:56:20 +00:00
async def async_unload_entry(hass: HomeAssistant, 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!
2021-05-27 13:56:20 +00:00
uuid = entry.data[CONF_ENTRY_ID]
hass.data[DOMAIN].pop(uuid)
return True