48 lines
1.5 KiB
Python
48 lines
1.5 KiB
Python
"""Config flow to configure the IQVIA component."""
|
|
from __future__ import annotations
|
|
|
|
from typing import Any
|
|
|
|
from pyiqvia import Client
|
|
from pyiqvia.errors import InvalidZipError
|
|
import voluptuous as vol
|
|
|
|
from homeassistant import config_entries
|
|
from homeassistant.data_entry_flow import FlowResult
|
|
from homeassistant.helpers import aiohttp_client
|
|
|
|
from .const import CONF_ZIP_CODE, DOMAIN
|
|
|
|
|
|
class ConfigFlow(config_entries.ConfigFlow, domain=DOMAIN):
|
|
"""Handle an IQVIA config flow."""
|
|
|
|
VERSION = 1
|
|
|
|
def __init__(self) -> None:
|
|
"""Initialize the config flow."""
|
|
self.data_schema = vol.Schema({vol.Required(CONF_ZIP_CODE): str})
|
|
|
|
async def async_step_user(
|
|
self, user_input: dict[str, Any] | None = None
|
|
) -> FlowResult:
|
|
"""Handle the start of the config flow."""
|
|
if not user_input:
|
|
return self.async_show_form(step_id="user", data_schema=self.data_schema)
|
|
|
|
await self.async_set_unique_id(user_input[CONF_ZIP_CODE])
|
|
self._abort_if_unique_id_configured()
|
|
|
|
websession = aiohttp_client.async_get_clientsession(self.hass)
|
|
|
|
try:
|
|
Client(user_input[CONF_ZIP_CODE], session=websession)
|
|
except InvalidZipError:
|
|
return self.async_show_form(
|
|
step_id="user",
|
|
data_schema=self.data_schema,
|
|
errors={CONF_ZIP_CODE: "invalid_zip_code"},
|
|
)
|
|
|
|
return self.async_create_entry(title=user_input[CONF_ZIP_CODE], data=user_input)
|