"""The Coolmaster integration.""" import logging from pycoolmasternet_async import CoolMasterNet from homeassistant.components.climate import SCAN_INTERVAL from homeassistant.config_entries import ConfigEntry from homeassistant.const import CONF_HOST, CONF_PORT, Platform from homeassistant.core import HomeAssistant from homeassistant.exceptions import ConfigEntryNotReady from homeassistant.helpers.update_coordinator import DataUpdateCoordinator, UpdateFailed from .const import CONF_SWING_SUPPORT, DATA_COORDINATOR, DATA_INFO, DOMAIN _LOGGER = logging.getLogger(__name__) PLATFORMS = [Platform.CLIMATE, Platform.BINARY_SENSOR, Platform.BUTTON, Platform.SENSOR] async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: """Set up Coolmaster from a config entry.""" host = entry.data[CONF_HOST] port = entry.data[CONF_PORT] if not entry.data.get(CONF_SWING_SUPPORT): coolmaster = CoolMasterNet( host, port, ) else: # Swing support adds an additional request per unit. The requests are # done in parallel, which can cause delays on the server. Therefore, # we increase the request timeout to 5 seconds instead of 1. coolmaster = CoolMasterNet( host, port, read_timeout=5, swing_support=True, ) try: info = await coolmaster.info() if not info: raise ConfigEntryNotReady except OSError as error: raise ConfigEntryNotReady() from error coordinator = CoolmasterDataUpdateCoordinator(hass, coolmaster) hass.data.setdefault(DOMAIN, {}) await coordinator.async_config_entry_first_refresh() hass.data[DOMAIN][entry.entry_id] = { DATA_INFO: info, DATA_COORDINATOR: coordinator, } await hass.config_entries.async_forward_entry_setups(entry, PLATFORMS) return True async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool: """Unload a Coolmaster 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 class CoolmasterDataUpdateCoordinator(DataUpdateCoordinator): """Class to manage fetching Coolmaster data.""" def __init__(self, hass, coolmaster): """Initialize global Coolmaster data updater.""" self._coolmaster = coolmaster super().__init__( hass, _LOGGER, name=DOMAIN, update_interval=SCAN_INTERVAL, ) async def _async_update_data(self): """Fetch data from Coolmaster.""" try: return await self._coolmaster.status() except OSError as error: raise UpdateFailed from error