mirror of https://github.com/home-assistant/core
50 lines
1.4 KiB
Python
50 lines
1.4 KiB
Python
"""The PoolSense integration."""
|
|
|
|
import logging
|
|
|
|
from poolsense import PoolSense
|
|
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.const import CONF_EMAIL, CONF_PASSWORD, Platform
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers import aiohttp_client
|
|
|
|
from .coordinator import PoolSenseDataUpdateCoordinator
|
|
|
|
type PoolSenseConfigEntry = ConfigEntry[PoolSenseDataUpdateCoordinator]
|
|
|
|
PLATFORMS = [Platform.BINARY_SENSOR, Platform.SENSOR]
|
|
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
async def async_setup_entry(hass: HomeAssistant, entry: PoolSenseConfigEntry) -> bool:
|
|
"""Set up PoolSense from a config entry."""
|
|
|
|
poolsense = PoolSense(
|
|
aiohttp_client.async_get_clientsession(hass),
|
|
entry.data[CONF_EMAIL],
|
|
entry.data[CONF_PASSWORD],
|
|
)
|
|
auth_valid = await poolsense.test_poolsense_credentials()
|
|
|
|
if not auth_valid:
|
|
_LOGGER.error("Invalid authentication")
|
|
return False
|
|
|
|
coordinator = PoolSenseDataUpdateCoordinator(hass, poolsense)
|
|
|
|
await coordinator.async_config_entry_first_refresh()
|
|
|
|
entry.runtime_data = coordinator
|
|
|
|
await hass.config_entries.async_forward_entry_setups(entry, PLATFORMS)
|
|
|
|
return True
|
|
|
|
|
|
async def async_unload_entry(hass: HomeAssistant, entry: PoolSenseConfigEntry) -> bool:
|
|
"""Unload a config entry."""
|
|
return await hass.config_entries.async_unload_platforms(entry, PLATFORMS)
|