mirror of https://github.com/home-assistant/core
51 lines
1.5 KiB
Python
51 lines
1.5 KiB
Python
"""The Wallbox integration."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from wallbox import Wallbox
|
|
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.const import CONF_PASSWORD, CONF_USERNAME, Platform
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.exceptions import ConfigEntryAuthFailed
|
|
|
|
from .const import CONF_STATION, DOMAIN, UPDATE_INTERVAL
|
|
from .coordinator import InvalidAuth, WallboxCoordinator, async_validate_input
|
|
|
|
PLATFORMS = [Platform.LOCK, Platform.NUMBER, Platform.SENSOR, Platform.SWITCH]
|
|
|
|
|
|
async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
|
"""Set up Wallbox from a config entry."""
|
|
wallbox = Wallbox(
|
|
entry.data[CONF_USERNAME],
|
|
entry.data[CONF_PASSWORD],
|
|
jwtTokenDrift=UPDATE_INTERVAL,
|
|
)
|
|
try:
|
|
await async_validate_input(hass, wallbox)
|
|
except InvalidAuth as ex:
|
|
raise ConfigEntryAuthFailed from ex
|
|
|
|
wallbox_coordinator = WallboxCoordinator(
|
|
entry.data[CONF_STATION],
|
|
wallbox,
|
|
hass,
|
|
)
|
|
await wallbox_coordinator.async_config_entry_first_refresh()
|
|
|
|
hass.data.setdefault(DOMAIN, {})[entry.entry_id] = wallbox_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."""
|
|
unload_ok = await hass.config_entries.async_unload_platforms(entry, PLATFORMS)
|
|
if unload_ok:
|
|
hass.data[DOMAIN].pop(entry.entry_id)
|
|
|
|
return unload_ok
|