mirror of
https://github.com/home-assistant/core.git
synced 2026-05-08 09:38:58 +01:00
58e8a8d398
Co-authored-by: Joostlek <joostlek@outlook.com>
132 lines
4.1 KiB
Python
132 lines
4.1 KiB
Python
"""Support for ecobee."""
|
|
|
|
from datetime import timedelta
|
|
|
|
from pyecobee import (
|
|
ECOBEE_API_KEY,
|
|
ECOBEE_PASSWORD,
|
|
ECOBEE_REFRESH_TOKEN,
|
|
ECOBEE_USERNAME,
|
|
Ecobee,
|
|
ExpiredTokenError,
|
|
)
|
|
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.const import CONF_API_KEY, CONF_PASSWORD, CONF_USERNAME
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.util import Throttle
|
|
|
|
from .const import _LOGGER, CONF_REFRESH_TOKEN, PLATFORMS
|
|
|
|
MIN_TIME_BETWEEN_UPDATES = timedelta(seconds=180)
|
|
|
|
type EcobeeConfigEntry = ConfigEntry[EcobeeData]
|
|
|
|
|
|
async def async_setup_entry(hass: HomeAssistant, entry: EcobeeConfigEntry) -> bool:
|
|
"""Set up ecobee via a config entry."""
|
|
api_key = entry.data.get(CONF_API_KEY)
|
|
username = entry.data.get(CONF_USERNAME)
|
|
password = entry.data.get(CONF_PASSWORD)
|
|
refresh_token = entry.data[CONF_REFRESH_TOKEN]
|
|
|
|
runtime_data = EcobeeData(
|
|
hass,
|
|
entry,
|
|
api_key=api_key,
|
|
username=username,
|
|
password=password,
|
|
refresh_token=refresh_token,
|
|
)
|
|
|
|
if not await runtime_data.refresh():
|
|
return False
|
|
|
|
await runtime_data.update()
|
|
|
|
if runtime_data.ecobee.thermostats is None:
|
|
_LOGGER.error("No ecobee devices found to set up")
|
|
return False
|
|
|
|
entry.runtime_data = runtime_data
|
|
|
|
await hass.config_entries.async_forward_entry_setups(entry, PLATFORMS)
|
|
|
|
return True
|
|
|
|
|
|
class EcobeeData:
|
|
"""Handle getting the latest data from ecobee.com so platforms can use it.
|
|
|
|
Also handle refreshing tokens and updating config entry with refreshed tokens.
|
|
"""
|
|
|
|
def __init__(
|
|
self,
|
|
hass: HomeAssistant,
|
|
entry: ConfigEntry,
|
|
api_key: str | None = None,
|
|
username: str | None = None,
|
|
password: str | None = None,
|
|
refresh_token: str | None = None,
|
|
) -> None:
|
|
"""Initialize the Ecobee data object."""
|
|
self._hass = hass
|
|
self.entry = entry
|
|
|
|
if api_key:
|
|
self.ecobee = Ecobee(
|
|
config={ECOBEE_API_KEY: api_key, ECOBEE_REFRESH_TOKEN: refresh_token}
|
|
)
|
|
elif username and password:
|
|
self.ecobee = Ecobee(
|
|
config={
|
|
ECOBEE_USERNAME: username,
|
|
ECOBEE_PASSWORD: password,
|
|
ECOBEE_REFRESH_TOKEN: refresh_token,
|
|
}
|
|
)
|
|
else:
|
|
raise ValueError("No ecobee credentials provided")
|
|
|
|
@Throttle(MIN_TIME_BETWEEN_UPDATES)
|
|
async def update(self):
|
|
"""Get the latest data from ecobee.com."""
|
|
try:
|
|
await self._hass.async_add_executor_job(self.ecobee.update)
|
|
_LOGGER.debug("Updating ecobee")
|
|
except ExpiredTokenError:
|
|
_LOGGER.debug("Refreshing expired ecobee tokens")
|
|
await self.refresh()
|
|
|
|
async def refresh(self) -> bool:
|
|
"""Refresh ecobee tokens and update config entry."""
|
|
_LOGGER.debug("Refreshing ecobee tokens and updating config entry")
|
|
if await self._hass.async_add_executor_job(self.ecobee.refresh_tokens):
|
|
data = {}
|
|
if self.ecobee.config.get(ECOBEE_API_KEY):
|
|
data = {
|
|
CONF_API_KEY: self.ecobee.config[ECOBEE_API_KEY],
|
|
CONF_REFRESH_TOKEN: self.ecobee.config[ECOBEE_REFRESH_TOKEN],
|
|
}
|
|
elif self.ecobee.config.get(ECOBEE_USERNAME) and self.ecobee.config.get(
|
|
ECOBEE_PASSWORD
|
|
):
|
|
data = {
|
|
CONF_USERNAME: self.ecobee.config[ECOBEE_USERNAME],
|
|
CONF_PASSWORD: self.ecobee.config[ECOBEE_PASSWORD],
|
|
CONF_REFRESH_TOKEN: self.ecobee.config[ECOBEE_REFRESH_TOKEN],
|
|
}
|
|
self._hass.config_entries.async_update_entry(
|
|
self.entry,
|
|
data=data,
|
|
)
|
|
return True
|
|
_LOGGER.error("Error refreshing ecobee tokens")
|
|
return False
|
|
|
|
|
|
async def async_unload_entry(hass: HomeAssistant, entry: EcobeeConfigEntry) -> bool:
|
|
"""Unload the config entry and platforms."""
|
|
return await hass.config_entries.async_unload_platforms(entry, PLATFORMS)
|