mirror of https://github.com/home-assistant/core
58 lines
1.9 KiB
Python
58 lines
1.9 KiB
Python
"""Support for Axis devices."""
|
|
|
|
import logging
|
|
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.const import EVENT_HOMEASSISTANT_STOP
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.exceptions import ConfigEntryAuthFailed, ConfigEntryNotReady
|
|
|
|
from .const import PLATFORMS
|
|
from .errors import AuthenticationRequired, CannotConnect
|
|
from .hub import AxisHub, get_axis_api
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
type AxisConfigEntry = ConfigEntry[AxisHub]
|
|
|
|
|
|
async def async_setup_entry(hass: HomeAssistant, config_entry: AxisConfigEntry) -> bool:
|
|
"""Set up the Axis integration."""
|
|
try:
|
|
api = await get_axis_api(hass, config_entry.data)
|
|
except CannotConnect as err:
|
|
raise ConfigEntryNotReady from err
|
|
except AuthenticationRequired as err:
|
|
raise ConfigEntryAuthFailed from err
|
|
|
|
hub = config_entry.runtime_data = AxisHub(hass, config_entry, api)
|
|
await hub.async_update_device_registry()
|
|
await hass.config_entries.async_forward_entry_setups(config_entry, PLATFORMS)
|
|
hub.setup()
|
|
|
|
config_entry.add_update_listener(hub.async_new_address_callback)
|
|
config_entry.async_on_unload(hub.teardown)
|
|
config_entry.async_on_unload(
|
|
hass.bus.async_listen_once(EVENT_HOMEASSISTANT_STOP, hub.shutdown)
|
|
)
|
|
|
|
return True
|
|
|
|
|
|
async def async_unload_entry(hass: HomeAssistant, config_entry: ConfigEntry) -> bool:
|
|
"""Unload Axis device config entry."""
|
|
return await hass.config_entries.async_unload_platforms(config_entry, PLATFORMS)
|
|
|
|
|
|
async def async_migrate_entry(hass: HomeAssistant, config_entry: ConfigEntry) -> bool:
|
|
"""Migrate old entry."""
|
|
_LOGGER.debug("Migrating from version %s", config_entry.version)
|
|
|
|
if config_entry.version != 3:
|
|
# Home Assistant 2023.2
|
|
hass.config_entries.async_update_entry(config_entry, version=3)
|
|
|
|
_LOGGER.debug("Migration to version %s successful", config_entry.version)
|
|
|
|
return True
|