77 lines
2.3 KiB
Python
77 lines
2.3 KiB
Python
"""The Bring! integration."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import logging
|
|
|
|
from bring_api.bring import Bring
|
|
from bring_api.exceptions import (
|
|
BringAuthException,
|
|
BringParseException,
|
|
BringRequestException,
|
|
)
|
|
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.const import CONF_EMAIL, CONF_PASSWORD, Platform
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.exceptions import ConfigEntryError, ConfigEntryNotReady
|
|
from homeassistant.helpers.aiohttp_client import async_get_clientsession
|
|
|
|
from .const import DOMAIN
|
|
from .coordinator import BringDataUpdateCoordinator
|
|
|
|
PLATFORMS: list[Platform] = [Platform.TODO]
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
|
"""Set up Bring! from a config entry."""
|
|
|
|
email = entry.data[CONF_EMAIL]
|
|
password = entry.data[CONF_PASSWORD]
|
|
|
|
session = async_get_clientsession(hass)
|
|
bring = Bring(session, email, password)
|
|
|
|
try:
|
|
await bring.login()
|
|
await bring.load_lists()
|
|
except BringRequestException as e:
|
|
raise ConfigEntryNotReady(
|
|
f"Timeout while connecting for email '{email}'"
|
|
) from e
|
|
except BringAuthException as e:
|
|
_LOGGER.error(
|
|
"Authentication failed for '%s', check your email and password",
|
|
email,
|
|
)
|
|
raise ConfigEntryError(
|
|
f"Authentication failed for '{email}', check your email and password"
|
|
) from e
|
|
except BringParseException as e:
|
|
_LOGGER.error(
|
|
"Failed to parse request '%s', check your email and password",
|
|
email,
|
|
)
|
|
raise ConfigEntryNotReady(
|
|
"Failed to parse response request from server, try again later"
|
|
) from e
|
|
|
|
coordinator = BringDataUpdateCoordinator(hass, bring)
|
|
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)
|
|
|
|
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
|