mirror of https://github.com/home-assistant/core
31 lines
977 B
Python
31 lines
977 B
Python
"""API for Husqvarna Automower bound to Home Assistant OAuth."""
|
|
|
|
import logging
|
|
from typing import cast
|
|
|
|
from aioautomower.auth import AbstractAuth
|
|
from aioautomower.const import API_BASE_URL
|
|
from aiohttp import ClientSession
|
|
|
|
from homeassistant.helpers import config_entry_oauth2_flow
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
class AsyncConfigEntryAuth(AbstractAuth):
|
|
"""Provide Husqvarna Automower authentication tied to an OAuth2 based config entry."""
|
|
|
|
def __init__(
|
|
self,
|
|
websession: ClientSession,
|
|
oauth_session: config_entry_oauth2_flow.OAuth2Session,
|
|
) -> None:
|
|
"""Initialize Husqvarna Automower auth."""
|
|
super().__init__(websession, API_BASE_URL)
|
|
self._oauth_session = oauth_session
|
|
|
|
async def async_get_access_token(self) -> str:
|
|
"""Return a valid access token."""
|
|
await self._oauth_session.async_ensure_token_valid()
|
|
return cast(str, self._oauth_session.token["access_token"])
|