62 lines
1.9 KiB
Python
62 lines
1.9 KiB
Python
|
"""Config flow for A. O. Smith integration."""
|
||
|
from __future__ import annotations
|
||
|
|
||
|
import logging
|
||
|
from typing import Any
|
||
|
|
||
|
from py_aosmith import AOSmithAPIClient, AOSmithInvalidCredentialsException
|
||
|
import voluptuous as vol
|
||
|
|
||
|
from homeassistant import config_entries
|
||
|
from homeassistant.const import CONF_EMAIL, CONF_PASSWORD
|
||
|
from homeassistant.data_entry_flow import FlowResult
|
||
|
from homeassistant.helpers import aiohttp_client
|
||
|
|
||
|
from .const import DOMAIN
|
||
|
|
||
|
_LOGGER = logging.getLogger(__name__)
|
||
|
|
||
|
|
||
|
class ConfigFlow(config_entries.ConfigFlow, domain=DOMAIN):
|
||
|
"""Handle a config flow for A. O. Smith."""
|
||
|
|
||
|
VERSION = 1
|
||
|
|
||
|
async def async_step_user(
|
||
|
self, user_input: dict[str, Any] | None = None
|
||
|
) -> FlowResult:
|
||
|
"""Handle the initial step."""
|
||
|
errors: dict[str, str] = {}
|
||
|
if user_input is not None:
|
||
|
unique_id = user_input[CONF_EMAIL].lower()
|
||
|
await self.async_set_unique_id(unique_id)
|
||
|
self._abort_if_unique_id_configured()
|
||
|
|
||
|
session = aiohttp_client.async_get_clientsession(self.hass)
|
||
|
client = AOSmithAPIClient(
|
||
|
user_input[CONF_EMAIL], user_input[CONF_PASSWORD], session
|
||
|
)
|
||
|
|
||
|
try:
|
||
|
await client.get_devices()
|
||
|
except AOSmithInvalidCredentialsException:
|
||
|
errors["base"] = "invalid_auth"
|
||
|
except Exception: # pylint: disable=broad-except
|
||
|
_LOGGER.exception("Unexpected exception")
|
||
|
errors["base"] = "unknown"
|
||
|
else:
|
||
|
return self.async_create_entry(
|
||
|
title=user_input[CONF_EMAIL], data=user_input
|
||
|
)
|
||
|
|
||
|
return self.async_show_form(
|
||
|
step_id="user",
|
||
|
data_schema=vol.Schema(
|
||
|
{
|
||
|
vol.Required(CONF_EMAIL): str,
|
||
|
vol.Required(CONF_PASSWORD): str,
|
||
|
}
|
||
|
),
|
||
|
errors=errors,
|
||
|
)
|