51 lines
1.6 KiB
Python
51 lines
1.6 KiB
Python
"""The OurGroceries integration."""
|
|
from __future__ import annotations
|
|
|
|
from asyncio import TimeoutError as AsyncIOTimeoutError
|
|
|
|
from aiohttp import ClientError
|
|
from ourgroceries import OurGroceries
|
|
from ourgroceries.exceptions import InvalidLoginException
|
|
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.const import CONF_PASSWORD, CONF_USERNAME, Platform
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.exceptions import ConfigEntryNotReady
|
|
|
|
from .const import DOMAIN
|
|
from .coordinator import OurGroceriesDataUpdateCoordinator
|
|
|
|
PLATFORMS: list[Platform] = [Platform.TODO]
|
|
|
|
|
|
async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
|
"""Set up OurGroceries from a config entry."""
|
|
|
|
hass.data.setdefault(DOMAIN, {})
|
|
data = entry.data
|
|
og = OurGroceries(data[CONF_USERNAME], data[CONF_PASSWORD])
|
|
lists = []
|
|
try:
|
|
await og.login()
|
|
lists = (await og.get_my_lists())["shoppingLists"]
|
|
except (AsyncIOTimeoutError, ClientError) as error:
|
|
raise ConfigEntryNotReady from error
|
|
except InvalidLoginException:
|
|
return False
|
|
|
|
coordinator = OurGroceriesDataUpdateCoordinator(hass, og, lists)
|
|
await coordinator.async_config_entry_first_refresh()
|
|
hass.data[DOMAIN][entry.entry_id] = coordinator
|
|
|
|
await hass.config_entries.async_forward_entry_setups(entry, PLATFORMS)
|
|
|
|
return True
|
|
|
|
|
|
async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
|
"""Unload a config entry."""
|
|
if unload_ok := await hass.config_entries.async_unload_platforms(entry, PLATFORMS):
|
|
hass.data[DOMAIN].pop(entry.entry_id)
|
|
|
|
return unload_ok
|