1
0
mirror of https://github.com/home-assistant/core.git synced 2026-04-17 23:53:49 +01:00
Files
core/homeassistant/components/qnap/config_flow.py
Paul Laffitte c35a6dc044 Add reconfiguration flow to QNAP (#166064)
Co-authored-by: Joostlek <joostlek@outlook.com>
2026-03-24 21:30:43 +01:00

128 lines
4.1 KiB
Python

"""Config flow to configure qnap component."""
from __future__ import annotations
import logging
from typing import Any
from qnapstats import QNAPStats
from requests.exceptions import ConnectTimeout
import voluptuous as vol
from homeassistant.config_entries import ConfigFlow, ConfigFlowResult
from homeassistant.const import (
CONF_HOST,
CONF_PASSWORD,
CONF_PORT,
CONF_SSL,
CONF_USERNAME,
CONF_VERIFY_SSL,
)
from homeassistant.helpers import config_validation as cv
from .const import (
DEFAULT_PORT,
DEFAULT_SSL,
DEFAULT_TIMEOUT,
DEFAULT_VERIFY_SSL,
DOMAIN,
)
DATA_SCHEMA = vol.Schema(
{
vol.Required(CONF_HOST): cv.string,
vol.Required(CONF_USERNAME): cv.string,
vol.Required(CONF_PASSWORD): cv.string,
vol.Optional(CONF_SSL, default=DEFAULT_SSL): cv.boolean,
vol.Optional(CONF_VERIFY_SSL, default=DEFAULT_VERIFY_SSL): cv.boolean,
vol.Optional(CONF_PORT, default=DEFAULT_PORT): cv.port,
}
)
_LOGGER = logging.getLogger(__name__)
class QnapConfigFlow(ConfigFlow, domain=DOMAIN):
"""Qnap configuration flow."""
VERSION = 1
async def _async_validate_input(
self, user_input: dict[str, Any]
) -> tuple[dict[str, str], dict[str, Any] | None]:
"""Validate user input by connecting to the QNAP device."""
errors: dict[str, str] = {}
host = user_input[CONF_HOST]
protocol = "https" if user_input[CONF_SSL] else "http"
api = QNAPStats(
host=f"{protocol}://{host}",
port=user_input[CONF_PORT],
username=user_input[CONF_USERNAME],
password=user_input[CONF_PASSWORD],
verify_ssl=user_input[CONF_VERIFY_SSL],
timeout=DEFAULT_TIMEOUT,
)
try:
stats = await self.hass.async_add_executor_job(api.get_system_stats)
except ConnectTimeout:
errors["base"] = "cannot_connect"
except TypeError:
errors["base"] = "invalid_auth"
except Exception:
_LOGGER.exception("Unexpected error")
errors["base"] = "unknown"
else:
return errors, stats
return errors, None
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:
errors, stats = await self._async_validate_input(user_input)
if not errors and stats is not None:
unique_id = stats["system"]["serial_number"]
await self.async_set_unique_id(unique_id)
self._abort_if_unique_id_configured()
title = stats["system"]["name"]
return self.async_create_entry(title=title, data=user_input)
return self.async_show_form(
step_id="user",
data_schema=self.add_suggested_values_to_schema(DATA_SCHEMA, user_input),
errors=errors,
)
async def async_step_reconfigure(
self,
user_input: dict[str, Any] | None = None,
) -> ConfigFlowResult:
"""Handle reconfiguration of the integration."""
errors: dict[str, str] = {}
reconfigure_entry = self._get_reconfigure_entry()
if user_input is not None:
errors, stats = await self._async_validate_input(user_input)
if not errors and stats is not None:
unique_id = stats["system"]["serial_number"]
await self.async_set_unique_id(unique_id)
self._abort_if_unique_id_mismatch()
return self.async_update_reload_and_abort(
reconfigure_entry,
data_updates=user_input,
)
suggested_values: dict[str, Any] = dict(user_input or reconfigure_entry.data)
suggested_values.pop(CONF_PASSWORD, None)
return self.async_show_form(
step_id="reconfigure",
data_schema=self.add_suggested_values_to_schema(
DATA_SCHEMA,
suggested_values,
),
errors=errors,
)