95 lines
3.0 KiB
Python
95 lines
3.0 KiB
Python
"""Config flow to configure the honeywell integration."""
|
|
from __future__ import annotations
|
|
|
|
import voluptuous as vol
|
|
|
|
from homeassistant import config_entries
|
|
from homeassistant.const import CONF_PASSWORD, CONF_USERNAME
|
|
from homeassistant.core import callback
|
|
|
|
from . import get_somecomfort_client
|
|
from .const import (
|
|
CONF_COOL_AWAY_TEMPERATURE,
|
|
CONF_HEAT_AWAY_TEMPERATURE,
|
|
DEFAULT_COOL_AWAY_TEMPERATURE,
|
|
DEFAULT_HEAT_AWAY_TEMPERATURE,
|
|
DOMAIN,
|
|
)
|
|
|
|
|
|
class HoneywellConfigFlow(config_entries.ConfigFlow, domain=DOMAIN):
|
|
"""Handle a honeywell config flow."""
|
|
|
|
VERSION = 1
|
|
|
|
async def async_step_user(self, user_input=None):
|
|
"""Create config entry. Show the setup form to the user."""
|
|
errors = {}
|
|
|
|
if user_input is not None:
|
|
valid = await self.is_valid(**user_input)
|
|
if valid:
|
|
return self.async_create_entry(
|
|
title=DOMAIN,
|
|
data=user_input,
|
|
)
|
|
|
|
errors["base"] = "invalid_auth"
|
|
|
|
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 = await self.hass.async_add_executor_job(
|
|
get_somecomfort_client, kwargs[CONF_USERNAME], kwargs[CONF_PASSWORD]
|
|
)
|
|
|
|
return client is not None
|
|
|
|
@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):
|
|
"""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,
|
|
}
|
|
),
|
|
)
|