mirror of https://github.com/home-assistant/core
101 lines
3.4 KiB
Python
101 lines
3.4 KiB
Python
"""Config flow for Skybell integration."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from collections.abc import Mapping
|
|
from typing import Any
|
|
|
|
from aioskybell import Skybell, exceptions
|
|
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 DOMAIN
|
|
|
|
|
|
class SkybellFlowHandler(ConfigFlow, domain=DOMAIN):
|
|
"""Handle a config flow for Skybell."""
|
|
|
|
reauth_email: str
|
|
|
|
async def async_step_reauth(
|
|
self, entry_data: Mapping[str, Any]
|
|
) -> ConfigFlowResult:
|
|
"""Handle a reauthorization flow request."""
|
|
self.reauth_email = entry_data[CONF_EMAIL]
|
|
return await self.async_step_reauth_confirm()
|
|
|
|
async def async_step_reauth_confirm(
|
|
self, user_input: dict[str, str] | None = None
|
|
) -> ConfigFlowResult:
|
|
"""Handle user's reauth credentials."""
|
|
errors = {}
|
|
if user_input:
|
|
password = user_input[CONF_PASSWORD]
|
|
_, error = await self._async_validate_input(self.reauth_email, password)
|
|
if error is None:
|
|
return self.async_update_reload_and_abort(
|
|
self._get_reauth_entry(), data_updates=user_input
|
|
)
|
|
|
|
errors["base"] = error
|
|
return self.async_show_form(
|
|
step_id="reauth_confirm",
|
|
data_schema=vol.Schema({vol.Required(CONF_PASSWORD): str}),
|
|
description_placeholders={CONF_EMAIL: self.reauth_email},
|
|
errors=errors,
|
|
)
|
|
|
|
async def async_step_user(
|
|
self, user_input: dict[str, Any] | None = None
|
|
) -> ConfigFlowResult:
|
|
"""Handle a flow initiated by the user."""
|
|
errors = {}
|
|
|
|
if user_input is not None:
|
|
email = user_input[CONF_EMAIL].lower()
|
|
password = user_input[CONF_PASSWORD]
|
|
|
|
self._async_abort_entries_match({CONF_EMAIL: email})
|
|
user_id, error = await self._async_validate_input(email, password)
|
|
if error is None:
|
|
await self.async_set_unique_id(user_id)
|
|
self._abort_if_unique_id_configured()
|
|
return self.async_create_entry(
|
|
title=email,
|
|
data={CONF_EMAIL: email, CONF_PASSWORD: password},
|
|
)
|
|
errors["base"] = error
|
|
|
|
user_input = user_input or {}
|
|
return self.async_show_form(
|
|
step_id="user",
|
|
data_schema=vol.Schema(
|
|
{
|
|
vol.Required(CONF_EMAIL, default=user_input.get(CONF_EMAIL)): str,
|
|
vol.Required(CONF_PASSWORD): str,
|
|
}
|
|
),
|
|
errors=errors,
|
|
)
|
|
|
|
async def _async_validate_input(self, email: str, password: str) -> tuple:
|
|
"""Validate login credentials."""
|
|
skybell = Skybell(
|
|
username=email,
|
|
password=password,
|
|
disable_cache=True,
|
|
session=async_get_clientsession(self.hass),
|
|
)
|
|
try:
|
|
await skybell.async_initialize()
|
|
except exceptions.SkybellAuthenticationException:
|
|
return None, "invalid_auth"
|
|
except exceptions.SkybellException:
|
|
return None, "cannot_connect"
|
|
except Exception: # noqa: BLE001
|
|
return None, "unknown"
|
|
return skybell.user_id, None
|