mirror of https://github.com/home-assistant/core
32 lines
921 B
Python
32 lines
921 B
Python
"""API for myUplink bound to Home Assistant OAuth."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import cast
|
|
|
|
from aiohttp import ClientSession
|
|
from myuplink.auth_abstract import AbstractAuth
|
|
|
|
from homeassistant.helpers import config_entry_oauth2_flow
|
|
|
|
from .const import API_ENDPOINT
|
|
|
|
|
|
class AsyncConfigEntryAuth(AbstractAuth):
|
|
"""Provide myUplink authentication tied to an OAuth2 based config entry."""
|
|
|
|
def __init__(
|
|
self,
|
|
websession: ClientSession,
|
|
oauth_session: config_entry_oauth2_flow.OAuth2Session,
|
|
) -> None:
|
|
"""Initialize myUplink auth."""
|
|
super().__init__(websession, API_ENDPOINT)
|
|
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"])
|