188 lines
6.1 KiB
Python
188 lines
6.1 KiB
Python
"""Tesla Config Flow."""
|
|
import logging
|
|
|
|
import httpx
|
|
from teslajsonpy import Controller as TeslaAPI, TeslaException
|
|
from teslajsonpy.exceptions import IncompleteCredentials
|
|
import voluptuous as vol
|
|
|
|
from homeassistant import config_entries, core, exceptions
|
|
from homeassistant.const import (
|
|
CONF_ACCESS_TOKEN,
|
|
CONF_PASSWORD,
|
|
CONF_SCAN_INTERVAL,
|
|
CONF_TOKEN,
|
|
CONF_USERNAME,
|
|
HTTP_UNAUTHORIZED,
|
|
)
|
|
from homeassistant.core import callback
|
|
from homeassistant.helpers import config_validation as cv
|
|
from homeassistant.helpers.httpx_client import SERVER_SOFTWARE, USER_AGENT
|
|
|
|
from .const import (
|
|
CONF_EXPIRATION,
|
|
CONF_WAKE_ON_START,
|
|
DEFAULT_SCAN_INTERVAL,
|
|
DEFAULT_WAKE_ON_START,
|
|
DOMAIN,
|
|
MIN_SCAN_INTERVAL,
|
|
)
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
class TeslaConfigFlow(config_entries.ConfigFlow, domain=DOMAIN):
|
|
"""Handle a config flow for Tesla."""
|
|
|
|
VERSION = 1
|
|
|
|
def __init__(self) -> None:
|
|
"""Initialize the tesla flow."""
|
|
self.username = None
|
|
self.reauth = False
|
|
|
|
async def async_step_import(self, import_config):
|
|
"""Import a config entry from configuration.yaml."""
|
|
return await self.async_step_user(import_config)
|
|
|
|
async def async_step_user(self, user_input=None):
|
|
"""Handle the start of the config flow."""
|
|
errors = {}
|
|
|
|
if user_input is not None:
|
|
existing_entry = self._async_entry_for_username(user_input[CONF_USERNAME])
|
|
if existing_entry and not self.reauth:
|
|
return self.async_abort(reason="already_configured")
|
|
|
|
try:
|
|
info = await validate_input(self.hass, user_input)
|
|
except CannotConnect:
|
|
errors["base"] = "cannot_connect"
|
|
except InvalidAuth:
|
|
errors["base"] = "invalid_auth"
|
|
|
|
if not errors:
|
|
if existing_entry:
|
|
self.hass.config_entries.async_update_entry(
|
|
existing_entry, data=info
|
|
)
|
|
await self.hass.config_entries.async_reload(existing_entry.entry_id)
|
|
return self.async_abort(reason="reauth_successful")
|
|
|
|
return self.async_create_entry(
|
|
title=user_input[CONF_USERNAME], data=info
|
|
)
|
|
|
|
return self.async_show_form(
|
|
step_id="user",
|
|
data_schema=self._async_schema(),
|
|
errors=errors,
|
|
description_placeholders={},
|
|
)
|
|
|
|
async def async_step_reauth(self, data):
|
|
"""Handle configuration by re-auth."""
|
|
self.username = data[CONF_USERNAME]
|
|
self.reauth = True
|
|
return await self.async_step_user()
|
|
|
|
@staticmethod
|
|
@callback
|
|
def async_get_options_flow(config_entry):
|
|
"""Get the options flow for this handler."""
|
|
return OptionsFlowHandler(config_entry)
|
|
|
|
@callback
|
|
def _async_schema(self):
|
|
"""Fetch schema with defaults."""
|
|
return vol.Schema(
|
|
{
|
|
vol.Required(CONF_USERNAME, default=self.username): str,
|
|
vol.Required(CONF_PASSWORD): str,
|
|
}
|
|
)
|
|
|
|
@callback
|
|
def _async_entry_for_username(self, username):
|
|
"""Find an existing entry for a username."""
|
|
for entry in self._async_current_entries():
|
|
if entry.data.get(CONF_USERNAME) == username:
|
|
return entry
|
|
return None
|
|
|
|
|
|
class OptionsFlowHandler(config_entries.OptionsFlow):
|
|
"""Handle a option flow for Tesla."""
|
|
|
|
def __init__(self, config_entry: config_entries.ConfigEntry) -> None:
|
|
"""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, DEFAULT_SCAN_INTERVAL
|
|
),
|
|
): vol.All(cv.positive_int, vol.Clamp(min=MIN_SCAN_INTERVAL)),
|
|
vol.Optional(
|
|
CONF_WAKE_ON_START,
|
|
default=self.config_entry.options.get(
|
|
CONF_WAKE_ON_START, DEFAULT_WAKE_ON_START
|
|
),
|
|
): bool,
|
|
}
|
|
)
|
|
return self.async_show_form(step_id="init", data_schema=data_schema)
|
|
|
|
|
|
async def validate_input(hass: core.HomeAssistant, data):
|
|
"""Validate the user input allows us to connect.
|
|
|
|
Data has the keys from DATA_SCHEMA with values provided by the user.
|
|
"""
|
|
|
|
config = {}
|
|
async_client = httpx.AsyncClient(headers={USER_AGENT: SERVER_SOFTWARE}, timeout=60)
|
|
|
|
try:
|
|
controller = TeslaAPI(
|
|
async_client,
|
|
email=data[CONF_USERNAME],
|
|
password=data[CONF_PASSWORD],
|
|
update_interval=DEFAULT_SCAN_INTERVAL,
|
|
)
|
|
result = await controller.connect(test_login=True)
|
|
config[CONF_TOKEN] = result["refresh_token"]
|
|
config[CONF_ACCESS_TOKEN] = result["access_token"]
|
|
config[CONF_EXPIRATION] = result[CONF_EXPIRATION]
|
|
config[CONF_USERNAME] = data[CONF_USERNAME]
|
|
config[CONF_PASSWORD] = data[CONF_PASSWORD]
|
|
except IncompleteCredentials as ex:
|
|
_LOGGER.error("Authentication error: %s %s", ex.message, ex)
|
|
raise InvalidAuth() from ex
|
|
except TeslaException as ex:
|
|
if ex.code == HTTP_UNAUTHORIZED:
|
|
_LOGGER.error("Invalid credentials: %s", ex)
|
|
raise InvalidAuth() from ex
|
|
_LOGGER.error("Unable to communicate with Tesla API: %s", ex)
|
|
raise CannotConnect() from ex
|
|
finally:
|
|
await async_client.aclose()
|
|
_LOGGER.debug("Credentials successfully connected to the Tesla API")
|
|
return config
|
|
|
|
|
|
class CannotConnect(exceptions.HomeAssistantError):
|
|
"""Error to indicate we cannot connect."""
|
|
|
|
|
|
class InvalidAuth(exceptions.HomeAssistantError):
|
|
"""Error to indicate there is invalid auth."""
|