mirror of https://github.com/home-assistant/core
32 lines
980 B
Python
32 lines
980 B
Python
"""API for yolink bound to Home Assistant OAuth."""
|
|
|
|
from aiohttp import ClientSession
|
|
from yolink.auth_mgr import YoLinkAuthMgr
|
|
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers import config_entry_oauth2_flow
|
|
|
|
|
|
class ConfigEntryAuth(YoLinkAuthMgr):
|
|
"""Provide yolink authentication tied to an OAuth2 based config entry."""
|
|
|
|
def __init__(
|
|
self,
|
|
hass: HomeAssistant,
|
|
websession: ClientSession,
|
|
oauth2Session: config_entry_oauth2_flow.OAuth2Session,
|
|
) -> None:
|
|
"""Initialize yolink Auth."""
|
|
self.hass = hass
|
|
self.oauth_session = oauth2Session
|
|
super().__init__(websession)
|
|
|
|
def access_token(self) -> str:
|
|
"""Return the access token."""
|
|
return self.oauth_session.token["access_token"]
|
|
|
|
async def check_and_refresh_token(self) -> str:
|
|
"""Check the token."""
|
|
await self.oauth_session.async_ensure_token_valid()
|
|
return self.access_token()
|