66 lines
2.3 KiB
Python
66 lines
2.3 KiB
Python
"""Platform for Schlage lock integration."""
|
|
from __future__ import annotations
|
|
|
|
from typing import Any
|
|
|
|
from homeassistant.components.lock import LockEntity
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.core import HomeAssistant, callback
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
|
|
from .const import DOMAIN
|
|
from .coordinator import SchlageDataUpdateCoordinator
|
|
from .entity import SchlageEntity
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
config_entry: ConfigEntry,
|
|
async_add_entities: AddEntitiesCallback,
|
|
) -> None:
|
|
"""Set up Schlage WiFi locks based on a config entry."""
|
|
coordinator: SchlageDataUpdateCoordinator = hass.data[DOMAIN][config_entry.entry_id]
|
|
async_add_entities(
|
|
SchlageLockEntity(coordinator=coordinator, device_id=device_id)
|
|
for device_id in coordinator.data.locks
|
|
)
|
|
|
|
|
|
class SchlageLockEntity(SchlageEntity, LockEntity):
|
|
"""Schlage lock entity."""
|
|
|
|
_attr_name = None
|
|
|
|
def __init__(
|
|
self, coordinator: SchlageDataUpdateCoordinator, device_id: str
|
|
) -> None:
|
|
"""Initialize a Schlage Lock."""
|
|
super().__init__(coordinator=coordinator, device_id=device_id)
|
|
self._update_attrs()
|
|
|
|
@callback
|
|
def _handle_coordinator_update(self) -> None:
|
|
"""Handle updated data from the coordinator."""
|
|
self._update_attrs()
|
|
return super()._handle_coordinator_update()
|
|
|
|
def _update_attrs(self) -> None:
|
|
"""Update our internal state attributes."""
|
|
self._attr_is_locked = self._lock.is_locked
|
|
self._attr_is_jammed = self._lock.is_jammed
|
|
# Only update changed_by if we get a valid value. This way a previous
|
|
# value will stay intact if the latest log message isn't related to a
|
|
# lock state change.
|
|
if changed_by := self._lock.last_changed_by(self._lock_data.logs):
|
|
self._attr_changed_by = changed_by
|
|
|
|
async def async_lock(self, **kwargs: Any) -> None:
|
|
"""Lock the device."""
|
|
await self.hass.async_add_executor_job(self._lock.lock)
|
|
await self.coordinator.async_request_refresh()
|
|
|
|
async def async_unlock(self, **kwargs: Any) -> None:
|
|
"""Unlock the device."""
|
|
await self.hass.async_add_executor_job(self._lock.unlock)
|
|
await self.coordinator.async_request_refresh()
|