* Intial commit * Add artsound as virtual integration * Add config_flow test Add linkplay to .coveragerc Add linkplay to .strict-typing * Remove artsound component * Bump package version * Address mypy and coveragerc * Address comments * Address more feedback, add zeroconf and user flow * Catch broken bridge in async_setup_entry * Raise ConfigEntryNotReady, add __all__ * Implement new tests for the config_flow * Fix async warning * Fix test * Address feedback * Address comments * Address comment --------- Co-authored-by: Philip Vanloo <26272906+pvanloo@users.noreply.github.com>
91 lines
3 KiB
Python
91 lines
3 KiB
Python
"""Config flow to configure LinkPlay component."""
|
|
|
|
from typing import Any
|
|
|
|
from linkplay.discovery import linkplay_factory_bridge
|
|
import voluptuous as vol
|
|
|
|
from homeassistant.components import zeroconf
|
|
from homeassistant.config_entries import ConfigFlow, ConfigFlowResult
|
|
from homeassistant.const import CONF_HOST, CONF_MODEL
|
|
from homeassistant.helpers.aiohttp_client import async_get_clientsession
|
|
|
|
from .const import DOMAIN
|
|
|
|
|
|
class LinkPlayConfigFlow(ConfigFlow, domain=DOMAIN):
|
|
"""LinkPlay config flow."""
|
|
|
|
def __init__(self) -> None:
|
|
"""Initialize the LinkPlay config flow."""
|
|
self.data: dict[str, Any] = {}
|
|
|
|
async def async_step_zeroconf(
|
|
self, discovery_info: zeroconf.ZeroconfServiceInfo
|
|
) -> ConfigFlowResult:
|
|
"""Handle Zeroconf discovery."""
|
|
|
|
session = async_get_clientsession(self.hass)
|
|
bridge = await linkplay_factory_bridge(discovery_info.host, session)
|
|
|
|
if bridge is None:
|
|
return self.async_abort(reason="cannot_connect")
|
|
|
|
self.data[CONF_HOST] = discovery_info.host
|
|
self.data[CONF_MODEL] = bridge.device.name
|
|
|
|
await self.async_set_unique_id(bridge.device.uuid)
|
|
self._abort_if_unique_id_configured(updates={CONF_HOST: discovery_info.host})
|
|
|
|
self.context["title_placeholders"] = {
|
|
"name": self.data[CONF_MODEL],
|
|
}
|
|
return await self.async_step_discovery_confirm()
|
|
|
|
async def async_step_discovery_confirm(
|
|
self, user_input: dict[str, Any] | None = None
|
|
) -> ConfigFlowResult:
|
|
"""Confirm discovery."""
|
|
if user_input is not None:
|
|
return self.async_create_entry(
|
|
title=self.data[CONF_MODEL],
|
|
data={CONF_HOST: self.data[CONF_HOST]},
|
|
)
|
|
|
|
self._set_confirm_only()
|
|
return self.async_show_form(
|
|
step_id="discovery_confirm",
|
|
description_placeholders={
|
|
"name": self.data[CONF_MODEL],
|
|
},
|
|
)
|
|
|
|
async def async_step_user(
|
|
self, user_input: dict[str, Any] | None = None
|
|
) -> ConfigFlowResult:
|
|
"""Handle a flow initialized by the user."""
|
|
errors: dict[str, str] = {}
|
|
if user_input:
|
|
session = async_get_clientsession(self.hass)
|
|
bridge = await linkplay_factory_bridge(user_input[CONF_HOST], session)
|
|
|
|
if bridge is not None:
|
|
self.data[CONF_HOST] = user_input[CONF_HOST]
|
|
self.data[CONF_MODEL] = bridge.device.name
|
|
|
|
await self.async_set_unique_id(bridge.device.uuid)
|
|
self._abort_if_unique_id_configured(
|
|
updates={CONF_HOST: self.data[CONF_HOST]}
|
|
)
|
|
|
|
return self.async_create_entry(
|
|
title=self.data[CONF_MODEL],
|
|
data={CONF_HOST: self.data[CONF_HOST]},
|
|
)
|
|
|
|
errors["base"] = "cannot_connect"
|
|
return self.async_show_form(
|
|
step_id="user",
|
|
data_schema=vol.Schema({vol.Required(CONF_HOST): str}),
|
|
errors=errors,
|
|
)
|