2022-08-16 18:08:35 +00:00
|
|
|
"""Config flow for Fully Kiosk Browser integration."""
|
|
|
|
from __future__ import annotations
|
|
|
|
|
|
|
|
import asyncio
|
|
|
|
from typing import Any
|
|
|
|
|
|
|
|
from aiohttp.client_exceptions import ClientConnectorError
|
|
|
|
from async_timeout import timeout
|
|
|
|
from fullykiosk import FullyKiosk
|
|
|
|
from fullykiosk.exceptions import FullyKioskError
|
|
|
|
import voluptuous as vol
|
|
|
|
|
|
|
|
from homeassistant import config_entries
|
2022-08-17 01:19:23 +00:00
|
|
|
from homeassistant.components.dhcp import DhcpServiceInfo
|
|
|
|
from homeassistant.const import CONF_HOST, CONF_MAC, CONF_PASSWORD
|
2022-08-16 18:08:35 +00:00
|
|
|
from homeassistant.data_entry_flow import FlowResult
|
|
|
|
from homeassistant.helpers.aiohttp_client import async_get_clientsession
|
2022-08-17 01:19:23 +00:00
|
|
|
from homeassistant.helpers.device_registry import format_mac
|
2022-08-16 18:08:35 +00:00
|
|
|
|
|
|
|
from .const import DEFAULT_PORT, DOMAIN, LOGGER
|
|
|
|
|
|
|
|
|
|
|
|
class ConfigFlow(config_entries.ConfigFlow, domain=DOMAIN):
|
|
|
|
"""Handle a config flow for Fully Kiosk Browser."""
|
|
|
|
|
|
|
|
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:
|
|
|
|
fully = FullyKiosk(
|
|
|
|
async_get_clientsession(self.hass),
|
|
|
|
user_input[CONF_HOST],
|
|
|
|
DEFAULT_PORT,
|
|
|
|
user_input[CONF_PASSWORD],
|
|
|
|
)
|
|
|
|
|
|
|
|
try:
|
|
|
|
async with timeout(15):
|
|
|
|
device_info = await fully.getDeviceInfo()
|
|
|
|
except (ClientConnectorError, FullyKioskError, asyncio.TimeoutError):
|
|
|
|
errors["base"] = "cannot_connect"
|
|
|
|
except Exception: # pylint: disable=broad-except
|
|
|
|
LOGGER.exception("Unexpected exception")
|
|
|
|
errors["base"] = "unknown"
|
|
|
|
else:
|
|
|
|
await self.async_set_unique_id(device_info["deviceID"])
|
|
|
|
self._abort_if_unique_id_configured(updates=user_input)
|
|
|
|
return self.async_create_entry(
|
2022-08-17 01:19:23 +00:00
|
|
|
title=device_info["deviceName"],
|
|
|
|
data=user_input | {CONF_MAC: format_mac(device_info["Mac"])},
|
2022-08-16 18:08:35 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
return self.async_show_form(
|
|
|
|
step_id="user",
|
|
|
|
data_schema=vol.Schema(
|
|
|
|
{
|
|
|
|
vol.Required(CONF_HOST): str,
|
|
|
|
vol.Required(CONF_PASSWORD): str,
|
|
|
|
}
|
|
|
|
),
|
|
|
|
errors=errors,
|
|
|
|
)
|
2022-08-17 01:19:23 +00:00
|
|
|
|
|
|
|
async def async_step_dhcp(self, discovery_info: DhcpServiceInfo) -> FlowResult:
|
|
|
|
"""Handle dhcp discovery."""
|
|
|
|
mac = format_mac(discovery_info.macaddress)
|
|
|
|
|
|
|
|
for entry in self._async_current_entries():
|
|
|
|
if entry.data[CONF_MAC] == mac:
|
|
|
|
self.hass.config_entries.async_update_entry(
|
|
|
|
entry,
|
|
|
|
data=entry.data | {CONF_HOST: discovery_info.ip},
|
|
|
|
)
|
|
|
|
self.hass.async_create_task(
|
|
|
|
self.hass.config_entries.async_reload(entry.entry_id)
|
|
|
|
)
|
|
|
|
return self.async_abort(reason="already_configured")
|
|
|
|
|
|
|
|
return self.async_abort(reason="unknown")
|