2020-03-23 05:29:45 +00:00
|
|
|
"""Config flow for NuHeat integration."""
|
|
|
|
import logging
|
|
|
|
|
|
|
|
import nuheat
|
|
|
|
import requests.exceptions
|
|
|
|
import voluptuous as vol
|
|
|
|
|
|
|
|
from homeassistant import config_entries, core, exceptions
|
2020-04-09 19:43:42 +00:00
|
|
|
from homeassistant.const import (
|
|
|
|
CONF_PASSWORD,
|
|
|
|
CONF_USERNAME,
|
|
|
|
HTTP_BAD_REQUEST,
|
|
|
|
HTTP_INTERNAL_SERVER_ERROR,
|
|
|
|
)
|
2020-03-23 05:29:45 +00:00
|
|
|
|
|
|
|
from .const import CONF_SERIAL_NUMBER
|
|
|
|
from .const import DOMAIN # pylint:disable=unused-import
|
|
|
|
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
DATA_SCHEMA = vol.Schema(
|
|
|
|
{
|
|
|
|
vol.Required(CONF_USERNAME): str,
|
|
|
|
vol.Required(CONF_PASSWORD): str,
|
|
|
|
vol.Required(CONF_SERIAL_NUMBER): str,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
async def validate_input(hass: core.HomeAssistant, data):
|
|
|
|
"""Validate the user input allows us to connect.
|
|
|
|
|
|
|
|
Data has the keys from DATA_SCHEMA with values provided by the user.
|
|
|
|
"""
|
|
|
|
api = nuheat.NuHeat(data[CONF_USERNAME], data[CONF_PASSWORD])
|
|
|
|
|
|
|
|
try:
|
|
|
|
await hass.async_add_executor_job(api.authenticate)
|
2020-08-28 11:50:32 +00:00
|
|
|
except requests.exceptions.Timeout as ex:
|
|
|
|
raise CannotConnect from ex
|
2020-03-23 05:29:45 +00:00
|
|
|
except requests.exceptions.HTTPError as ex:
|
2020-04-08 21:20:03 +00:00
|
|
|
if (
|
2020-04-09 19:43:42 +00:00
|
|
|
ex.response.status_code > HTTP_BAD_REQUEST
|
2020-04-08 21:20:03 +00:00
|
|
|
and ex.response.status_code < HTTP_INTERNAL_SERVER_ERROR
|
|
|
|
):
|
2020-08-28 11:50:32 +00:00
|
|
|
raise InvalidAuth from ex
|
|
|
|
raise CannotConnect from ex
|
2020-03-23 05:29:45 +00:00
|
|
|
#
|
|
|
|
# The underlying module throws a generic exception on login failure
|
|
|
|
#
|
2020-08-29 05:59:24 +00:00
|
|
|
except Exception as ex:
|
2020-08-28 11:50:32 +00:00
|
|
|
raise InvalidAuth from ex
|
2020-03-23 05:29:45 +00:00
|
|
|
|
|
|
|
try:
|
|
|
|
thermostat = await hass.async_add_executor_job(
|
|
|
|
api.get_thermostat, data[CONF_SERIAL_NUMBER]
|
|
|
|
)
|
2020-08-28 11:50:32 +00:00
|
|
|
except requests.exceptions.HTTPError as ex:
|
|
|
|
raise InvalidThermostat from ex
|
2020-03-23 05:29:45 +00:00
|
|
|
|
|
|
|
return {"title": thermostat.room, "serial_number": thermostat.serial_number}
|
|
|
|
|
|
|
|
|
|
|
|
class ConfigFlow(config_entries.ConfigFlow, domain=DOMAIN):
|
|
|
|
"""Handle a config flow for NuHeat."""
|
|
|
|
|
|
|
|
VERSION = 1
|
|
|
|
CONNECTION_CLASS = config_entries.CONN_CLASS_CLOUD_POLL
|
|
|
|
|
|
|
|
async def async_step_user(self, user_input=None):
|
|
|
|
"""Handle the initial step."""
|
|
|
|
errors = {}
|
|
|
|
if user_input is not None:
|
|
|
|
try:
|
|
|
|
info = await validate_input(self.hass, user_input)
|
|
|
|
except CannotConnect:
|
|
|
|
errors["base"] = "cannot_connect"
|
|
|
|
except InvalidAuth:
|
|
|
|
errors["base"] = "invalid_auth"
|
|
|
|
except InvalidThermostat:
|
|
|
|
errors["base"] = "invalid_thermostat"
|
|
|
|
except Exception: # pylint: disable=broad-except
|
|
|
|
_LOGGER.exception("Unexpected exception")
|
|
|
|
errors["base"] = "unknown"
|
|
|
|
|
|
|
|
if "base" not in errors:
|
|
|
|
await self.async_set_unique_id(info["serial_number"])
|
|
|
|
self._abort_if_unique_id_configured()
|
|
|
|
return self.async_create_entry(title=info["title"], data=user_input)
|
|
|
|
|
|
|
|
return self.async_show_form(
|
|
|
|
step_id="user", data_schema=DATA_SCHEMA, errors=errors
|
|
|
|
)
|
|
|
|
|
|
|
|
async def async_step_import(self, user_input):
|
|
|
|
"""Handle import."""
|
|
|
|
await self.async_set_unique_id(user_input[CONF_SERIAL_NUMBER])
|
|
|
|
self._abort_if_unique_id_configured()
|
|
|
|
|
|
|
|
return await self.async_step_user(user_input)
|
|
|
|
|
|
|
|
|
|
|
|
class CannotConnect(exceptions.HomeAssistantError):
|
|
|
|
"""Error to indicate we cannot connect."""
|
|
|
|
|
|
|
|
|
|
|
|
class InvalidAuth(exceptions.HomeAssistantError):
|
|
|
|
"""Error to indicate there is invalid auth."""
|
|
|
|
|
|
|
|
|
|
|
|
class InvalidThermostat(exceptions.HomeAssistantError):
|
|
|
|
"""Error to indicate there is invalid thermostat."""
|