62 lines
1.8 KiB
Python
62 lines
1.8 KiB
Python
|
"""Config flow for duotecno integration."""
|
||
|
from __future__ import annotations
|
||
|
|
||
|
import logging
|
||
|
from typing import Any
|
||
|
|
||
|
from duotecno.controller import PyDuotecno
|
||
|
from duotecno.exceptions import InvalidPassword
|
||
|
import voluptuous as vol
|
||
|
|
||
|
from homeassistant import config_entries
|
||
|
from homeassistant.const import CONF_HOST, CONF_PASSWORD, CONF_PORT
|
||
|
from homeassistant.data_entry_flow import FlowResult
|
||
|
|
||
|
from .const import DOMAIN
|
||
|
|
||
|
_LOGGER = logging.getLogger(__name__)
|
||
|
|
||
|
STEP_USER_DATA_SCHEMA = vol.Schema(
|
||
|
{
|
||
|
vol.Required(CONF_HOST): str,
|
||
|
vol.Required(CONF_PASSWORD): str,
|
||
|
vol.Required(CONF_PORT): int,
|
||
|
}
|
||
|
)
|
||
|
|
||
|
|
||
|
class ConfigFlow(config_entries.ConfigFlow, domain=DOMAIN):
|
||
|
"""Handle a config flow for duotecno."""
|
||
|
|
||
|
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:
|
||
|
try:
|
||
|
controller = PyDuotecno()
|
||
|
await controller.connect(
|
||
|
user_input[CONF_HOST],
|
||
|
user_input[CONF_PORT],
|
||
|
user_input[CONF_PASSWORD],
|
||
|
True,
|
||
|
)
|
||
|
except ConnectionError:
|
||
|
errors["base"] = "cannot_connect"
|
||
|
except InvalidPassword:
|
||
|
errors["base"] = "invalid_auth"
|
||
|
except Exception: # pylint: disable=broad-except
|
||
|
_LOGGER.exception("Unexpected exception")
|
||
|
errors["base"] = "unknown"
|
||
|
else:
|
||
|
return self.async_create_entry(
|
||
|
title=f"{user_input[CONF_HOST]}", data=user_input
|
||
|
)
|
||
|
|
||
|
return self.async_show_form(
|
||
|
step_id="user", data_schema=STEP_USER_DATA_SCHEMA, errors=errors
|
||
|
)
|