mirror of https://github.com/home-assistant/core
54 lines
1.9 KiB
Python
54 lines
1.9 KiB
Python
"""The opensky component."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from aiohttp import BasicAuth
|
|
from python_opensky import OpenSky
|
|
from python_opensky.exceptions import OpenSkyError
|
|
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.const import CONF_PASSWORD, CONF_USERNAME
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.exceptions import ConfigEntryNotReady
|
|
from homeassistant.helpers.aiohttp_client import async_get_clientsession
|
|
|
|
from .const import CONF_CONTRIBUTING_USER, DOMAIN, PLATFORMS
|
|
from .coordinator import OpenSkyDataUpdateCoordinator
|
|
|
|
|
|
async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
|
"""Set up opensky from a config entry."""
|
|
|
|
client = OpenSky(session=async_get_clientsession(hass))
|
|
if CONF_USERNAME in entry.options and CONF_PASSWORD in entry.options:
|
|
try:
|
|
await client.authenticate(
|
|
BasicAuth(
|
|
login=entry.options[CONF_USERNAME],
|
|
password=entry.options[CONF_PASSWORD],
|
|
),
|
|
contributing_user=entry.options.get(CONF_CONTRIBUTING_USER, False),
|
|
)
|
|
except OpenSkyError as exc:
|
|
raise ConfigEntryNotReady from exc
|
|
|
|
coordinator = OpenSkyDataUpdateCoordinator(hass, client)
|
|
await coordinator.async_config_entry_first_refresh()
|
|
hass.data.setdefault(DOMAIN, {})[entry.entry_id] = coordinator
|
|
|
|
await hass.config_entries.async_forward_entry_setups(entry, PLATFORMS)
|
|
entry.async_on_unload(entry.add_update_listener(update_listener))
|
|
|
|
return True
|
|
|
|
|
|
async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
|
"""Unload opensky config entry."""
|
|
|
|
return await hass.config_entries.async_unload_platforms(entry, PLATFORMS)
|
|
|
|
|
|
async def update_listener(hass: HomeAssistant, entry: ConfigEntry) -> None:
|
|
"""Handle options update."""
|
|
await hass.config_entries.async_reload(entry.entry_id)
|