core/homeassistant/components/weatherflow_cloud/config_flow.py

82 lines
2.6 KiB
Python

"""Config flow for WeatherflowCloud integration."""
from __future__ import annotations
from collections.abc import Mapping
from typing import Any
from aiohttp import ClientResponseError
import voluptuous as vol
from weatherflow4py.api import WeatherFlowRestAPI
from homeassistant import config_entries
from homeassistant.const import CONF_API_TOKEN
from .const import DOMAIN
async def _validate_api_token(api_token: str) -> dict[str, Any]:
"""Validate the API token."""
try:
async with WeatherFlowRestAPI(api_token) as api:
await api.async_get_stations()
except ClientResponseError as err:
if err.status == 401:
return {"base": "invalid_api_key"}
return {"base": "cannot_connect"}
return {}
class ConfigFlow(config_entries.ConfigFlow, domain=DOMAIN):
"""Handle a config flow for WeatherFlowCloud."""
VERSION = 1
async def async_step_reauth(
self, user_input: Mapping[str, Any]
) -> config_entries.ConfigFlowResult:
"""Handle a flow for reauth."""
errors = {}
if user_input is not None:
api_token = user_input[CONF_API_TOKEN]
errors = await _validate_api_token(api_token)
if not errors:
# Update the existing entry and abort
if existing_entry := self.hass.config_entries.async_get_entry(
self.context["entry_id"]
):
return self.async_update_reload_and_abort(
existing_entry,
data={CONF_API_TOKEN: api_token},
reason="reauth_successful",
)
return self.async_show_form(
step_id="reauth",
data_schema=vol.Schema({vol.Required(CONF_API_TOKEN): str}),
errors=errors,
)
async def async_step_user(
self, user_input: dict[str, Any] | None = None
) -> config_entries.ConfigFlowResult:
"""Handle a flow initialized by the user."""
errors = {}
if user_input is not None:
self._async_abort_entries_match(user_input)
api_token = user_input[CONF_API_TOKEN]
errors = await _validate_api_token(api_token)
if not errors:
return self.async_create_entry(
title="Weatherflow REST",
data={CONF_API_TOKEN: api_token},
)
return self.async_show_form(
step_id="user",
data_schema=vol.Schema({vol.Required(CONF_API_TOKEN): str}),
errors=errors,
)