* Convert Linear Garage Door to Nice G.O.
* Remove useless fixtures
* Update manifest (now cloud push! 🎉)
* Fix entry unload
* Extend config entry type
* Fix circular import
* Bump nice-go (hopefully fix dep conflict)
* Bump nice-go (moves type stubs to dev deps)
* Remove lingering mentions of Linear
* Add nice-go as logger
* Convert nice_go into a new integration and restore linear_garage_door
* Add missing new lines to snapshots
* Fixes suggested by @joostlek
* More fixes
* Fixes
* Fixes
* Fix coordinator tests
* Move coordinator tests
* Move test_no_connection_state from test_cover to test_init
---------
Co-authored-by: Joostlek <joostlek@outlook.com>
68 lines
2.2 KiB
Python
68 lines
2.2 KiB
Python
"""Config flow for Nice G.O. integration."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from datetime import datetime
|
|
import logging
|
|
from typing import Any
|
|
|
|
from nice_go import AuthFailedError, NiceGOApi
|
|
import voluptuous as vol
|
|
|
|
from homeassistant.config_entries import ConfigFlow, ConfigFlowResult
|
|
from homeassistant.const import CONF_EMAIL, CONF_PASSWORD
|
|
from homeassistant.helpers.aiohttp_client import async_get_clientsession
|
|
|
|
from .const import CONF_REFRESH_TOKEN, CONF_REFRESH_TOKEN_CREATION_TIME, DOMAIN
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
STEP_USER_DATA_SCHEMA = vol.Schema(
|
|
{
|
|
vol.Required(CONF_EMAIL): str,
|
|
vol.Required(CONF_PASSWORD): str,
|
|
}
|
|
)
|
|
|
|
|
|
class NiceGOConfigFlow(ConfigFlow, domain=DOMAIN):
|
|
"""Handle a config flow for Nice G.O."""
|
|
|
|
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:
|
|
await self.async_set_unique_id(user_input[CONF_EMAIL])
|
|
self._abort_if_unique_id_configured()
|
|
|
|
hub = NiceGOApi()
|
|
|
|
try:
|
|
refresh_token = await hub.authenticate(
|
|
user_input[CONF_EMAIL],
|
|
user_input[CONF_PASSWORD],
|
|
async_get_clientsession(self.hass),
|
|
)
|
|
except AuthFailedError:
|
|
errors["base"] = "invalid_auth"
|
|
except Exception: # noqa: BLE001
|
|
_LOGGER.exception("Unexpected exception")
|
|
errors["base"] = "unknown"
|
|
else:
|
|
return self.async_create_entry(
|
|
title=user_input[CONF_EMAIL],
|
|
data={
|
|
CONF_EMAIL: user_input[CONF_EMAIL],
|
|
CONF_PASSWORD: user_input[CONF_PASSWORD],
|
|
CONF_REFRESH_TOKEN: refresh_token,
|
|
CONF_REFRESH_TOKEN_CREATION_TIME: datetime.now().timestamp(),
|
|
},
|
|
)
|
|
|
|
return self.async_show_form(
|
|
step_id="user", data_schema=STEP_USER_DATA_SCHEMA, errors=errors
|
|
)
|