mirror of https://github.com/home-assistant/core
129 lines
3.8 KiB
Python
129 lines
3.8 KiB
Python
"""Config flow for OpenWeatherMap."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import voluptuous as vol
|
|
|
|
from homeassistant.config_entries import (
|
|
ConfigEntry,
|
|
ConfigFlow,
|
|
ConfigFlowResult,
|
|
OptionsFlow,
|
|
)
|
|
from homeassistant.const import (
|
|
CONF_API_KEY,
|
|
CONF_LANGUAGE,
|
|
CONF_LATITUDE,
|
|
CONF_LONGITUDE,
|
|
CONF_MODE,
|
|
CONF_NAME,
|
|
)
|
|
from homeassistant.core import callback
|
|
import homeassistant.helpers.config_validation as cv
|
|
|
|
from .const import (
|
|
CONFIG_FLOW_VERSION,
|
|
DEFAULT_LANGUAGE,
|
|
DEFAULT_NAME,
|
|
DEFAULT_OWM_MODE,
|
|
DOMAIN,
|
|
LANGUAGES,
|
|
OWM_MODES,
|
|
)
|
|
from .utils import build_data_and_options, validate_api_key
|
|
|
|
|
|
class OpenWeatherMapConfigFlow(ConfigFlow, domain=DOMAIN):
|
|
"""Config flow for OpenWeatherMap."""
|
|
|
|
VERSION = CONFIG_FLOW_VERSION
|
|
|
|
@staticmethod
|
|
@callback
|
|
def async_get_options_flow(
|
|
config_entry: ConfigEntry,
|
|
) -> OpenWeatherMapOptionsFlow:
|
|
"""Get the options flow for this handler."""
|
|
return OpenWeatherMapOptionsFlow()
|
|
|
|
async def async_step_user(self, user_input=None) -> ConfigFlowResult:
|
|
"""Handle a flow initialized by the user."""
|
|
errors = {}
|
|
description_placeholders = {}
|
|
|
|
if user_input is not None:
|
|
latitude = user_input[CONF_LATITUDE]
|
|
longitude = user_input[CONF_LONGITUDE]
|
|
mode = user_input[CONF_MODE]
|
|
|
|
await self.async_set_unique_id(f"{latitude}-{longitude}")
|
|
self._abort_if_unique_id_configured()
|
|
|
|
errors, description_placeholders = await validate_api_key(
|
|
user_input[CONF_API_KEY], mode
|
|
)
|
|
|
|
if not errors:
|
|
data, options = build_data_and_options(user_input)
|
|
return self.async_create_entry(
|
|
title=user_input[CONF_NAME], data=data, options=options
|
|
)
|
|
|
|
schema = vol.Schema(
|
|
{
|
|
vol.Required(CONF_API_KEY): str,
|
|
vol.Optional(CONF_NAME, default=DEFAULT_NAME): str,
|
|
vol.Optional(
|
|
CONF_LATITUDE, default=self.hass.config.latitude
|
|
): cv.latitude,
|
|
vol.Optional(
|
|
CONF_LONGITUDE, default=self.hass.config.longitude
|
|
): cv.longitude,
|
|
vol.Optional(CONF_MODE, default=DEFAULT_OWM_MODE): vol.In(OWM_MODES),
|
|
vol.Optional(CONF_LANGUAGE, default=DEFAULT_LANGUAGE): vol.In(
|
|
LANGUAGES
|
|
),
|
|
}
|
|
)
|
|
|
|
return self.async_show_form(
|
|
step_id="user",
|
|
data_schema=schema,
|
|
errors=errors,
|
|
description_placeholders=description_placeholders,
|
|
)
|
|
|
|
|
|
class OpenWeatherMapOptionsFlow(OptionsFlow):
|
|
"""Handle options."""
|
|
|
|
async def async_step_init(self, user_input: dict | None = None) -> ConfigFlowResult:
|
|
"""Manage the options."""
|
|
if user_input is not None:
|
|
return self.async_create_entry(title="", data=user_input)
|
|
|
|
return self.async_show_form(
|
|
step_id="init",
|
|
data_schema=self._get_options_schema(),
|
|
)
|
|
|
|
def _get_options_schema(self):
|
|
return vol.Schema(
|
|
{
|
|
vol.Optional(
|
|
CONF_MODE,
|
|
default=self.config_entry.options.get(
|
|
CONF_MODE,
|
|
self.config_entry.data.get(CONF_MODE, DEFAULT_OWM_MODE),
|
|
),
|
|
): vol.In(OWM_MODES),
|
|
vol.Optional(
|
|
CONF_LANGUAGE,
|
|
default=self.config_entry.options.get(
|
|
CONF_LANGUAGE,
|
|
self.config_entry.data.get(CONF_LANGUAGE, DEFAULT_LANGUAGE),
|
|
),
|
|
): vol.In(LANGUAGES),
|
|
}
|
|
)
|