97 lines
3.8 KiB
Python
97 lines
3.8 KiB
Python
"""Config flow to configure SmartThings."""
|
|
|
|
from collections.abc import Mapping
|
|
import logging
|
|
from typing import Any
|
|
|
|
from pysmartthings import SmartThings
|
|
|
|
from homeassistant.config_entries import SOURCE_REAUTH, ConfigFlowResult
|
|
from homeassistant.const import CONF_ACCESS_TOKEN, CONF_TOKEN
|
|
from homeassistant.helpers.aiohttp_client import async_get_clientsession
|
|
from homeassistant.helpers.config_entry_oauth2_flow import AbstractOAuth2FlowHandler
|
|
|
|
from .const import CONF_LOCATION_ID, DOMAIN, OLD_DATA, REQUESTED_SCOPES, SCOPES
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
class SmartThingsConfigFlow(AbstractOAuth2FlowHandler, domain=DOMAIN):
|
|
"""Handle configuration of SmartThings integrations."""
|
|
|
|
VERSION = 3
|
|
DOMAIN = DOMAIN
|
|
|
|
@property
|
|
def logger(self) -> logging.Logger:
|
|
"""Return logger."""
|
|
return logging.getLogger(__name__)
|
|
|
|
@property
|
|
def extra_authorize_data(self) -> dict[str, Any]:
|
|
"""Extra data that needs to be appended to the authorize url."""
|
|
return {"scope": " ".join(REQUESTED_SCOPES)}
|
|
|
|
async def async_step_user(
|
|
self, user_input: dict[str, Any] | None = None
|
|
) -> ConfigFlowResult:
|
|
"""Check we have the cloud integration set up."""
|
|
if "cloud" not in self.hass.config.components:
|
|
return self.async_abort(
|
|
reason="cloud_not_enabled",
|
|
description_placeholders={"default_config": "default_config"},
|
|
)
|
|
return await super().async_step_user(user_input)
|
|
|
|
async def async_oauth_create_entry(self, data: dict[str, Any]) -> ConfigFlowResult:
|
|
"""Create an entry for SmartThings."""
|
|
if not set(data[CONF_TOKEN]["scope"].split()) >= set(SCOPES):
|
|
return self.async_abort(reason="missing_scopes")
|
|
client = SmartThings(session=async_get_clientsession(self.hass))
|
|
client.authenticate(data[CONF_TOKEN][CONF_ACCESS_TOKEN])
|
|
locations = await client.get_locations()
|
|
location = locations[0]
|
|
# We pick to use the location id as unique id rather than the installed app id
|
|
# as the installed app id could change with the right settings in the SmartApp
|
|
# or the app used to sign in changed for any reason.
|
|
await self.async_set_unique_id(location.location_id)
|
|
if self.source != SOURCE_REAUTH:
|
|
self._abort_if_unique_id_configured()
|
|
|
|
return self.async_create_entry(
|
|
title=location.name,
|
|
data={**data, CONF_LOCATION_ID: location.location_id},
|
|
)
|
|
|
|
if (entry := self._get_reauth_entry()) and CONF_TOKEN not in entry.data:
|
|
if entry.data[OLD_DATA][CONF_LOCATION_ID] != location.location_id:
|
|
return self.async_abort(reason="reauth_location_mismatch")
|
|
return self.async_update_reload_and_abort(
|
|
self._get_reauth_entry(),
|
|
data_updates={
|
|
**data,
|
|
CONF_LOCATION_ID: location.location_id,
|
|
},
|
|
unique_id=location.location_id,
|
|
)
|
|
self._abort_if_unique_id_mismatch(reason="reauth_account_mismatch")
|
|
return self.async_update_reload_and_abort(
|
|
self._get_reauth_entry(), data_updates=data
|
|
)
|
|
|
|
async def async_step_reauth(
|
|
self, entry_data: Mapping[str, Any]
|
|
) -> ConfigFlowResult:
|
|
"""Perform reauth upon migration of old entries."""
|
|
return await self.async_step_reauth_confirm()
|
|
|
|
async def async_step_reauth_confirm(
|
|
self, user_input: dict[str, Any] | None = None
|
|
) -> ConfigFlowResult:
|
|
"""Confirm reauth dialog."""
|
|
if user_input is None:
|
|
return self.async_show_form(
|
|
step_id="reauth_confirm",
|
|
)
|
|
return await self.async_step_user()
|