mirror of
https://github.com/home-assistant/core.git
synced 2025-11-14 05:20:17 +00:00
133 lines
4.3 KiB
Python
133 lines
4.3 KiB
Python
"""The Ubiquiti airOS integration."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import logging
|
|
|
|
from airos.airos8 import AirOS8
|
|
|
|
from homeassistant.const import (
|
|
CONF_HOST,
|
|
CONF_PASSWORD,
|
|
CONF_SSL,
|
|
CONF_USERNAME,
|
|
CONF_VERIFY_SSL,
|
|
Platform,
|
|
)
|
|
from homeassistant.core import HomeAssistant, callback
|
|
from homeassistant.helpers import device_registry as dr, entity_registry as er
|
|
from homeassistant.helpers.aiohttp_client import async_get_clientsession
|
|
|
|
from .const import DEFAULT_SSL, DEFAULT_VERIFY_SSL, DOMAIN, SECTION_ADVANCED_SETTINGS
|
|
from .coordinator import AirOSConfigEntry, AirOSDataUpdateCoordinator
|
|
|
|
_PLATFORMS: list[Platform] = [
|
|
Platform.BINARY_SENSOR,
|
|
Platform.SENSOR,
|
|
]
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
async def async_setup_entry(hass: HomeAssistant, entry: AirOSConfigEntry) -> bool:
|
|
"""Set up Ubiquiti airOS from a config entry."""
|
|
|
|
# By default airOS 8 comes with self-signed SSL certificates,
|
|
# with no option in the web UI to change or upload a custom certificate.
|
|
session = async_get_clientsession(
|
|
hass, verify_ssl=entry.data[SECTION_ADVANCED_SETTINGS][CONF_VERIFY_SSL]
|
|
)
|
|
|
|
airos_device = AirOS8(
|
|
host=entry.data[CONF_HOST],
|
|
username=entry.data[CONF_USERNAME],
|
|
password=entry.data[CONF_PASSWORD],
|
|
session=session,
|
|
use_ssl=entry.data[SECTION_ADVANCED_SETTINGS][CONF_SSL],
|
|
)
|
|
|
|
coordinator = AirOSDataUpdateCoordinator(hass, entry, airos_device)
|
|
await coordinator.async_config_entry_first_refresh()
|
|
|
|
entry.runtime_data = coordinator
|
|
|
|
await hass.config_entries.async_forward_entry_setups(entry, _PLATFORMS)
|
|
|
|
return True
|
|
|
|
|
|
async def async_migrate_entry(hass: HomeAssistant, entry: AirOSConfigEntry) -> bool:
|
|
"""Migrate old config entry."""
|
|
|
|
# This means the user has downgraded from a future version
|
|
if entry.version > 2:
|
|
return False
|
|
|
|
# 1.1 Migrate config_entry to add advanced ssl settings
|
|
if entry.version == 1 and entry.minor_version == 1:
|
|
new_minor_version = 2
|
|
new_data = {**entry.data}
|
|
advanced_data = {
|
|
CONF_SSL: DEFAULT_SSL,
|
|
CONF_VERIFY_SSL: DEFAULT_VERIFY_SSL,
|
|
}
|
|
new_data[SECTION_ADVANCED_SETTINGS] = advanced_data
|
|
|
|
hass.config_entries.async_update_entry(
|
|
entry,
|
|
data=new_data,
|
|
minor_version=new_minor_version,
|
|
)
|
|
|
|
# 2.1 Migrate binary_sensor entity unique_id from device_id to mac_address
|
|
# Step 1 - migrate binary_sensor entity unique_id
|
|
# Step 2 - migrate device entity identifier
|
|
if entry.version == 1:
|
|
new_version = 2
|
|
new_minor_version = 1
|
|
|
|
mac_adress = dr.format_mac(entry.unique_id)
|
|
|
|
device_registry = dr.async_get(hass)
|
|
if device_entry := device_registry.async_get_device(
|
|
connections={(dr.CONNECTION_NETWORK_MAC, mac_adress)}
|
|
):
|
|
old_device_id = next(
|
|
(
|
|
device_id
|
|
for domain, device_id in device_entry.identifiers
|
|
if domain == DOMAIN
|
|
),
|
|
)
|
|
|
|
@callback
|
|
def update_unique_id(
|
|
entity_entry: er.RegistryEntry,
|
|
) -> dict[str, str] | None:
|
|
"""Update unique id from device_id to mac address."""
|
|
if old_device_id and entity_entry.unique_id.startswith(old_device_id):
|
|
suffix = entity_entry.unique_id.removeprefix(old_device_id)
|
|
new_unique_id = f"{mac_adress}{suffix}"
|
|
return {"new_unique_id": new_unique_id}
|
|
return None
|
|
|
|
await er.async_migrate_entries(hass, entry.entry_id, update_unique_id)
|
|
|
|
new_identifiers = device_entry.identifiers.copy()
|
|
new_identifiers.discard((DOMAIN, old_device_id))
|
|
new_identifiers.add((DOMAIN, mac_adress))
|
|
device_registry.async_update_device(
|
|
device_entry.id, new_identifiers=new_identifiers
|
|
)
|
|
|
|
hass.config_entries.async_update_entry(
|
|
entry, version=new_version, minor_version=new_minor_version
|
|
)
|
|
|
|
return True
|
|
|
|
|
|
async def async_unload_entry(hass: HomeAssistant, entry: AirOSConfigEntry) -> bool:
|
|
"""Unload a config entry."""
|
|
return await hass.config_entries.async_unload_platforms(entry, _PLATFORMS)
|