mirror of https://github.com/home-assistant/core
49 lines
1.5 KiB
Python
49 lines
1.5 KiB
Python
"""Config flow for AfterShip integration."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import logging
|
|
from typing import Any
|
|
|
|
from pyaftership import AfterShip, AfterShipException
|
|
import voluptuous as vol
|
|
|
|
from homeassistant.config_entries import ConfigFlow, ConfigFlowResult
|
|
from homeassistant.const import CONF_API_KEY
|
|
from homeassistant.helpers.aiohttp_client import async_get_clientsession
|
|
|
|
from .const import DOMAIN
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
class AfterShipConfigFlow(ConfigFlow, domain=DOMAIN):
|
|
"""Handle a config flow for AfterShip."""
|
|
|
|
VERSION = 1
|
|
|
|
async def async_step_user(
|
|
self, user_input: dict[str, Any] | None = None
|
|
) -> ConfigFlowResult:
|
|
"""Handle the initial step."""
|
|
errors: dict[str, str] = {}
|
|
if user_input is not None:
|
|
self._async_abort_entries_match({CONF_API_KEY: user_input[CONF_API_KEY]})
|
|
try:
|
|
aftership = AfterShip(
|
|
api_key=user_input[CONF_API_KEY],
|
|
session=async_get_clientsession(self.hass),
|
|
)
|
|
await aftership.trackings.list()
|
|
except AfterShipException:
|
|
_LOGGER.exception("Aftership raised exception")
|
|
errors["base"] = "cannot_connect"
|
|
else:
|
|
return self.async_create_entry(title="AfterShip", data=user_input)
|
|
|
|
return self.async_show_form(
|
|
step_id="user",
|
|
data_schema=vol.Schema({vol.Required(CONF_API_KEY): str}),
|
|
errors=errors,
|
|
)
|