mirror of https://github.com/home-assistant/core
41 lines
1.3 KiB
Python
41 lines
1.3 KiB
Python
"""The D-Link Power Plug integration."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from pyW215.pyW215 import SmartPlug
|
|
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.const import CONF_HOST, CONF_PASSWORD, CONF_USERNAME, Platform
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.exceptions import ConfigEntryNotReady
|
|
|
|
from .const import CONF_USE_LEGACY_PROTOCOL
|
|
from .data import SmartPlugData
|
|
|
|
type DLinkConfigEntry = ConfigEntry[SmartPlugData]
|
|
|
|
PLATFORMS = [Platform.SWITCH]
|
|
|
|
|
|
async def async_setup_entry(hass: HomeAssistant, entry: DLinkConfigEntry) -> bool:
|
|
"""Set up D-Link Power Plug from a config entry."""
|
|
smartplug = await hass.async_add_executor_job(
|
|
SmartPlug,
|
|
entry.data[CONF_HOST],
|
|
entry.data[CONF_PASSWORD],
|
|
entry.data[CONF_USERNAME],
|
|
entry.data[CONF_USE_LEGACY_PROTOCOL],
|
|
)
|
|
if not smartplug.authenticated and smartplug.use_legacy_protocol:
|
|
raise ConfigEntryNotReady("Cannot connect/authenticate")
|
|
|
|
entry.runtime_data = SmartPlugData(smartplug)
|
|
await hass.config_entries.async_forward_entry_setups(entry, PLATFORMS)
|
|
|
|
return True
|
|
|
|
|
|
async def async_unload_entry(hass: HomeAssistant, entry: DLinkConfigEntry) -> bool:
|
|
"""Unload a config entry."""
|
|
return await hass.config_entries.async_unload_platforms(entry, PLATFORMS)
|