mirror of
https://github.com/home-assistant/core.git
synced 2026-04-17 15:44:52 +01:00
176 lines
5.5 KiB
Python
176 lines
5.5 KiB
Python
"""Config flow for Powerfox Local integration."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from collections.abc import Mapping
|
|
from typing import Any
|
|
|
|
from powerfox import PowerfoxAuthenticationError, PowerfoxConnectionError, PowerfoxLocal
|
|
import voluptuous as vol
|
|
|
|
from homeassistant.config_entries import (
|
|
SOURCE_RECONFIGURE,
|
|
SOURCE_USER,
|
|
ConfigFlow,
|
|
ConfigFlowResult,
|
|
)
|
|
from homeassistant.const import CONF_API_KEY, CONF_HOST
|
|
from homeassistant.helpers.aiohttp_client import async_get_clientsession
|
|
from homeassistant.helpers.service_info.zeroconf import ZeroconfServiceInfo
|
|
|
|
from .const import DOMAIN
|
|
|
|
STEP_USER_DATA_SCHEMA = vol.Schema(
|
|
{
|
|
vol.Required(CONF_HOST): str,
|
|
vol.Required(CONF_API_KEY): str,
|
|
}
|
|
)
|
|
|
|
STEP_REAUTH_DATA_SCHEMA = vol.Schema(
|
|
{
|
|
vol.Required(CONF_API_KEY): str,
|
|
}
|
|
)
|
|
|
|
|
|
class PowerfoxLocalConfigFlow(ConfigFlow, domain=DOMAIN):
|
|
"""Handle a config flow for Powerfox Local."""
|
|
|
|
_host: str
|
|
_api_key: str
|
|
_device_id: str
|
|
|
|
async def async_step_user(
|
|
self, user_input: dict[str, Any] | None = None
|
|
) -> ConfigFlowResult:
|
|
"""Handle the user step."""
|
|
errors = {}
|
|
|
|
if user_input is not None:
|
|
self._host = user_input[CONF_HOST]
|
|
self._api_key = user_input[CONF_API_KEY]
|
|
self._device_id = self._api_key
|
|
|
|
try:
|
|
await self._async_validate_connection()
|
|
except PowerfoxAuthenticationError:
|
|
errors["base"] = "invalid_auth"
|
|
except PowerfoxConnectionError:
|
|
errors["base"] = "cannot_connect"
|
|
else:
|
|
if self.source == SOURCE_USER:
|
|
return self._async_create_entry()
|
|
return self.async_update_reload_and_abort(
|
|
self._get_reconfigure_entry(),
|
|
data={
|
|
CONF_HOST: self._host,
|
|
CONF_API_KEY: self._api_key,
|
|
},
|
|
)
|
|
|
|
return self.async_show_form(
|
|
step_id="user",
|
|
data_schema=STEP_USER_DATA_SCHEMA,
|
|
errors=errors,
|
|
)
|
|
|
|
async def async_step_zeroconf(
|
|
self, discovery_info: ZeroconfServiceInfo
|
|
) -> ConfigFlowResult:
|
|
"""Handle zeroconf discovery."""
|
|
self._host = discovery_info.host
|
|
self._device_id = discovery_info.properties["id"]
|
|
self._api_key = self._device_id
|
|
|
|
try:
|
|
await self._async_validate_connection()
|
|
except PowerfoxAuthenticationError, PowerfoxConnectionError:
|
|
return self.async_abort(reason="cannot_connect")
|
|
|
|
self.context["title_placeholders"] = {
|
|
"name": f"Poweropti ({self._device_id[-5:]})"
|
|
}
|
|
|
|
self._set_confirm_only()
|
|
return self.async_show_form(
|
|
step_id="zeroconf_confirm",
|
|
description_placeholders={"host": self._host},
|
|
)
|
|
|
|
async def async_step_zeroconf_confirm(
|
|
self, _: dict[str, Any] | None = None
|
|
) -> ConfigFlowResult:
|
|
"""Handle a confirmation flow for zeroconf discovery."""
|
|
return self._async_create_entry()
|
|
|
|
async def async_step_reauth(
|
|
self, entry_data: Mapping[str, Any]
|
|
) -> ConfigFlowResult:
|
|
"""Handle re-authentication flow."""
|
|
self._host = entry_data[CONF_HOST]
|
|
return await self.async_step_reauth_confirm()
|
|
|
|
async def async_step_reauth_confirm(
|
|
self, user_input: dict[str, Any] | None = None
|
|
) -> ConfigFlowResult:
|
|
"""Handle re-authentication confirmation."""
|
|
errors = {}
|
|
|
|
if user_input is not None:
|
|
self._api_key = user_input[CONF_API_KEY]
|
|
reauth_entry = self._get_reauth_entry()
|
|
client = PowerfoxLocal(
|
|
host=reauth_entry.data[CONF_HOST],
|
|
api_key=user_input[CONF_API_KEY],
|
|
session=async_get_clientsession(self.hass),
|
|
)
|
|
try:
|
|
await client.value()
|
|
except PowerfoxAuthenticationError:
|
|
errors["base"] = "invalid_auth"
|
|
except PowerfoxConnectionError:
|
|
errors["base"] = "cannot_connect"
|
|
else:
|
|
return self.async_update_reload_and_abort(
|
|
reauth_entry,
|
|
data_updates=user_input,
|
|
)
|
|
|
|
return self.async_show_form(
|
|
step_id="reauth_confirm",
|
|
data_schema=STEP_REAUTH_DATA_SCHEMA,
|
|
errors=errors,
|
|
)
|
|
|
|
async def async_step_reconfigure(
|
|
self, user_input: Mapping[str, Any]
|
|
) -> ConfigFlowResult:
|
|
"""Handle reconfiguration."""
|
|
return await self.async_step_user()
|
|
|
|
def _async_create_entry(self) -> ConfigFlowResult:
|
|
"""Create a config entry."""
|
|
return self.async_create_entry(
|
|
title=f"Poweropti ({self._device_id[-5:]})",
|
|
data={
|
|
CONF_HOST: self._host,
|
|
CONF_API_KEY: self._api_key,
|
|
},
|
|
)
|
|
|
|
async def _async_validate_connection(self) -> None:
|
|
"""Validate the connection and set unique ID."""
|
|
client = PowerfoxLocal(
|
|
host=self._host,
|
|
api_key=self._api_key,
|
|
session=async_get_clientsession(self.hass),
|
|
)
|
|
await client.value()
|
|
|
|
await self.async_set_unique_id(self._device_id, raise_on_progress=False)
|
|
if self.source == SOURCE_RECONFIGURE:
|
|
self._abort_if_unique_id_mismatch()
|
|
else:
|
|
self._abort_if_unique_id_configured(updates={CONF_HOST: self._host})
|