174 lines
5.9 KiB
Python
174 lines
5.9 KiB
Python
"""Config flow to configure the Pi-hole integration."""
|
|
from __future__ import annotations
|
|
|
|
from collections.abc import Mapping
|
|
import logging
|
|
from typing import Any
|
|
|
|
from hole import Hole
|
|
from hole.exceptions import HoleError
|
|
import voluptuous as vol
|
|
|
|
from homeassistant import config_entries
|
|
from homeassistant.const import (
|
|
CONF_API_KEY,
|
|
CONF_HOST,
|
|
CONF_LOCATION,
|
|
CONF_NAME,
|
|
CONF_PORT,
|
|
CONF_SSL,
|
|
CONF_VERIFY_SSL,
|
|
)
|
|
from homeassistant.data_entry_flow import FlowResult
|
|
from homeassistant.helpers.aiohttp_client import async_get_clientsession
|
|
|
|
from .const import (
|
|
DEFAULT_LOCATION,
|
|
DEFAULT_NAME,
|
|
DEFAULT_SSL,
|
|
DEFAULT_VERIFY_SSL,
|
|
DOMAIN,
|
|
)
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
class PiHoleFlowHandler(config_entries.ConfigFlow, domain=DOMAIN):
|
|
"""Handle a Pi-hole config flow."""
|
|
|
|
VERSION = 1
|
|
|
|
def __init__(self) -> None:
|
|
"""Initialize the config flow."""
|
|
self._config: dict = {}
|
|
|
|
async def async_step_user(
|
|
self, user_input: dict[str, Any] | None = None
|
|
) -> FlowResult:
|
|
"""Handle a flow initiated by the user."""
|
|
errors = {}
|
|
|
|
if user_input is not None:
|
|
self._config = {
|
|
CONF_HOST: f"{user_input[CONF_HOST]}:{user_input[CONF_PORT]}",
|
|
CONF_NAME: user_input[CONF_NAME],
|
|
CONF_LOCATION: user_input[CONF_LOCATION],
|
|
CONF_SSL: user_input[CONF_SSL],
|
|
CONF_VERIFY_SSL: user_input[CONF_VERIFY_SSL],
|
|
}
|
|
|
|
self._async_abort_entries_match(
|
|
{
|
|
CONF_HOST: f"{user_input[CONF_HOST]}:{user_input[CONF_PORT]}",
|
|
CONF_LOCATION: user_input[CONF_LOCATION],
|
|
}
|
|
)
|
|
|
|
if not (errors := await self._async_try_connect()):
|
|
return self.async_create_entry(
|
|
title=user_input[CONF_NAME], data=self._config
|
|
)
|
|
|
|
if CONF_API_KEY in errors:
|
|
return await self.async_step_api_key()
|
|
|
|
user_input = user_input or {}
|
|
return self.async_show_form(
|
|
step_id="user",
|
|
data_schema=vol.Schema(
|
|
{
|
|
vol.Required(CONF_HOST, default=user_input.get(CONF_HOST, "")): str,
|
|
vol.Required(
|
|
CONF_PORT, default=user_input.get(CONF_PORT, 80)
|
|
): vol.Coerce(int),
|
|
vol.Required(
|
|
CONF_NAME, default=user_input.get(CONF_NAME, DEFAULT_NAME)
|
|
): str,
|
|
vol.Required(
|
|
CONF_LOCATION,
|
|
default=user_input.get(CONF_LOCATION, DEFAULT_LOCATION),
|
|
): str,
|
|
vol.Required(
|
|
CONF_SSL,
|
|
default=user_input.get(CONF_SSL, DEFAULT_SSL),
|
|
): bool,
|
|
vol.Required(
|
|
CONF_VERIFY_SSL,
|
|
default=user_input.get(CONF_VERIFY_SSL, DEFAULT_VERIFY_SSL),
|
|
): bool,
|
|
}
|
|
),
|
|
errors=errors,
|
|
)
|
|
|
|
async def async_step_api_key(
|
|
self, user_input: dict[str, Any] | None = None
|
|
) -> FlowResult:
|
|
"""Handle step to setup API key."""
|
|
errors = {}
|
|
if user_input is not None:
|
|
self._config[CONF_API_KEY] = user_input[CONF_API_KEY]
|
|
if not (errors := await self._async_try_connect()):
|
|
return self.async_create_entry(
|
|
title=self._config[CONF_NAME],
|
|
data=self._config,
|
|
)
|
|
|
|
return self.async_show_form(
|
|
step_id="api_key",
|
|
data_schema=vol.Schema({vol.Required(CONF_API_KEY): str}),
|
|
errors=errors,
|
|
)
|
|
|
|
async def async_step_reauth(self, entry_data: Mapping[str, Any]) -> FlowResult:
|
|
"""Perform reauth upon an API authentication error."""
|
|
self._config = dict(entry_data)
|
|
return await self.async_step_reauth_confirm()
|
|
|
|
async def async_step_reauth_confirm(
|
|
self,
|
|
user_input: dict[str, Any] | None = None,
|
|
) -> FlowResult:
|
|
"""Perform reauth confirm upon an API authentication error."""
|
|
errors = {}
|
|
if user_input is not None:
|
|
self._config = {**self._config, CONF_API_KEY: user_input[CONF_API_KEY]}
|
|
if not (errors := await self._async_try_connect()):
|
|
entry = self.hass.config_entries.async_get_entry(
|
|
self.context["entry_id"]
|
|
)
|
|
assert entry
|
|
self.hass.config_entries.async_update_entry(entry, data=self._config)
|
|
self.hass.async_create_task(
|
|
self.hass.config_entries.async_reload(self.context["entry_id"])
|
|
)
|
|
return self.async_abort(reason="reauth_successful")
|
|
|
|
return self.async_show_form(
|
|
step_id="reauth_confirm",
|
|
description_placeholders={
|
|
CONF_HOST: self._config[CONF_HOST],
|
|
CONF_LOCATION: self._config[CONF_LOCATION],
|
|
},
|
|
data_schema=vol.Schema({vol.Required(CONF_API_KEY): str}),
|
|
errors=errors,
|
|
)
|
|
|
|
async def _async_try_connect(self) -> dict[str, str]:
|
|
session = async_get_clientsession(self.hass, self._config[CONF_VERIFY_SSL])
|
|
pi_hole = Hole(
|
|
self._config[CONF_HOST],
|
|
session,
|
|
location=self._config[CONF_LOCATION],
|
|
tls=self._config[CONF_SSL],
|
|
api_token=self._config.get(CONF_API_KEY),
|
|
)
|
|
try:
|
|
await pi_hole.get_data()
|
|
except HoleError as ex:
|
|
_LOGGER.debug("Connection failed: %s", ex)
|
|
return {"base": "cannot_connect"}
|
|
if not isinstance(pi_hole.data, dict):
|
|
return {CONF_API_KEY: "invalid_auth"}
|
|
return {}
|