* Remove unnecessary exception re-wraps * Preserve exception chains on re-raise We slap "from cause" to almost all possible cases here. In some cases it could conceivably be better to do "from None" if we really want to hide the cause. However those should be in the minority, and "from cause" should be an improvement over the corresponding raise without a "from" in all cases anyway. The only case where we raise from None here is in plex, where the exception for an original invalid SSL cert is not the root cause for failure to validate a newly fetched one. Follow local convention on exception variable names if there is a consistent one, otherwise `err` to match with majority of codebase. * Fix mistaken re-wrap in homematicip_cloud/hap.py Missed the difference between HmipConnectionError and HmipcConnectionError. * Do not hide original error on plex new cert validation error Original is not the cause for the new one, but showing old in the traceback is useful nevertheless.
121 lines
3.6 KiB
Python
121 lines
3.6 KiB
Python
"""Support for NuHeat thermostats."""
|
|
import asyncio
|
|
import logging
|
|
|
|
import nuheat
|
|
import requests
|
|
import voluptuous as vol
|
|
|
|
from homeassistant.config_entries import SOURCE_IMPORT, ConfigEntry
|
|
from homeassistant.const import (
|
|
CONF_DEVICES,
|
|
CONF_PASSWORD,
|
|
CONF_USERNAME,
|
|
HTTP_BAD_REQUEST,
|
|
HTTP_INTERNAL_SERVER_ERROR,
|
|
)
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.exceptions import ConfigEntryNotReady
|
|
from homeassistant.helpers import config_validation as cv
|
|
|
|
from .const import CONF_SERIAL_NUMBER, DOMAIN, PLATFORMS
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
CONFIG_SCHEMA = vol.Schema(
|
|
{
|
|
DOMAIN: vol.Schema(
|
|
{
|
|
vol.Required(CONF_USERNAME): cv.string,
|
|
vol.Required(CONF_PASSWORD): cv.string,
|
|
vol.Required(CONF_DEVICES, default=[]): vol.All(
|
|
cv.ensure_list, [cv.string]
|
|
),
|
|
}
|
|
)
|
|
},
|
|
extra=vol.ALLOW_EXTRA,
|
|
)
|
|
|
|
|
|
async def async_setup(hass: HomeAssistant, config: dict):
|
|
"""Set up the NuHeat component."""
|
|
hass.data.setdefault(DOMAIN, {})
|
|
conf = config.get(DOMAIN)
|
|
if not conf:
|
|
return True
|
|
|
|
for serial_number in conf[CONF_DEVICES]:
|
|
# Since the api currently doesn't permit fetching the serial numbers
|
|
# and they have to be specified we create a separate config entry for
|
|
# each serial number. This won't increase the number of http
|
|
# requests as each thermostat has to be updated anyways.
|
|
# This also allows us to validate that the entered valid serial
|
|
# numbers and do not end up with a config entry where half of the
|
|
# devices work.
|
|
hass.async_create_task(
|
|
hass.config_entries.flow.async_init(
|
|
DOMAIN,
|
|
context={"source": SOURCE_IMPORT},
|
|
data={
|
|
CONF_USERNAME: conf[CONF_USERNAME],
|
|
CONF_PASSWORD: conf[CONF_PASSWORD],
|
|
CONF_SERIAL_NUMBER: serial_number,
|
|
},
|
|
)
|
|
)
|
|
|
|
return True
|
|
|
|
|
|
async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry):
|
|
"""Set up NuHeat from a config entry."""
|
|
|
|
conf = entry.data
|
|
|
|
username = conf[CONF_USERNAME]
|
|
password = conf[CONF_PASSWORD]
|
|
serial_number = conf[CONF_SERIAL_NUMBER]
|
|
|
|
api = nuheat.NuHeat(username, password)
|
|
|
|
try:
|
|
await hass.async_add_executor_job(api.authenticate)
|
|
except requests.exceptions.Timeout as ex:
|
|
raise ConfigEntryNotReady from ex
|
|
except requests.exceptions.HTTPError as ex:
|
|
if (
|
|
ex.response.status_code > HTTP_BAD_REQUEST
|
|
and ex.response.status_code < HTTP_INTERNAL_SERVER_ERROR
|
|
):
|
|
_LOGGER.error("Failed to login to nuheat: %s", ex)
|
|
return False
|
|
raise ConfigEntryNotReady from ex
|
|
except Exception as ex: # pylint: disable=broad-except
|
|
_LOGGER.error("Failed to login to nuheat: %s", ex)
|
|
return False
|
|
|
|
hass.data[DOMAIN][entry.entry_id] = (api, serial_number)
|
|
|
|
for component in PLATFORMS:
|
|
hass.async_create_task(
|
|
hass.config_entries.async_forward_entry_setup(entry, component)
|
|
)
|
|
|
|
return True
|
|
|
|
|
|
async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry):
|
|
"""Unload a config entry."""
|
|
unload_ok = all(
|
|
await asyncio.gather(
|
|
*[
|
|
hass.config_entries.async_forward_entry_unload(entry, component)
|
|
for component in PLATFORMS
|
|
]
|
|
)
|
|
)
|
|
if unload_ok:
|
|
hass.data[DOMAIN].pop(entry.entry_id)
|
|
|
|
return unload_ok
|