75 lines
2.3 KiB
Python
75 lines
2.3 KiB
Python
"""Support for Verisure devices."""
|
|
from __future__ import annotations
|
|
|
|
from contextlib import suppress
|
|
import os
|
|
from pathlib import Path
|
|
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.const import CONF_EMAIL, Platform
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.exceptions import ConfigEntryNotReady
|
|
import homeassistant.helpers.config_validation as cv
|
|
from homeassistant.helpers.storage import STORAGE_DIR
|
|
|
|
from .const import DOMAIN
|
|
from .coordinator import VerisureDataUpdateCoordinator
|
|
|
|
PLATFORMS = [
|
|
Platform.ALARM_CONTROL_PANEL,
|
|
Platform.BINARY_SENSOR,
|
|
Platform.CAMERA,
|
|
Platform.LOCK,
|
|
Platform.SENSOR,
|
|
Platform.SWITCH,
|
|
]
|
|
|
|
CONFIG_SCHEMA = cv.removed(DOMAIN, raise_if_present=False)
|
|
|
|
|
|
async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
|
"""Set up Verisure from a config entry."""
|
|
await hass.async_add_executor_job(migrate_cookie_files, hass, entry)
|
|
|
|
coordinator = VerisureDataUpdateCoordinator(hass, entry=entry)
|
|
|
|
if not await coordinator.async_login():
|
|
raise ConfigEntryNotReady("Could not log in to verisure.")
|
|
|
|
await coordinator.async_config_entry_first_refresh()
|
|
|
|
hass.data.setdefault(DOMAIN, {})
|
|
hass.data[DOMAIN][entry.entry_id] = coordinator
|
|
|
|
# Set up all platforms for this device/entry.
|
|
await hass.config_entries.async_forward_entry_setups(entry, PLATFORMS)
|
|
|
|
return True
|
|
|
|
|
|
async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
|
"""Unload Verisure config entry."""
|
|
unload_ok = await hass.config_entries.async_unload_platforms(entry, PLATFORMS)
|
|
if not unload_ok:
|
|
return False
|
|
|
|
cookie_file = hass.config.path(STORAGE_DIR, f"verisure_{entry.entry_id}")
|
|
with suppress(FileNotFoundError):
|
|
await hass.async_add_executor_job(os.unlink, cookie_file)
|
|
|
|
del hass.data[DOMAIN][entry.entry_id]
|
|
|
|
if not hass.data[DOMAIN]:
|
|
del hass.data[DOMAIN]
|
|
|
|
return True
|
|
|
|
|
|
def migrate_cookie_files(hass: HomeAssistant, entry: ConfigEntry) -> None:
|
|
"""Migrate old cookie file to new location."""
|
|
cookie_file = Path(hass.config.path(STORAGE_DIR, f"verisure_{entry.unique_id}"))
|
|
if cookie_file.exists():
|
|
cookie_file.rename(
|
|
hass.config.path(STORAGE_DIR, f"verisure_{entry.data[CONF_EMAIL]}")
|
|
)
|