hass-core/homeassistant/components/anthemav/config_flow.py
Alex Henry f5c6a6be3a
Add config flow to AnthemAV integration (#53268)
* Add config flow to AnthemAV integration

* Add importing of existing configuration

* Change setting to optional and add default value

* Use entity attribute

* Reduce changes by removing additional media player properties

* Remove title from translation

* Refactor config flow and fix PR comments

* Fix a failing test because of wrong renaming

* Add typing and use existing class and enum

* Bump dependency to v1.3.1

* Remove unecessary async_reload_entry

* Fix requirements_test_all after rebase

* Add const for timeout and remove async_block in test

* Reapply CodeOwner and configflow after rebase

* Remove name from configflow

* Fix manifest prettier failure

* Simplify code and avoid catching broad exception

* Removed unused strings and translations

* Avoid asserting hass.data
2022-06-30 07:13:08 -07:00

96 lines
3.1 KiB
Python

"""Config flow for Anthem A/V Receivers integration."""
from __future__ import annotations
import logging
from typing import Any
import anthemav
from anthemav.connection import Connection
from anthemav.device_error import DeviceError
import voluptuous as vol
from homeassistant import config_entries
from homeassistant.const import CONF_HOST, CONF_MAC, CONF_NAME, CONF_PORT
from homeassistant.data_entry_flow import FlowResult
import homeassistant.helpers.config_validation as cv
from homeassistant.helpers.device_registry import format_mac
from .const import CONF_MODEL, DEFAULT_NAME, DEFAULT_PORT, DOMAIN
DEVICE_TIMEOUT_SECONDS = 4.0
_LOGGER = logging.getLogger(__name__)
STEP_USER_DATA_SCHEMA = vol.Schema(
{
vol.Required(CONF_HOST): cv.string,
vol.Required(CONF_PORT, default=DEFAULT_PORT): int,
}
)
async def connect_device(user_input: dict[str, Any]) -> Connection:
"""Connect to the AVR device."""
avr = await anthemav.Connection.create(
host=user_input[CONF_HOST], port=user_input[CONF_PORT], auto_reconnect=False
)
await avr.reconnect()
await avr.protocol.wait_for_device_initialised(DEVICE_TIMEOUT_SECONDS)
return avr
class ConfigFlow(config_entries.ConfigFlow, domain=DOMAIN):
"""Handle a config flow for Anthem A/V Receivers."""
VERSION = 1
async def async_step_user(
self, user_input: dict[str, Any] | None = None
) -> FlowResult:
"""Handle the initial step."""
if user_input is None:
return self.async_show_form(
step_id="user", data_schema=STEP_USER_DATA_SCHEMA
)
if CONF_NAME not in user_input:
user_input[CONF_NAME] = DEFAULT_NAME
errors = {}
avr: Connection | None = None
try:
avr = await connect_device(user_input)
except OSError:
_LOGGER.error(
"Couldn't establish connection to %s:%s",
user_input[CONF_HOST],
user_input[CONF_PORT],
)
errors["base"] = "cannot_connect"
except DeviceError:
_LOGGER.error(
"Couldn't receive device information from %s:%s",
user_input[CONF_HOST],
user_input[CONF_PORT],
)
errors["base"] = "cannot_receive_deviceinfo"
else:
user_input[CONF_MAC] = format_mac(avr.protocol.macaddress)
user_input[CONF_MODEL] = avr.protocol.model
await self.async_set_unique_id(user_input[CONF_MAC])
self._abort_if_unique_id_configured()
return self.async_create_entry(title=user_input[CONF_NAME], data=user_input)
finally:
if avr is not None:
avr.close()
return self.async_show_form(
step_id="user", data_schema=STEP_USER_DATA_SCHEMA, errors=errors
)
async def async_step_import(
self, user_input: dict[str, Any] | None = None
) -> FlowResult:
"""Import a config entry from configuration.yaml."""
return await self.async_step_user(user_input)