35 lines
1.1 KiB
Python
35 lines
1.1 KiB
Python
"""API for Netatmo bound to HASS OAuth."""
|
|
from asyncio import run_coroutine_threadsafe
|
|
|
|
import pyatmo
|
|
|
|
from homeassistant import config_entries, core
|
|
from homeassistant.helpers import config_entry_oauth2_flow
|
|
|
|
|
|
class ConfigEntryNetatmoAuth(pyatmo.auth.NetatmoOAuth2):
|
|
"""Provide Netatmo authentication tied to an OAuth2 based config entry."""
|
|
|
|
def __init__(
|
|
self,
|
|
hass: core.HomeAssistant,
|
|
config_entry: config_entries.ConfigEntry,
|
|
implementation: config_entry_oauth2_flow.AbstractOAuth2Implementation,
|
|
):
|
|
"""Initialize Netatmo Auth."""
|
|
self.hass = hass
|
|
self.session = config_entry_oauth2_flow.OAuth2Session(
|
|
hass, config_entry, implementation
|
|
)
|
|
super().__init__(token=self.session.token)
|
|
|
|
def refresh_tokens(
|
|
self,
|
|
) -> dict:
|
|
"""Refresh and return new Netatmo tokens using Home Assistant OAuth2 session."""
|
|
run_coroutine_threadsafe(
|
|
self.session.async_ensure_token_valid(), self.hass.loop
|
|
).result()
|
|
|
|
return self.session.token
|