mirror of
https://github.com/home-assistant/core.git
synced 2026-05-30 20:24:21 +01:00
64d17f44fa
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Claude <noreply@anthropic.com> Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>
77 lines
2.6 KiB
Python
77 lines
2.6 KiB
Python
"""Config Flow for the Vistapool integration."""
|
|
|
|
import logging
|
|
from typing import Any
|
|
|
|
from aioaquarite import AquariteAuth, AquariteClient, AquariteError, AuthenticationError
|
|
import voluptuous as vol
|
|
|
|
from homeassistant.config_entries import ConfigFlow, ConfigFlowResult
|
|
from homeassistant.const import CONF_PASSWORD, CONF_USERNAME
|
|
from homeassistant.helpers.aiohttp_client import async_get_clientsession
|
|
import homeassistant.helpers.config_validation as cv
|
|
|
|
from .const import DOMAIN
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
AUTH_SCHEMA = vol.Schema(
|
|
{
|
|
vol.Required(CONF_USERNAME): cv.string,
|
|
vol.Required(CONF_PASSWORD): cv.string,
|
|
}
|
|
)
|
|
|
|
|
|
class VistapoolConfigFlow(ConfigFlow, domain=DOMAIN):
|
|
"""Vistapool config flow (one entry per Hayward account)."""
|
|
|
|
async def async_step_user(
|
|
self, user_input: dict[str, Any] | None = None
|
|
) -> ConfigFlowResult:
|
|
"""Handle a flow initialized by the user."""
|
|
errors: dict[str, str] = {}
|
|
|
|
if user_input is not None:
|
|
username = user_input[CONF_USERNAME]
|
|
password = user_input[CONF_PASSWORD]
|
|
|
|
session = async_get_clientsession(self.hass)
|
|
try:
|
|
auth = AquariteAuth(session, username, password)
|
|
await auth.authenticate()
|
|
except AuthenticationError:
|
|
errors["base"] = "invalid_auth"
|
|
except AquariteError:
|
|
errors["base"] = "cannot_connect"
|
|
except Exception:
|
|
_LOGGER.exception("Unexpected error during authentication")
|
|
errors["base"] = "unknown"
|
|
else:
|
|
await self.async_set_unique_id(auth.user_id)
|
|
self._abort_if_unique_id_configured()
|
|
|
|
api = AquariteClient(auth)
|
|
try:
|
|
pools = await api.get_pools()
|
|
except AquariteError:
|
|
errors["base"] = "cannot_connect"
|
|
except Exception:
|
|
_LOGGER.exception("Unexpected error fetching pools")
|
|
errors["base"] = "unknown"
|
|
else:
|
|
if not pools:
|
|
errors["base"] = "no_pools"
|
|
else:
|
|
return self.async_create_entry(
|
|
title=username,
|
|
data={
|
|
CONF_USERNAME: username,
|
|
CONF_PASSWORD: password,
|
|
},
|
|
)
|
|
|
|
return self.async_show_form(
|
|
step_id="user", data_schema=AUTH_SCHEMA, errors=errors
|
|
)
|