mirror of https://github.com/home-assistant/core
472 lines
16 KiB
Python
472 lines
16 KiB
Python
"""Config flow for UniFi Network integration.
|
|
|
|
Provides user initiated configuration flow.
|
|
Discovery of UniFi Network instances hosted on UDM and UDM Pro devices
|
|
through SSDP. Reauthentication when issue with credentials are reported.
|
|
Configuration of options through options flow.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from collections.abc import Mapping
|
|
import operator
|
|
import socket
|
|
from types import MappingProxyType
|
|
from typing import Any
|
|
from urllib.parse import urlparse
|
|
|
|
from aiounifi.interfaces.sites import Sites
|
|
import voluptuous as vol
|
|
|
|
from homeassistant.components import ssdp
|
|
from homeassistant.config_entries import (
|
|
SOURCE_REAUTH,
|
|
ConfigEntryState,
|
|
ConfigFlow,
|
|
ConfigFlowResult,
|
|
OptionsFlow,
|
|
)
|
|
from homeassistant.const import (
|
|
CONF_HOST,
|
|
CONF_PASSWORD,
|
|
CONF_PORT,
|
|
CONF_USERNAME,
|
|
CONF_VERIFY_SSL,
|
|
)
|
|
from homeassistant.core import HomeAssistant, callback
|
|
import homeassistant.helpers.config_validation as cv
|
|
from homeassistant.helpers.device_registry import format_mac
|
|
|
|
from . import UnifiConfigEntry
|
|
from .const import (
|
|
CONF_ALLOW_BANDWIDTH_SENSORS,
|
|
CONF_ALLOW_UPTIME_SENSORS,
|
|
CONF_BLOCK_CLIENT,
|
|
CONF_CLIENT_SOURCE,
|
|
CONF_DETECTION_TIME,
|
|
CONF_DPI_RESTRICTIONS,
|
|
CONF_IGNORE_WIRED_BUG,
|
|
CONF_SITE_ID,
|
|
CONF_SSID_FILTER,
|
|
CONF_TRACK_CLIENTS,
|
|
CONF_TRACK_DEVICES,
|
|
CONF_TRACK_WIRED_CLIENTS,
|
|
DEFAULT_DPI_RESTRICTIONS,
|
|
DOMAIN as UNIFI_DOMAIN,
|
|
)
|
|
from .errors import AuthenticationRequired, CannotConnect
|
|
from .hub import UnifiHub, get_unifi_api
|
|
|
|
DEFAULT_PORT = 443
|
|
DEFAULT_SITE_ID = "default"
|
|
DEFAULT_VERIFY_SSL = False
|
|
|
|
|
|
MODEL_PORTS = {
|
|
"UniFi Dream Machine": 443,
|
|
"UniFi Dream Machine Pro": 443,
|
|
}
|
|
|
|
|
|
class UnifiFlowHandler(ConfigFlow, domain=UNIFI_DOMAIN):
|
|
"""Handle a UniFi Network config flow."""
|
|
|
|
VERSION = 1
|
|
|
|
sites: Sites
|
|
|
|
@staticmethod
|
|
@callback
|
|
def async_get_options_flow(
|
|
config_entry: UnifiConfigEntry,
|
|
) -> UnifiOptionsFlowHandler:
|
|
"""Get the options flow for this handler."""
|
|
return UnifiOptionsFlowHandler(config_entry)
|
|
|
|
def __init__(self) -> None:
|
|
"""Initialize the UniFi Network flow."""
|
|
self.config: dict[str, Any] = {}
|
|
self.reauth_schema: dict[vol.Marker, Any] = {}
|
|
|
|
async def async_step_user(
|
|
self, user_input: dict[str, Any] | None = None
|
|
) -> ConfigFlowResult:
|
|
"""Handle a flow initialized by the user."""
|
|
errors = {}
|
|
|
|
if user_input is not None:
|
|
self.config = {
|
|
CONF_HOST: user_input[CONF_HOST],
|
|
CONF_USERNAME: user_input[CONF_USERNAME],
|
|
CONF_PASSWORD: user_input[CONF_PASSWORD],
|
|
CONF_PORT: user_input.get(CONF_PORT),
|
|
CONF_VERIFY_SSL: user_input.get(CONF_VERIFY_SSL),
|
|
CONF_SITE_ID: DEFAULT_SITE_ID,
|
|
}
|
|
|
|
try:
|
|
hub = await get_unifi_api(self.hass, MappingProxyType(self.config))
|
|
await hub.sites.update()
|
|
self.sites = hub.sites
|
|
|
|
except AuthenticationRequired:
|
|
errors["base"] = "faulty_credentials"
|
|
|
|
except CannotConnect:
|
|
errors["base"] = "service_unavailable"
|
|
|
|
else:
|
|
if (
|
|
self.source == SOURCE_REAUTH
|
|
and (
|
|
(reauth_unique_id := self._get_reauth_entry().unique_id)
|
|
is not None
|
|
)
|
|
and reauth_unique_id in self.sites
|
|
):
|
|
return await self.async_step_site({CONF_SITE_ID: reauth_unique_id})
|
|
|
|
return await self.async_step_site()
|
|
|
|
if not (host := self.config.get(CONF_HOST, "")) and await _async_discover_unifi(
|
|
self.hass
|
|
):
|
|
host = "unifi"
|
|
|
|
data = self.reauth_schema or {
|
|
vol.Required(CONF_HOST, default=host): str,
|
|
vol.Required(CONF_USERNAME): str,
|
|
vol.Required(CONF_PASSWORD): str,
|
|
vol.Optional(
|
|
CONF_PORT, default=self.config.get(CONF_PORT, DEFAULT_PORT)
|
|
): int,
|
|
vol.Optional(CONF_VERIFY_SSL, default=DEFAULT_VERIFY_SSL): bool,
|
|
}
|
|
|
|
return self.async_show_form(
|
|
step_id="user",
|
|
data_schema=vol.Schema(data),
|
|
errors=errors,
|
|
)
|
|
|
|
async def async_step_site(
|
|
self, user_input: dict[str, Any] | None = None
|
|
) -> ConfigFlowResult:
|
|
"""Select site to control."""
|
|
if user_input is not None:
|
|
unique_id = user_input[CONF_SITE_ID]
|
|
self.config[CONF_SITE_ID] = self.sites[unique_id].name
|
|
|
|
config_entry = await self.async_set_unique_id(unique_id)
|
|
abort_reason = "configuration_updated"
|
|
|
|
if self.source == SOURCE_REAUTH:
|
|
config_entry = self._get_reauth_entry()
|
|
abort_reason = "reauth_successful"
|
|
|
|
if config_entry:
|
|
if (
|
|
config_entry.state is ConfigEntryState.LOADED
|
|
and (hub := config_entry.runtime_data)
|
|
and hub.available
|
|
):
|
|
return self.async_abort(reason="already_configured")
|
|
|
|
return self.async_update_reload_and_abort(
|
|
config_entry, data=self.config, reason=abort_reason
|
|
)
|
|
|
|
site_nice_name = self.sites[unique_id].description
|
|
return self.async_create_entry(title=site_nice_name, data=self.config)
|
|
|
|
if len(self.sites.values()) == 1:
|
|
return await self.async_step_site({CONF_SITE_ID: next(iter(self.sites))})
|
|
|
|
site_names = {site.site_id: site.description for site in self.sites.values()}
|
|
return self.async_show_form(
|
|
step_id="site",
|
|
data_schema=vol.Schema({vol.Required(CONF_SITE_ID): vol.In(site_names)}),
|
|
)
|
|
|
|
async def async_step_reauth(
|
|
self, entry_data: Mapping[str, Any]
|
|
) -> ConfigFlowResult:
|
|
"""Trigger a reauthentication flow."""
|
|
reauth_entry = self._get_reauth_entry()
|
|
|
|
self.context["title_placeholders"] = {
|
|
CONF_HOST: reauth_entry.data[CONF_HOST],
|
|
CONF_SITE_ID: reauth_entry.title,
|
|
}
|
|
|
|
self.reauth_schema = {
|
|
vol.Required(CONF_HOST, default=reauth_entry.data[CONF_HOST]): str,
|
|
vol.Required(CONF_USERNAME, default=reauth_entry.data[CONF_USERNAME]): str,
|
|
vol.Required(CONF_PASSWORD): str,
|
|
vol.Required(CONF_PORT, default=reauth_entry.data[CONF_PORT]): int,
|
|
vol.Required(
|
|
CONF_VERIFY_SSL, default=reauth_entry.data[CONF_VERIFY_SSL]
|
|
): bool,
|
|
}
|
|
|
|
return await self.async_step_user()
|
|
|
|
async def async_step_ssdp(
|
|
self, discovery_info: ssdp.SsdpServiceInfo
|
|
) -> ConfigFlowResult:
|
|
"""Handle a discovered UniFi device."""
|
|
parsed_url = urlparse(discovery_info.ssdp_location)
|
|
model_description = discovery_info.upnp[ssdp.ATTR_UPNP_MODEL_DESCRIPTION]
|
|
mac_address = format_mac(discovery_info.upnp[ssdp.ATTR_UPNP_SERIAL])
|
|
|
|
self.config = {
|
|
CONF_HOST: parsed_url.hostname,
|
|
}
|
|
|
|
self._async_abort_entries_match({CONF_HOST: self.config[CONF_HOST]})
|
|
|
|
await self.async_set_unique_id(mac_address)
|
|
self._abort_if_unique_id_configured(updates=self.config)
|
|
|
|
self.context["title_placeholders"] = {
|
|
CONF_HOST: self.config[CONF_HOST],
|
|
CONF_SITE_ID: DEFAULT_SITE_ID,
|
|
}
|
|
|
|
if (port := MODEL_PORTS.get(model_description)) is not None:
|
|
self.config[CONF_PORT] = port
|
|
self.context["configuration_url"] = (
|
|
f"https://{self.config[CONF_HOST]}:{port}"
|
|
)
|
|
|
|
return await self.async_step_user()
|
|
|
|
|
|
class UnifiOptionsFlowHandler(OptionsFlow):
|
|
"""Handle Unifi Network options."""
|
|
|
|
hub: UnifiHub
|
|
|
|
def __init__(self, config_entry: UnifiConfigEntry) -> None:
|
|
"""Initialize UniFi Network options flow."""
|
|
self.options = dict(config_entry.options)
|
|
|
|
async def async_step_init(
|
|
self, user_input: dict[str, Any] | None = None
|
|
) -> ConfigFlowResult:
|
|
"""Manage the UniFi Network options."""
|
|
self.hub = self.config_entry.runtime_data
|
|
self.options[CONF_BLOCK_CLIENT] = self.hub.config.option_block_clients
|
|
|
|
if self.show_advanced_options:
|
|
return await self.async_step_configure_entity_sources()
|
|
|
|
return await self.async_step_simple_options()
|
|
|
|
async def async_step_simple_options(
|
|
self, user_input: dict[str, Any] | None = None
|
|
) -> ConfigFlowResult:
|
|
"""For users without advanced settings enabled."""
|
|
if user_input is not None:
|
|
self.options.update(user_input)
|
|
return await self._update_options()
|
|
|
|
clients_to_block = {}
|
|
|
|
for client in self.hub.api.clients.values():
|
|
clients_to_block[client.mac] = (
|
|
f"{client.name or client.hostname} ({client.mac})"
|
|
)
|
|
|
|
return self.async_show_form(
|
|
step_id="simple_options",
|
|
data_schema=vol.Schema(
|
|
{
|
|
vol.Optional(
|
|
CONF_TRACK_CLIENTS,
|
|
default=self.hub.config.option_track_clients,
|
|
): bool,
|
|
vol.Optional(
|
|
CONF_TRACK_DEVICES,
|
|
default=self.hub.config.option_track_devices,
|
|
): bool,
|
|
vol.Optional(
|
|
CONF_BLOCK_CLIENT, default=self.options[CONF_BLOCK_CLIENT]
|
|
): cv.multi_select(clients_to_block),
|
|
}
|
|
),
|
|
last_step=True,
|
|
)
|
|
|
|
async def async_step_configure_entity_sources(
|
|
self, user_input: dict[str, Any] | None = None
|
|
) -> ConfigFlowResult:
|
|
"""Select sources for entities."""
|
|
if user_input is not None:
|
|
self.options.update(user_input)
|
|
return await self.async_step_device_tracker()
|
|
|
|
clients = {
|
|
client.mac: f"{client.name or client.hostname} ({client.mac})"
|
|
for client in self.hub.api.clients.values()
|
|
}
|
|
clients |= {
|
|
mac: f"Unknown ({mac})"
|
|
for mac in self.options.get(CONF_CLIENT_SOURCE, [])
|
|
if mac not in clients
|
|
}
|
|
|
|
return self.async_show_form(
|
|
step_id="configure_entity_sources",
|
|
data_schema=vol.Schema(
|
|
{
|
|
vol.Optional(
|
|
CONF_CLIENT_SOURCE,
|
|
default=self.options.get(CONF_CLIENT_SOURCE, []),
|
|
): cv.multi_select(
|
|
dict(sorted(clients.items(), key=operator.itemgetter(1)))
|
|
),
|
|
}
|
|
),
|
|
last_step=False,
|
|
)
|
|
|
|
async def async_step_device_tracker(
|
|
self, user_input: dict[str, Any] | None = None
|
|
) -> ConfigFlowResult:
|
|
"""Manage the device tracker options."""
|
|
if user_input is not None:
|
|
self.options.update(user_input)
|
|
return await self.async_step_client_control()
|
|
|
|
ssids = (
|
|
{wlan.name for wlan in self.hub.api.wlans.values()}
|
|
| {
|
|
f"{wlan.name}{wlan.name_combine_suffix}"
|
|
for wlan in self.hub.api.wlans.values()
|
|
if not wlan.name_combine_enabled
|
|
and wlan.name_combine_suffix is not None
|
|
}
|
|
| {
|
|
wlan["name"]
|
|
for ap in self.hub.api.devices.values()
|
|
for wlan in ap.wlan_overrides
|
|
if "name" in wlan
|
|
}
|
|
)
|
|
ssid_filter = {ssid: ssid for ssid in sorted(ssids)}
|
|
|
|
selected_ssids_to_filter = [
|
|
ssid for ssid in self.hub.config.option_ssid_filter if ssid in ssid_filter
|
|
]
|
|
|
|
return self.async_show_form(
|
|
step_id="device_tracker",
|
|
data_schema=vol.Schema(
|
|
{
|
|
vol.Optional(
|
|
CONF_TRACK_CLIENTS,
|
|
default=self.hub.config.option_track_clients,
|
|
): bool,
|
|
vol.Optional(
|
|
CONF_TRACK_WIRED_CLIENTS,
|
|
default=self.hub.config.option_track_wired_clients,
|
|
): bool,
|
|
vol.Optional(
|
|
CONF_TRACK_DEVICES,
|
|
default=self.hub.config.option_track_devices,
|
|
): bool,
|
|
vol.Optional(
|
|
CONF_SSID_FILTER, default=selected_ssids_to_filter
|
|
): cv.multi_select(ssid_filter),
|
|
vol.Optional(
|
|
CONF_DETECTION_TIME,
|
|
default=int(
|
|
self.hub.config.option_detection_time.total_seconds()
|
|
),
|
|
): int,
|
|
vol.Optional(
|
|
CONF_IGNORE_WIRED_BUG,
|
|
default=self.hub.config.option_ignore_wired_bug,
|
|
): bool,
|
|
}
|
|
),
|
|
last_step=False,
|
|
)
|
|
|
|
async def async_step_client_control(
|
|
self, user_input: dict[str, Any] | None = None
|
|
) -> ConfigFlowResult:
|
|
"""Manage configuration of network access controlled clients."""
|
|
if user_input is not None:
|
|
self.options.update(user_input)
|
|
return await self.async_step_statistics_sensors()
|
|
|
|
clients_to_block = {}
|
|
|
|
for client in self.hub.api.clients.values():
|
|
clients_to_block[client.mac] = (
|
|
f"{client.name or client.hostname} ({client.mac})"
|
|
)
|
|
|
|
selected_clients_to_block = [
|
|
client
|
|
for client in self.options.get(CONF_BLOCK_CLIENT, [])
|
|
if client in clients_to_block
|
|
]
|
|
|
|
return self.async_show_form(
|
|
step_id="client_control",
|
|
data_schema=vol.Schema(
|
|
{
|
|
vol.Optional(
|
|
CONF_BLOCK_CLIENT, default=selected_clients_to_block
|
|
): cv.multi_select(clients_to_block),
|
|
vol.Optional(
|
|
CONF_DPI_RESTRICTIONS,
|
|
default=self.options.get(
|
|
CONF_DPI_RESTRICTIONS, DEFAULT_DPI_RESTRICTIONS
|
|
),
|
|
): bool,
|
|
}
|
|
),
|
|
last_step=False,
|
|
)
|
|
|
|
async def async_step_statistics_sensors(
|
|
self, user_input: dict[str, Any] | None = None
|
|
) -> ConfigFlowResult:
|
|
"""Manage the statistics sensors options."""
|
|
if user_input is not None:
|
|
self.options.update(user_input)
|
|
return await self._update_options()
|
|
|
|
return self.async_show_form(
|
|
step_id="statistics_sensors",
|
|
data_schema=vol.Schema(
|
|
{
|
|
vol.Optional(
|
|
CONF_ALLOW_BANDWIDTH_SENSORS,
|
|
default=self.hub.config.option_allow_bandwidth_sensors,
|
|
): bool,
|
|
vol.Optional(
|
|
CONF_ALLOW_UPTIME_SENSORS,
|
|
default=self.hub.config.option_allow_uptime_sensors,
|
|
): bool,
|
|
}
|
|
),
|
|
last_step=True,
|
|
)
|
|
|
|
async def _update_options(self) -> ConfigFlowResult:
|
|
"""Update config entry options."""
|
|
return self.async_create_entry(title="", data=self.options)
|
|
|
|
|
|
async def _async_discover_unifi(hass: HomeAssistant) -> str | None:
|
|
"""Discover UniFi Network address."""
|
|
try:
|
|
return await hass.async_add_executor_job(socket.gethostbyname, "unifi")
|
|
except socket.gaierror:
|
|
return None
|