* 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.
125 lines
3.8 KiB
Python
125 lines
3.8 KiB
Python
"""Config flow for Plugwise integration."""
|
|
import logging
|
|
|
|
from Plugwise_Smile.Smile import Smile
|
|
import voluptuous as vol
|
|
|
|
from homeassistant import config_entries, core, exceptions
|
|
from homeassistant.const import CONF_HOST, CONF_PASSWORD
|
|
from homeassistant.helpers.aiohttp_client import async_get_clientsession
|
|
from homeassistant.helpers.typing import DiscoveryInfoType
|
|
|
|
from .const import DOMAIN # pylint:disable=unused-import
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
ZEROCONF_MAP = {
|
|
"smile": "P1 DSMR",
|
|
"smile_thermo": "Climate (Anna)",
|
|
"smile_open_therm": "Climate (Adam)",
|
|
}
|
|
|
|
|
|
def _base_schema(discovery_info):
|
|
"""Generate base schema."""
|
|
base_schema = {}
|
|
|
|
if not discovery_info:
|
|
base_schema[vol.Required(CONF_HOST)] = str
|
|
|
|
base_schema[vol.Required(CONF_PASSWORD)] = str
|
|
|
|
return vol.Schema(base_schema)
|
|
|
|
|
|
async def validate_input(hass: core.HomeAssistant, data):
|
|
"""
|
|
Validate the user input allows us to connect.
|
|
|
|
Data has the keys from _base_schema() with values provided by the user.
|
|
"""
|
|
websession = async_get_clientsession(hass, verify_ssl=False)
|
|
api = Smile(
|
|
host=data[CONF_HOST],
|
|
password=data[CONF_PASSWORD],
|
|
timeout=30,
|
|
websession=websession,
|
|
)
|
|
|
|
try:
|
|
await api.connect()
|
|
except Smile.InvalidAuthentication as err:
|
|
raise InvalidAuth from err
|
|
except Smile.PlugwiseError as err:
|
|
raise CannotConnect from err
|
|
|
|
return api
|
|
|
|
|
|
class ConfigFlow(config_entries.ConfigFlow, domain=DOMAIN):
|
|
"""Handle a config flow for Plugwise Smile."""
|
|
|
|
VERSION = 1
|
|
CONNECTION_CLASS = config_entries.CONN_CLASS_LOCAL_POLL
|
|
|
|
def __init__(self):
|
|
"""Initialize the Plugwise config flow."""
|
|
self.discovery_info = {}
|
|
|
|
async def async_step_zeroconf(self, discovery_info: DiscoveryInfoType):
|
|
"""Prepare configuration for a discovered Plugwise Smile."""
|
|
self.discovery_info = discovery_info
|
|
_properties = self.discovery_info.get("properties")
|
|
|
|
unique_id = self.discovery_info.get("hostname").split(".")[0]
|
|
await self.async_set_unique_id(unique_id)
|
|
self._abort_if_unique_id_configured()
|
|
|
|
_product = _properties.get("product", None)
|
|
_version = _properties.get("version", "n/a")
|
|
_name = f"{ZEROCONF_MAP.get(_product, _product)} v{_version}"
|
|
|
|
# pylint: disable=no-member # https://github.com/PyCQA/pylint/issues/3167
|
|
self.context["title_placeholders"] = {
|
|
CONF_HOST: discovery_info[CONF_HOST],
|
|
"name": _name,
|
|
}
|
|
return await self.async_step_user()
|
|
|
|
async def async_step_user(self, user_input=None):
|
|
"""Handle the initial step."""
|
|
errors = {}
|
|
|
|
if user_input is not None:
|
|
|
|
if self.discovery_info:
|
|
user_input[CONF_HOST] = self.discovery_info[CONF_HOST]
|
|
|
|
try:
|
|
api = await validate_input(self.hass, user_input)
|
|
|
|
return self.async_create_entry(title=api.smile_name, data=user_input)
|
|
except CannotConnect:
|
|
errors["base"] = "cannot_connect"
|
|
except InvalidAuth:
|
|
errors["base"] = "invalid_auth"
|
|
except Exception: # pylint: disable=broad-except
|
|
_LOGGER.exception("Unexpected exception")
|
|
errors["base"] = "unknown"
|
|
|
|
if not errors:
|
|
await self.async_set_unique_id(api.gateway_id)
|
|
|
|
return self.async_create_entry(title=api.smile_name, data=user_input)
|
|
|
|
return self.async_show_form(
|
|
step_id="user", data_schema=_base_schema(self.discovery_info), errors=errors
|
|
)
|
|
|
|
|
|
class CannotConnect(exceptions.HomeAssistantError):
|
|
"""Error to indicate we cannot connect."""
|
|
|
|
|
|
class InvalidAuth(exceptions.HomeAssistantError):
|
|
"""Error to indicate there is invalid auth."""
|