123 lines
3.4 KiB
Python
123 lines
3.4 KiB
Python
"""Support for Gogogate2 garage Doors."""
|
|
from __future__ import annotations
|
|
|
|
import logging
|
|
|
|
from ismartgate.common import (
|
|
AbstractDoor,
|
|
DoorStatus,
|
|
TransitionDoorStatus,
|
|
get_configured_doors,
|
|
)
|
|
|
|
from homeassistant.components.cover import (
|
|
DEVICE_CLASS_GARAGE,
|
|
DEVICE_CLASS_GATE,
|
|
SUPPORT_CLOSE,
|
|
SUPPORT_OPEN,
|
|
CoverEntity,
|
|
)
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
|
|
from .common import (
|
|
DeviceDataUpdateCoordinator,
|
|
GoGoGate2Entity,
|
|
cover_unique_id,
|
|
get_data_update_coordinator,
|
|
)
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
config_entry: ConfigEntry,
|
|
async_add_entities: AddEntitiesCallback,
|
|
) -> None:
|
|
"""Set up the config entry."""
|
|
data_update_coordinator = get_data_update_coordinator(hass, config_entry)
|
|
|
|
async_add_entities(
|
|
[
|
|
DeviceCover(config_entry, data_update_coordinator, door)
|
|
for door in get_configured_doors(data_update_coordinator.data)
|
|
]
|
|
)
|
|
|
|
|
|
class DeviceCover(GoGoGate2Entity, CoverEntity):
|
|
"""Cover entity for goggate2."""
|
|
|
|
def __init__(
|
|
self,
|
|
config_entry: ConfigEntry,
|
|
data_update_coordinator: DeviceDataUpdateCoordinator,
|
|
door: AbstractDoor,
|
|
) -> None:
|
|
"""Initialize the object."""
|
|
unique_id = cover_unique_id(config_entry, door)
|
|
super().__init__(config_entry, data_update_coordinator, door, unique_id)
|
|
self._api = data_update_coordinator.api
|
|
self._is_available = True
|
|
|
|
@property
|
|
def name(self):
|
|
"""Return the name of the door."""
|
|
return self._get_door().name
|
|
|
|
@property
|
|
def is_closed(self):
|
|
"""Return true if cover is closed, else False."""
|
|
door_status = self._get_door_status()
|
|
if door_status == DoorStatus.OPENED:
|
|
return False
|
|
if door_status == DoorStatus.CLOSED:
|
|
return True
|
|
|
|
return None
|
|
|
|
@property
|
|
def device_class(self):
|
|
"""Return the class of this device, from component DEVICE_CLASSES."""
|
|
if self._get_door().gate:
|
|
return DEVICE_CLASS_GATE
|
|
|
|
return DEVICE_CLASS_GARAGE
|
|
|
|
@property
|
|
def supported_features(self):
|
|
"""Flag supported features."""
|
|
return SUPPORT_OPEN | SUPPORT_CLOSE
|
|
|
|
@property
|
|
def is_closing(self):
|
|
"""Return if the cover is closing or not."""
|
|
return self._get_door_status() == TransitionDoorStatus.CLOSING
|
|
|
|
@property
|
|
def is_opening(self):
|
|
"""Return if the cover is opening or not."""
|
|
return self._get_door_status() == TransitionDoorStatus.OPENING
|
|
|
|
async def async_open_cover(self, **kwargs):
|
|
"""Open the door."""
|
|
await self._api.async_open_door(self._get_door().door_id)
|
|
await self.coordinator.async_refresh()
|
|
|
|
async def async_close_cover(self, **kwargs):
|
|
"""Close the door."""
|
|
await self._api.async_close_door(self._get_door().door_id)
|
|
await self.coordinator.async_refresh()
|
|
|
|
@property
|
|
def extra_state_attributes(self):
|
|
"""Return the state attributes."""
|
|
return {"door_id": self._get_door().door_id}
|
|
|
|
def _get_door_status(self) -> AbstractDoor:
|
|
return self._api.async_get_door_statuses_from_info(self.coordinator.data)[
|
|
self._door.door_id
|
|
]
|