mirror of
https://github.com/home-assistant/core.git
synced 2026-05-22 00:10:16 +01:00
8c8a863867
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>
47 lines
1.4 KiB
Python
47 lines
1.4 KiB
Python
"""The PTDevices integration."""
|
|
|
|
from aioptdevices.configuration import Configuration
|
|
from aioptdevices.interface import Interface
|
|
|
|
from homeassistant.const import CONF_API_TOKEN, Platform
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.aiohttp_client import async_get_clientsession
|
|
|
|
from .const import DEFAULT_URL
|
|
from .coordinator import PTDevicesConfigEntry, PTDevicesCoordinator
|
|
|
|
_PLATFORMS: list[Platform] = [
|
|
Platform.SENSOR,
|
|
]
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant, config_entry: PTDevicesConfigEntry
|
|
) -> bool:
|
|
"""Set up PTDevices from a config entry."""
|
|
auth_token: str = config_entry.data[CONF_API_TOKEN]
|
|
session = async_get_clientsession(hass)
|
|
ptdevices_interface = Interface(
|
|
Configuration(
|
|
auth_token=auth_token,
|
|
device_id="*", # Retrieve data for all devices in account
|
|
url=DEFAULT_URL,
|
|
session=session,
|
|
)
|
|
)
|
|
|
|
config_entry.runtime_data = coordinator = PTDevicesCoordinator(
|
|
hass,
|
|
config_entry,
|
|
ptdevices_interface,
|
|
)
|
|
await coordinator.async_config_entry_first_refresh()
|
|
await hass.config_entries.async_forward_entry_setups(config_entry, _PLATFORMS)
|
|
|
|
return True
|
|
|
|
|
|
async def async_unload_entry(hass: HomeAssistant, entry: PTDevicesConfigEntry) -> bool:
|
|
"""Unload a config entry."""
|
|
return await hass.config_entries.async_unload_platforms(entry, _PLATFORMS)
|