53 lines
1.4 KiB
Python
53 lines
1.4 KiB
Python
"""The Wallbox integration."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from wallbox import Wallbox
|
|
|
|
from homeassistant.const import CONF_PASSWORD, CONF_USERNAME, Platform
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.exceptions import ConfigEntryAuthFailed
|
|
|
|
from .const import UPDATE_INTERVAL
|
|
from .coordinator import (
|
|
InvalidAuth,
|
|
WallboxConfigEntry,
|
|
WallboxCoordinator,
|
|
async_validate_input,
|
|
)
|
|
|
|
PLATFORMS = [
|
|
Platform.LOCK,
|
|
Platform.NUMBER,
|
|
Platform.SELECT,
|
|
Platform.SENSOR,
|
|
Platform.SWITCH,
|
|
]
|
|
|
|
|
|
async def async_setup_entry(hass: HomeAssistant, entry: WallboxConfigEntry) -> 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(hass, entry, wallbox)
|
|
await wallbox_coordinator.async_config_entry_first_refresh()
|
|
|
|
entry.runtime_data = wallbox_coordinator
|
|
|
|
await hass.config_entries.async_forward_entry_setups(entry, PLATFORMS)
|
|
|
|
return True
|
|
|
|
|
|
async def async_unload_entry(hass: HomeAssistant, entry: WallboxConfigEntry) -> bool:
|
|
"""Unload a config entry."""
|
|
return await hass.config_entries.async_unload_platforms(entry, PLATFORMS)
|