22 lines
607 B
Python
22 lines
607 B
Python
|
"""Blebox helpers."""
|
||
|
from __future__ import annotations
|
||
|
|
||
|
import aiohttp
|
||
|
|
||
|
from homeassistant.core import HomeAssistant
|
||
|
from homeassistant.helpers.aiohttp_client import (
|
||
|
async_create_clientsession,
|
||
|
async_get_clientsession,
|
||
|
)
|
||
|
|
||
|
|
||
|
def get_maybe_authenticated_session(
|
||
|
hass: HomeAssistant, password: str | None, username: str | None
|
||
|
) -> aiohttp.ClientSession:
|
||
|
"""Return proper session object."""
|
||
|
if username and password:
|
||
|
auth = aiohttp.BasicAuth(login=username, password=password)
|
||
|
return async_create_clientsession(hass, auth=auth)
|
||
|
|
||
|
return async_get_clientsession(hass)
|