2021-01-26 08:18:20 +00:00
|
|
|
"""Config flow to configure the EcoNet component."""
|
|
|
|
from pyeconet import EcoNetApiInterface
|
|
|
|
from pyeconet.errors import InvalidCredentialsError, PyeconetError
|
|
|
|
import voluptuous as vol
|
|
|
|
|
|
|
|
from homeassistant import config_entries
|
|
|
|
from homeassistant.const import CONF_EMAIL, CONF_PASSWORD
|
|
|
|
|
2021-03-30 04:02:56 +00:00
|
|
|
from .const import DOMAIN
|
2021-01-26 08:18:20 +00:00
|
|
|
|
|
|
|
|
|
|
|
class EcoNetFlowHandler(config_entries.ConfigFlow, domain=DOMAIN):
|
|
|
|
"""Handle an EcoNet config flow."""
|
|
|
|
|
|
|
|
VERSION = 1
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
"""Initialize the config flow."""
|
|
|
|
self.data_schema = vol.Schema(
|
|
|
|
{
|
|
|
|
vol.Required(CONF_EMAIL): str,
|
|
|
|
vol.Required(CONF_PASSWORD): str,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
async def async_step_user(self, user_input=None):
|
|
|
|
"""Handle the start of the config flow."""
|
|
|
|
if not user_input:
|
|
|
|
return self.async_show_form(
|
|
|
|
step_id="user",
|
|
|
|
data_schema=self.data_schema,
|
|
|
|
)
|
|
|
|
|
|
|
|
await self.async_set_unique_id(user_input[CONF_EMAIL])
|
|
|
|
self._abort_if_unique_id_configured()
|
|
|
|
errors = {}
|
|
|
|
|
|
|
|
try:
|
|
|
|
await EcoNetApiInterface.login(
|
|
|
|
user_input[CONF_EMAIL], user_input[CONF_PASSWORD]
|
|
|
|
)
|
|
|
|
except InvalidCredentialsError:
|
|
|
|
errors["base"] = "invalid_auth"
|
|
|
|
except PyeconetError:
|
|
|
|
errors["base"] = "cannot_connect"
|
|
|
|
|
|
|
|
if errors:
|
|
|
|
return self.async_show_form(
|
|
|
|
step_id="user",
|
|
|
|
data_schema=self.data_schema,
|
|
|
|
errors=errors,
|
|
|
|
)
|
|
|
|
|
|
|
|
return self.async_create_entry(
|
|
|
|
title=user_input[CONF_EMAIL],
|
|
|
|
data={
|
|
|
|
CONF_EMAIL: user_input[CONF_EMAIL],
|
|
|
|
CONF_PASSWORD: user_input[CONF_PASSWORD],
|
|
|
|
},
|
|
|
|
)
|