100 lines
3.2 KiB
Python
100 lines
3.2 KiB
Python
"""Config flow to configure the Linky integration."""
|
|
import logging
|
|
|
|
from pylinky.client import LinkyClient
|
|
from pylinky.exceptions import (
|
|
PyLinkyAccessException,
|
|
PyLinkyEnedisException,
|
|
PyLinkyException,
|
|
PyLinkyWrongLoginException,
|
|
)
|
|
import voluptuous as vol
|
|
|
|
from homeassistant import config_entries
|
|
from homeassistant.const import CONF_PASSWORD, CONF_TIMEOUT, CONF_USERNAME
|
|
|
|
from .const import DEFAULT_TIMEOUT
|
|
from .const import DOMAIN # pylint: disable=unused-import
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
class LinkyFlowHandler(config_entries.ConfigFlow, domain=DOMAIN):
|
|
"""Handle a config flow."""
|
|
|
|
VERSION = 1
|
|
CONNECTION_CLASS = config_entries.CONN_CLASS_CLOUD_POLL
|
|
|
|
def _show_setup_form(self, user_input=None, errors=None):
|
|
"""Show the setup form to the user."""
|
|
|
|
if user_input is None:
|
|
user_input = {}
|
|
|
|
return self.async_show_form(
|
|
step_id="user",
|
|
data_schema=vol.Schema(
|
|
{
|
|
vol.Required(
|
|
CONF_USERNAME, default=user_input.get(CONF_USERNAME, "")
|
|
): str,
|
|
vol.Required(
|
|
CONF_PASSWORD, default=user_input.get(CONF_PASSWORD, "")
|
|
): str,
|
|
}
|
|
),
|
|
errors=errors or {},
|
|
)
|
|
|
|
async def async_step_user(self, user_input=None):
|
|
"""Handle a flow initiated by the user."""
|
|
errors = {}
|
|
|
|
if user_input is None:
|
|
return self._show_setup_form(user_input, None)
|
|
|
|
username = user_input[CONF_USERNAME]
|
|
password = user_input[CONF_PASSWORD]
|
|
timeout = user_input.get(CONF_TIMEOUT, DEFAULT_TIMEOUT)
|
|
|
|
# Check if already configured
|
|
if self.unique_id is None:
|
|
await self.async_set_unique_id(username)
|
|
self._abort_if_unique_id_configured()
|
|
|
|
client = LinkyClient(username, password, None, timeout)
|
|
try:
|
|
await self.hass.async_add_executor_job(client.login)
|
|
await self.hass.async_add_executor_job(client.fetch_data)
|
|
except PyLinkyAccessException as exp:
|
|
_LOGGER.error(exp)
|
|
errors["base"] = "access"
|
|
return self._show_setup_form(user_input, errors)
|
|
except PyLinkyEnedisException as exp:
|
|
_LOGGER.error(exp)
|
|
errors["base"] = "enedis"
|
|
return self._show_setup_form(user_input, errors)
|
|
except PyLinkyWrongLoginException as exp:
|
|
_LOGGER.error(exp)
|
|
errors["base"] = "wrong_login"
|
|
return self._show_setup_form(user_input, errors)
|
|
except PyLinkyException as exp:
|
|
_LOGGER.error(exp)
|
|
errors["base"] = "unknown"
|
|
return self._show_setup_form(user_input, errors)
|
|
finally:
|
|
client.close_session()
|
|
|
|
return self.async_create_entry(
|
|
title=username,
|
|
data={
|
|
CONF_USERNAME: username,
|
|
CONF_PASSWORD: password,
|
|
CONF_TIMEOUT: timeout,
|
|
},
|
|
)
|
|
|
|
async def async_step_import(self, user_input=None):
|
|
"""Import a config entry."""
|
|
return await self.async_step_user(user_input)
|