121 lines
4.2 KiB
Python
121 lines
4.2 KiB
Python
"""Adds config flow for Trafikverket Weather integration."""
|
|
from __future__ import annotations
|
|
|
|
from collections.abc import Mapping
|
|
from typing import Any
|
|
|
|
from pytrafikverket.exceptions import (
|
|
InvalidAuthentication,
|
|
MultipleWeatherStationsFound,
|
|
NoWeatherStationFound,
|
|
)
|
|
from pytrafikverket.trafikverket_weather import TrafikverketWeather
|
|
import voluptuous as vol
|
|
|
|
from homeassistant import config_entries
|
|
from homeassistant.const import CONF_API_KEY
|
|
from homeassistant.data_entry_flow import FlowResult
|
|
from homeassistant.helpers.aiohttp_client import async_get_clientsession
|
|
import homeassistant.helpers.config_validation as cv
|
|
|
|
from .const import CONF_STATION, DOMAIN
|
|
|
|
|
|
class TVWeatherConfigFlow(config_entries.ConfigFlow, domain=DOMAIN):
|
|
"""Handle a config flow for Trafikverket Weatherstation integration."""
|
|
|
|
VERSION = 1
|
|
|
|
entry: config_entries.ConfigEntry | None = None
|
|
|
|
async def validate_input(self, sensor_api: str, station: str) -> None:
|
|
"""Validate input from user input."""
|
|
web_session = async_get_clientsession(self.hass)
|
|
weather_api = TrafikverketWeather(web_session, sensor_api)
|
|
await weather_api.async_get_weather(station)
|
|
|
|
async def async_step_user(
|
|
self, user_input: dict[str, str] | None = None
|
|
) -> FlowResult:
|
|
"""Handle the initial step."""
|
|
errors = {}
|
|
|
|
if user_input is not None:
|
|
name = user_input[CONF_STATION]
|
|
api_key = user_input[CONF_API_KEY]
|
|
station = user_input[CONF_STATION]
|
|
|
|
try:
|
|
await self.validate_input(api_key, station)
|
|
except InvalidAuthentication:
|
|
errors["base"] = "invalid_auth"
|
|
except NoWeatherStationFound:
|
|
errors["base"] = "invalid_station"
|
|
except MultipleWeatherStationsFound:
|
|
errors["base"] = "more_stations"
|
|
except Exception: # pylint: disable=broad-exception-caught
|
|
errors["base"] = "cannot_connect"
|
|
else:
|
|
return self.async_create_entry(
|
|
title=name,
|
|
data={
|
|
CONF_API_KEY: api_key,
|
|
CONF_STATION: station,
|
|
},
|
|
)
|
|
|
|
return self.async_show_form(
|
|
step_id="user",
|
|
data_schema=vol.Schema(
|
|
{
|
|
vol.Required(CONF_API_KEY): cv.string,
|
|
vol.Required(CONF_STATION): cv.string,
|
|
}
|
|
),
|
|
errors=errors,
|
|
)
|
|
|
|
async def async_step_reauth(self, entry_data: Mapping[str, Any]) -> FlowResult:
|
|
"""Handle re-authentication with Trafikverket."""
|
|
|
|
self.entry = self.hass.config_entries.async_get_entry(self.context["entry_id"])
|
|
return await self.async_step_reauth_confirm()
|
|
|
|
async def async_step_reauth_confirm(
|
|
self, user_input: dict[str, Any] | None = None
|
|
) -> FlowResult:
|
|
"""Confirm re-authentication with Trafikverket."""
|
|
errors: dict[str, str] = {}
|
|
|
|
if user_input:
|
|
api_key = user_input[CONF_API_KEY]
|
|
|
|
assert self.entry is not None
|
|
|
|
try:
|
|
await self.validate_input(api_key, self.entry.data[CONF_STATION])
|
|
except InvalidAuthentication:
|
|
errors["base"] = "invalid_auth"
|
|
except NoWeatherStationFound:
|
|
errors["base"] = "invalid_station"
|
|
except MultipleWeatherStationsFound:
|
|
errors["base"] = "more_stations"
|
|
except Exception: # pylint: disable=broad-exception-caught
|
|
errors["base"] = "cannot_connect"
|
|
else:
|
|
self.hass.config_entries.async_update_entry(
|
|
self.entry,
|
|
data={
|
|
**self.entry.data,
|
|
CONF_API_KEY: api_key,
|
|
},
|
|
)
|
|
await self.hass.config_entries.async_reload(self.entry.entry_id)
|
|
return self.async_abort(reason="reauth_successful")
|
|
|
|
return self.async_show_form(
|
|
step_id="reauth_confirm",
|
|
data_schema=vol.Schema({vol.Required(CONF_API_KEY): cv.string}),
|
|
errors=errors,
|
|
)
|