2019-06-02 05:13:14 +00:00
|
|
|
"""Config flow to configure the AdGuard Home integration."""
|
2019-10-19 19:11:09 +00:00
|
|
|
from distutils.version import LooseVersion
|
2019-06-02 05:13:14 +00:00
|
|
|
import logging
|
|
|
|
|
|
|
|
from adguardhome import AdGuardHome, AdGuardHomeConnectionError
|
|
|
|
import voluptuous as vol
|
|
|
|
|
|
|
|
from homeassistant import config_entries
|
2019-10-19 19:11:09 +00:00
|
|
|
from homeassistant.components.adguard.const import DOMAIN, MIN_ADGUARD_HOME_VERSION
|
2019-06-02 05:13:14 +00:00
|
|
|
from homeassistant.config_entries import ConfigFlow
|
|
|
|
from homeassistant.const import (
|
2019-07-31 19:25:30 +00:00
|
|
|
CONF_HOST,
|
|
|
|
CONF_PASSWORD,
|
|
|
|
CONF_PORT,
|
|
|
|
CONF_SSL,
|
|
|
|
CONF_USERNAME,
|
|
|
|
CONF_VERIFY_SSL,
|
|
|
|
)
|
2019-06-02 05:13:14 +00:00
|
|
|
from homeassistant.helpers.aiohttp_client import async_get_clientsession
|
|
|
|
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
@config_entries.HANDLERS.register(DOMAIN)
|
|
|
|
class AdGuardHomeFlowHandler(ConfigFlow):
|
|
|
|
"""Handle a AdGuard Home config flow."""
|
|
|
|
|
|
|
|
VERSION = 1
|
|
|
|
CONNECTION_CLASS = config_entries.CONN_CLASS_LOCAL_POLL
|
|
|
|
|
|
|
|
_hassio_discovery = None
|
|
|
|
|
|
|
|
async def _show_setup_form(self, errors=None):
|
|
|
|
"""Show the setup form to the user."""
|
|
|
|
return self.async_show_form(
|
2019-07-31 19:25:30 +00:00
|
|
|
step_id="user",
|
2019-06-02 05:13:14 +00:00
|
|
|
data_schema=vol.Schema(
|
|
|
|
{
|
|
|
|
vol.Required(CONF_HOST): str,
|
|
|
|
vol.Required(CONF_PORT, default=3000): vol.Coerce(int),
|
|
|
|
vol.Optional(CONF_USERNAME): str,
|
|
|
|
vol.Optional(CONF_PASSWORD): str,
|
|
|
|
vol.Required(CONF_SSL, default=True): bool,
|
|
|
|
vol.Required(CONF_VERIFY_SSL, default=True): bool,
|
|
|
|
}
|
|
|
|
),
|
|
|
|
errors=errors or {},
|
|
|
|
)
|
|
|
|
|
|
|
|
async def _show_hassio_form(self, errors=None):
|
|
|
|
"""Show the Hass.io confirmation form to the user."""
|
|
|
|
return self.async_show_form(
|
2019-07-31 19:25:30 +00:00
|
|
|
step_id="hassio_confirm",
|
|
|
|
description_placeholders={"addon": self._hassio_discovery["addon"]},
|
2019-06-02 05:13:14 +00:00
|
|
|
data_schema=vol.Schema({}),
|
|
|
|
errors=errors or {},
|
|
|
|
)
|
|
|
|
|
|
|
|
async def async_step_user(self, user_input=None):
|
|
|
|
"""Handle a flow initiated by the user."""
|
|
|
|
if self._async_current_entries():
|
2019-07-31 19:25:30 +00:00
|
|
|
return self.async_abort(reason="single_instance_allowed")
|
2019-06-02 05:13:14 +00:00
|
|
|
|
|
|
|
if user_input is None:
|
|
|
|
return await self._show_setup_form(user_input)
|
|
|
|
|
|
|
|
errors = {}
|
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
session = async_get_clientsession(self.hass, user_input[CONF_VERIFY_SSL])
|
2019-06-02 05:13:14 +00:00
|
|
|
|
|
|
|
adguard = AdGuardHome(
|
|
|
|
user_input[CONF_HOST],
|
|
|
|
port=user_input[CONF_PORT],
|
|
|
|
username=user_input.get(CONF_USERNAME),
|
|
|
|
password=user_input.get(CONF_PASSWORD),
|
|
|
|
tls=user_input[CONF_SSL],
|
|
|
|
verify_ssl=user_input[CONF_VERIFY_SSL],
|
|
|
|
session=session,
|
|
|
|
)
|
|
|
|
|
|
|
|
try:
|
2019-10-19 19:11:09 +00:00
|
|
|
version = await adguard.version()
|
2019-06-02 05:13:14 +00:00
|
|
|
except AdGuardHomeConnectionError:
|
2019-07-31 19:25:30 +00:00
|
|
|
errors["base"] = "connection_error"
|
2019-06-02 05:13:14 +00:00
|
|
|
return await self._show_setup_form(errors)
|
|
|
|
|
2019-10-19 19:11:09 +00:00
|
|
|
if LooseVersion(MIN_ADGUARD_HOME_VERSION) > LooseVersion(version):
|
|
|
|
return self.async_abort(
|
|
|
|
reason="adguard_home_outdated",
|
|
|
|
description_placeholders={
|
|
|
|
"current_version": version,
|
|
|
|
"minimal_version": MIN_ADGUARD_HOME_VERSION,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
2019-06-02 05:13:14 +00:00
|
|
|
return self.async_create_entry(
|
|
|
|
title=user_input[CONF_HOST],
|
|
|
|
data={
|
|
|
|
CONF_HOST: user_input[CONF_HOST],
|
|
|
|
CONF_PASSWORD: user_input.get(CONF_PASSWORD),
|
|
|
|
CONF_PORT: user_input[CONF_PORT],
|
|
|
|
CONF_SSL: user_input[CONF_SSL],
|
|
|
|
CONF_USERNAME: user_input.get(CONF_USERNAME),
|
|
|
|
CONF_VERIFY_SSL: user_input[CONF_VERIFY_SSL],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
async def async_step_hassio(self, user_input=None):
|
|
|
|
"""Prepare configuration for a Hass.io AdGuard Home add-on.
|
|
|
|
|
|
|
|
This flow is triggered by the discovery component.
|
|
|
|
"""
|
2019-06-24 21:46:32 +00:00
|
|
|
entries = self._async_current_entries()
|
|
|
|
|
|
|
|
if not entries:
|
|
|
|
self._hassio_discovery = user_input
|
|
|
|
return await self.async_step_hassio_confirm()
|
|
|
|
|
|
|
|
cur_entry = entries[0]
|
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
if (
|
|
|
|
cur_entry.data[CONF_HOST] == user_input[CONF_HOST]
|
|
|
|
and cur_entry.data[CONF_PORT] == user_input[CONF_PORT]
|
|
|
|
):
|
|
|
|
return self.async_abort(reason="single_instance_allowed")
|
2019-06-02 05:13:14 +00:00
|
|
|
|
2019-06-24 21:46:32 +00:00
|
|
|
is_loaded = cur_entry.state == config_entries.ENTRY_STATE_LOADED
|
|
|
|
|
|
|
|
if is_loaded:
|
|
|
|
await self.hass.config_entries.async_unload(cur_entry.entry_id)
|
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
self.hass.config_entries.async_update_entry(
|
|
|
|
cur_entry,
|
|
|
|
data={
|
|
|
|
**cur_entry.data,
|
|
|
|
CONF_HOST: user_input[CONF_HOST],
|
|
|
|
CONF_PORT: user_input[CONF_PORT],
|
|
|
|
},
|
|
|
|
)
|
2019-06-24 21:46:32 +00:00
|
|
|
|
|
|
|
if is_loaded:
|
|
|
|
await self.hass.config_entries.async_setup(cur_entry.entry_id)
|
2019-06-02 05:13:14 +00:00
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
return self.async_abort(reason="existing_instance_updated")
|
2019-06-02 05:13:14 +00:00
|
|
|
|
|
|
|
async def async_step_hassio_confirm(self, user_input=None):
|
|
|
|
"""Confirm Hass.io discovery."""
|
|
|
|
if user_input is None:
|
|
|
|
return await self._show_hassio_form()
|
|
|
|
|
|
|
|
errors = {}
|
|
|
|
|
|
|
|
session = async_get_clientsession(self.hass, False)
|
|
|
|
|
|
|
|
adguard = AdGuardHome(
|
|
|
|
self._hassio_discovery[CONF_HOST],
|
|
|
|
port=self._hassio_discovery[CONF_PORT],
|
|
|
|
tls=False,
|
|
|
|
session=session,
|
|
|
|
)
|
|
|
|
|
|
|
|
try:
|
2019-10-19 19:11:09 +00:00
|
|
|
version = await adguard.version()
|
2019-06-02 05:13:14 +00:00
|
|
|
except AdGuardHomeConnectionError:
|
2019-07-31 19:25:30 +00:00
|
|
|
errors["base"] = "connection_error"
|
2019-06-02 05:13:14 +00:00
|
|
|
return await self._show_hassio_form(errors)
|
|
|
|
|
2019-10-19 19:11:09 +00:00
|
|
|
if LooseVersion(MIN_ADGUARD_HOME_VERSION) > LooseVersion(version):
|
|
|
|
return self.async_abort(
|
|
|
|
reason="adguard_home_addon_outdated",
|
|
|
|
description_placeholders={
|
|
|
|
"current_version": version,
|
|
|
|
"minimal_version": MIN_ADGUARD_HOME_VERSION,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
2019-06-02 05:13:14 +00:00
|
|
|
return self.async_create_entry(
|
2019-07-31 19:25:30 +00:00
|
|
|
title=self._hassio_discovery["addon"],
|
2019-06-02 05:13:14 +00:00
|
|
|
data={
|
|
|
|
CONF_HOST: self._hassio_discovery[CONF_HOST],
|
|
|
|
CONF_PORT: self._hassio_discovery[CONF_PORT],
|
|
|
|
CONF_PASSWORD: None,
|
|
|
|
CONF_SSL: False,
|
|
|
|
CONF_USERNAME: None,
|
|
|
|
CONF_VERIFY_SSL: True,
|
|
|
|
},
|
|
|
|
)
|