1
mirror of https://github.com/home-assistant/core synced 2024-08-02 23:40:32 +02:00
ha-core/homeassistant/components/emulated_roku/config_flow.py
J. Nick Koston 34c84a6bbb
Reduce boilerplate to abort for matching config entries (#50186)
Co-authored-by: Franck Nijhof <git@frenck.dev>
2021-05-11 22:00:12 +02:00

57 lines
1.7 KiB
Python

"""Config flow to configure emulated_roku component."""
import voluptuous as vol
from homeassistant import config_entries
from homeassistant.const import CONF_NAME
from homeassistant.core import callback
from .const import CONF_LISTEN_PORT, DEFAULT_NAME, DEFAULT_PORT, DOMAIN
@callback
def configured_servers(hass):
"""Return a set of the configured servers."""
return {
entry.data[CONF_NAME] for entry in hass.config_entries.async_entries(DOMAIN)
}
class EmulatedRokuFlowHandler(config_entries.ConfigFlow, domain=DOMAIN):
"""Handle an emulated_roku config flow."""
VERSION = 1
async def async_step_user(self, user_input=None):
"""Handle a flow initialized by the user."""
errors = {}
if user_input is not None:
self._async_abort_entries_match({CONF_NAME: user_input[CONF_NAME]})
return self.async_create_entry(title=user_input[CONF_NAME], data=user_input)
servers_num = len(configured_servers(self.hass))
if servers_num:
default_name = f"{DEFAULT_NAME} {servers_num + 1}"
default_port = DEFAULT_PORT + servers_num
else:
default_name = DEFAULT_NAME
default_port = DEFAULT_PORT
return self.async_show_form(
step_id="user",
data_schema=vol.Schema(
{
vol.Required(CONF_NAME, default=default_name): str,
vol.Required(CONF_LISTEN_PORT, default=default_port): vol.Coerce(
int
),
}
),
errors=errors,
)
async def async_step_import(self, import_config):
"""Handle a flow import."""
return await self.async_step_user(import_config)