128 lines
3.7 KiB
Python
128 lines
3.7 KiB
Python
"""Config flow for BleBox devices integration."""
|
|
import logging
|
|
|
|
from blebox_uniapi.error import Error, UnsupportedBoxVersion
|
|
from blebox_uniapi.products import Products
|
|
from blebox_uniapi.session import ApiHost
|
|
import voluptuous as vol
|
|
|
|
from homeassistant import config_entries
|
|
from homeassistant.const import CONF_HOST, CONF_PORT
|
|
from homeassistant.helpers.aiohttp_client import async_get_clientsession
|
|
|
|
from .const import (
|
|
ADDRESS_ALREADY_CONFIGURED,
|
|
CANNOT_CONNECT,
|
|
DEFAULT_HOST,
|
|
DEFAULT_PORT,
|
|
DEFAULT_SETUP_TIMEOUT,
|
|
DOMAIN,
|
|
UNKNOWN,
|
|
UNSUPPORTED_VERSION,
|
|
)
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
def host_port(data):
|
|
"""Return a list with host and port."""
|
|
return (data[CONF_HOST], data[CONF_PORT])
|
|
|
|
|
|
def create_schema(previous_input=None):
|
|
"""Create a schema with given values as default."""
|
|
if previous_input is not None:
|
|
host, port = host_port(previous_input)
|
|
else:
|
|
host = DEFAULT_HOST
|
|
port = DEFAULT_PORT
|
|
|
|
return vol.Schema(
|
|
{
|
|
vol.Required(CONF_HOST, default=host): str,
|
|
vol.Required(CONF_PORT, default=port): int,
|
|
}
|
|
)
|
|
|
|
|
|
LOG_MSG = {
|
|
UNSUPPORTED_VERSION: "Outdated firmware",
|
|
CANNOT_CONNECT: "Failed to identify device",
|
|
UNKNOWN: "Unknown error while identifying device",
|
|
}
|
|
|
|
|
|
class BleBoxConfigFlow(config_entries.ConfigFlow, domain=DOMAIN):
|
|
"""Handle a config flow for BleBox devices."""
|
|
|
|
VERSION = 1
|
|
|
|
def __init__(self):
|
|
"""Initialize the BleBox config flow."""
|
|
self.device_config = {}
|
|
|
|
def handle_step_exception(
|
|
self, step, exception, schema, host, port, message_id, log_fn
|
|
):
|
|
"""Handle step exceptions."""
|
|
|
|
log_fn("%s at %s:%d (%s)", LOG_MSG[message_id], host, port, exception)
|
|
|
|
return self.async_show_form(
|
|
step_id="user",
|
|
data_schema=schema,
|
|
errors={"base": message_id},
|
|
description_placeholders={"address": f"{host}:{port}"},
|
|
)
|
|
|
|
async def async_step_user(self, user_input=None):
|
|
"""Handle initial user-triggered config step."""
|
|
|
|
hass = self.hass
|
|
schema = create_schema(user_input)
|
|
|
|
if user_input is None:
|
|
return self.async_show_form(
|
|
step_id="user",
|
|
data_schema=schema,
|
|
errors={},
|
|
description_placeholders={},
|
|
)
|
|
|
|
addr = host_port(user_input)
|
|
|
|
for entry in self._async_current_entries():
|
|
if addr == host_port(entry.data):
|
|
host, port = addr
|
|
return self.async_abort(
|
|
reason=ADDRESS_ALREADY_CONFIGURED,
|
|
description_placeholders={"address": f"{host}:{port}"},
|
|
)
|
|
|
|
websession = async_get_clientsession(hass)
|
|
api_host = ApiHost(*addr, DEFAULT_SETUP_TIMEOUT, websession, hass.loop, _LOGGER)
|
|
|
|
try:
|
|
product = await Products.async_from_host(api_host)
|
|
|
|
except UnsupportedBoxVersion as ex:
|
|
return self.handle_step_exception(
|
|
"user", ex, schema, *addr, UNSUPPORTED_VERSION, _LOGGER.debug
|
|
)
|
|
|
|
except Error as ex:
|
|
return self.handle_step_exception(
|
|
"user", ex, schema, *addr, CANNOT_CONNECT, _LOGGER.warning
|
|
)
|
|
|
|
except RuntimeError as ex:
|
|
return self.handle_step_exception(
|
|
"user", ex, schema, *addr, UNKNOWN, _LOGGER.error
|
|
)
|
|
|
|
# Check if configured but IP changed since
|
|
await self.async_set_unique_id(product.unique_id)
|
|
self._abort_if_unique_id_configured()
|
|
|
|
return self.async_create_entry(title=product.name, data=user_input)
|