mirror of https://github.com/home-assistant/core
54 lines
1.7 KiB
Python
54 lines
1.7 KiB
Python
"""The Prosegur Alarm integration."""
|
|
|
|
import logging
|
|
|
|
from pyprosegur.auth import Auth
|
|
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.const import CONF_COUNTRY, CONF_PASSWORD, CONF_USERNAME, Platform
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.exceptions import ConfigEntryAuthFailed, ConfigEntryNotReady
|
|
from homeassistant.helpers import aiohttp_client
|
|
|
|
from .const import DOMAIN
|
|
|
|
PLATFORMS = [Platform.ALARM_CONTROL_PANEL, Platform.CAMERA]
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
|
"""Set up Prosegur Alarm from a config entry."""
|
|
try:
|
|
session = aiohttp_client.async_get_clientsession(hass)
|
|
hass.data.setdefault(DOMAIN, {})
|
|
hass.data[DOMAIN][entry.entry_id] = Auth(
|
|
session,
|
|
entry.data[CONF_USERNAME],
|
|
entry.data[CONF_PASSWORD],
|
|
entry.data[CONF_COUNTRY],
|
|
)
|
|
await hass.data[DOMAIN][entry.entry_id].login()
|
|
|
|
except ConnectionRefusedError as error:
|
|
_LOGGER.error("Configured credential are invalid, %s", error)
|
|
|
|
raise ConfigEntryAuthFailed from error
|
|
|
|
except ConnectionError as error:
|
|
_LOGGER.error("Could not connect with Prosegur backend: %s", error)
|
|
raise ConfigEntryNotReady from error
|
|
|
|
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."""
|
|
unload_ok = await hass.config_entries.async_unload_platforms(entry, PLATFORMS)
|
|
if unload_ok:
|
|
hass.data[DOMAIN].pop(entry.entry_id)
|
|
|
|
return unload_ok
|