112 lines
3.5 KiB
Python
112 lines
3.5 KiB
Python
|
"""Config flow for UpCloud."""
|
||
|
|
||
|
import logging
|
||
|
|
||
|
import requests.exceptions
|
||
|
import upcloud_api
|
||
|
import voluptuous as vol
|
||
|
|
||
|
from homeassistant import config_entries
|
||
|
from homeassistant.const import CONF_PASSWORD, CONF_SCAN_INTERVAL, CONF_USERNAME
|
||
|
from homeassistant.core import callback
|
||
|
|
||
|
from .const import DEFAULT_SCAN_INTERVAL, DOMAIN
|
||
|
|
||
|
_LOGGER = logging.getLogger(__name__)
|
||
|
|
||
|
|
||
|
class UpCloudConfigFlow(config_entries.ConfigFlow, domain=DOMAIN):
|
||
|
"""UpCloud config flow."""
|
||
|
|
||
|
VERSION = 1
|
||
|
CONNECTION_CLASS = config_entries.CONN_CLASS_CLOUD_POLL
|
||
|
|
||
|
username: str
|
||
|
password: str
|
||
|
|
||
|
async def async_step_user(self, user_input=None):
|
||
|
"""Handle user initiated flow."""
|
||
|
if user_input is None:
|
||
|
return self._async_show_form(step_id="user")
|
||
|
|
||
|
await self.async_set_unique_id(user_input[CONF_USERNAME])
|
||
|
|
||
|
manager = upcloud_api.CloudManager(
|
||
|
user_input[CONF_USERNAME], user_input[CONF_PASSWORD]
|
||
|
)
|
||
|
|
||
|
errors = {}
|
||
|
try:
|
||
|
await self.hass.async_add_executor_job(manager.authenticate)
|
||
|
except upcloud_api.UpCloudAPIError:
|
||
|
errors["base"] = "invalid_auth"
|
||
|
_LOGGER.debug("invalid_auth", exc_info=True)
|
||
|
except requests.exceptions.RequestException:
|
||
|
errors["base"] = "cannot_connect"
|
||
|
_LOGGER.debug("cannot_connect", exc_info=True)
|
||
|
|
||
|
if errors:
|
||
|
return self._async_show_form(
|
||
|
step_id="user", user_input=user_input, errors=errors
|
||
|
)
|
||
|
|
||
|
return self.async_create_entry(title=user_input[CONF_USERNAME], data=user_input)
|
||
|
|
||
|
async def async_step_import(self, user_input=None):
|
||
|
"""Handle import initiated flow."""
|
||
|
await self.async_set_unique_id(user_input[CONF_USERNAME])
|
||
|
self._abort_if_unique_id_configured()
|
||
|
|
||
|
return await self.async_step_user(user_input=user_input)
|
||
|
|
||
|
@callback
|
||
|
def _async_show_form(self, step_id, user_input=None, errors=None):
|
||
|
"""Show our form."""
|
||
|
if user_input is None:
|
||
|
user_input = {}
|
||
|
return self.async_show_form(
|
||
|
step_id=step_id,
|
||
|
data_schema=vol.Schema(
|
||
|
{
|
||
|
vol.Required(
|
||
|
CONF_USERNAME, default=user_input.get(CONF_USERNAME, "")
|
||
|
): str,
|
||
|
vol.Required(
|
||
|
CONF_PASSWORD, default=user_input.get(CONF_PASSWORD, "")
|
||
|
): str,
|
||
|
}
|
||
|
),
|
||
|
errors=errors or {},
|
||
|
)
|
||
|
|
||
|
@staticmethod
|
||
|
@callback
|
||
|
def async_get_options_flow(config_entry):
|
||
|
"""Get options flow."""
|
||
|
return UpCloudOptionsFlow(config_entry)
|
||
|
|
||
|
|
||
|
class UpCloudOptionsFlow(config_entries.OptionsFlow):
|
||
|
"""UpCloud options flow."""
|
||
|
|
||
|
def __init__(self, config_entry: config_entries.ConfigEntry):
|
||
|
"""Initialize options flow."""
|
||
|
self.config_entry = config_entry
|
||
|
|
||
|
async def async_step_init(self, user_input=None):
|
||
|
"""Handle options flow."""
|
||
|
|
||
|
if user_input is not None:
|
||
|
return self.async_create_entry(title="", data=user_input)
|
||
|
|
||
|
data_schema = vol.Schema(
|
||
|
{
|
||
|
vol.Optional(
|
||
|
CONF_SCAN_INTERVAL,
|
||
|
default=self.config_entry.options.get(CONF_SCAN_INTERVAL)
|
||
|
or DEFAULT_SCAN_INTERVAL.seconds,
|
||
|
): vol.All(vol.Coerce(int), vol.Range(min=30)),
|
||
|
}
|
||
|
)
|
||
|
return self.async_show_form(step_id="init", data_schema=data_schema)
|