"""Config flow to configure the honeywell integration.""" from __future__ import annotations import asyncio from collections.abc import Mapping from typing import Any import aiosomecomfort import voluptuous as vol from homeassistant import config_entries from homeassistant.const import CONF_PASSWORD, CONF_USERNAME from homeassistant.core import callback from homeassistant.data_entry_flow import FlowResult from homeassistant.helpers.aiohttp_client import async_get_clientsession from .const import ( CONF_COOL_AWAY_TEMPERATURE, CONF_HEAT_AWAY_TEMPERATURE, DEFAULT_COOL_AWAY_TEMPERATURE, DEFAULT_HEAT_AWAY_TEMPERATURE, DOMAIN, ) REAUTH_SCHEMA = vol.Schema({vol.Required(CONF_PASSWORD): str}) class HoneywellConfigFlow(config_entries.ConfigFlow, domain=DOMAIN): """Handle a honeywell config flow.""" VERSION = 1 entry: config_entries.ConfigEntry | None async def async_step_reauth(self, entry_data: Mapping[str, Any]) -> FlowResult: """Handle re-authentication with Honeywell.""" self.entry = self.hass.config_entries.async_get_entry(self.context["entry_id"]) return await self.async_step_reauth_confirm() async def async_step_reauth_confirm( self, user_input: dict[str, Any] | None = None ) -> FlowResult: """Confirm re-authentication with Honeywell.""" errors: dict[str, str] = {} if user_input: assert self.entry is not None password = user_input[CONF_PASSWORD] data = { CONF_USERNAME: self.entry.data[CONF_USERNAME], CONF_PASSWORD: password, } try: await self.is_valid( username=data[CONF_USERNAME], password=data[CONF_PASSWORD] ) except aiosomecomfort.AuthError: errors["base"] = "invalid_auth" except ( aiosomecomfort.ConnectionError, aiosomecomfort.ConnectionTimeout, asyncio.TimeoutError, ): errors["base"] = "cannot_connect" else: self.hass.config_entries.async_update_entry( self.entry, data={ **self.entry.data, CONF_PASSWORD: password, }, ) await self.hass.config_entries.async_reload(self.entry.entry_id) return self.async_abort(reason="reauth_successful") return self.async_show_form( step_id="reauth_confirm", data_schema=REAUTH_SCHEMA, errors=errors, ) async def async_step_user(self, user_input=None) -> FlowResult: """Create config entry. Show the setup form to the user.""" errors = {} if user_input is not None: try: await self.is_valid(**user_input) except aiosomecomfort.AuthError: errors["base"] = "invalid_auth" except ( aiosomecomfort.ConnectionError, aiosomecomfort.ConnectionTimeout, asyncio.TimeoutError, ): errors["base"] = "cannot_connect" if not errors: return self.async_create_entry( title=DOMAIN, data=user_input, ) data_schema = { vol.Required(CONF_USERNAME): str, vol.Required(CONF_PASSWORD): str, } return self.async_show_form( step_id="user", data_schema=vol.Schema(data_schema), errors=errors ) async def is_valid(self, **kwargs) -> bool: """Check if login credentials are valid.""" client = aiosomecomfort.AIOSomeComfort( kwargs[CONF_USERNAME], kwargs[CONF_PASSWORD], session=async_get_clientsession(self.hass), ) await client.login() return True @staticmethod @callback def async_get_options_flow( config_entry: config_entries.ConfigEntry, ) -> HoneywellOptionsFlowHandler: """Options callback for Honeywell.""" return HoneywellOptionsFlowHandler(config_entry) class HoneywellOptionsFlowHandler(config_entries.OptionsFlow): """Config flow options for Honeywell.""" def __init__(self, entry: config_entries.ConfigEntry) -> None: """Initialize Honeywell options flow.""" self.config_entry = entry async def async_step_init(self, user_input=None) -> FlowResult: """Manage the options.""" if user_input is not None: return self.async_create_entry(title=DOMAIN, data=user_input) return self.async_show_form( step_id="init", data_schema=vol.Schema( { vol.Required( CONF_COOL_AWAY_TEMPERATURE, default=self.config_entry.options.get( CONF_COOL_AWAY_TEMPERATURE, DEFAULT_COOL_AWAY_TEMPERATURE ), ): int, vol.Required( CONF_HEAT_AWAY_TEMPERATURE, default=self.config_entry.options.get( CONF_HEAT_AWAY_TEMPERATURE, DEFAULT_HEAT_AWAY_TEMPERATURE ), ): int, } ), )