54 lines
1.6 KiB
Python
54 lines
1.6 KiB
Python
"""Platform for Mazda lock integration."""
|
|
from homeassistant.components.lock import LockEntity
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
|
|
|
from . import MazdaEntity
|
|
from .const import DATA_CLIENT, DATA_COORDINATOR, DOMAIN
|
|
|
|
|
|
async def async_setup_entry(
|
|
hass: HomeAssistant,
|
|
config_entry: ConfigEntry,
|
|
async_add_entities: AddEntitiesCallback,
|
|
) -> None:
|
|
"""Set up the lock platform."""
|
|
client = hass.data[DOMAIN][config_entry.entry_id][DATA_CLIENT]
|
|
coordinator = hass.data[DOMAIN][config_entry.entry_id][DATA_COORDINATOR]
|
|
|
|
entities = []
|
|
|
|
for index, _ in enumerate(coordinator.data):
|
|
entities.append(MazdaLock(client, coordinator, index))
|
|
|
|
async_add_entities(entities)
|
|
|
|
|
|
class MazdaLock(MazdaEntity, LockEntity):
|
|
"""Class for the lock."""
|
|
|
|
def __init__(self, client, coordinator, index) -> None:
|
|
"""Initialize Mazda lock."""
|
|
super().__init__(client, coordinator, index)
|
|
|
|
self._attr_name = f"{self.vehicle_name} Lock"
|
|
self._attr_unique_id = self.vin
|
|
|
|
@property
|
|
def is_locked(self):
|
|
"""Return true if lock is locked."""
|
|
return self.client.get_assumed_lock_state(self.vehicle_id)
|
|
|
|
async def async_lock(self, **kwargs):
|
|
"""Lock the vehicle doors."""
|
|
await self.client.lock_doors(self.vehicle_id)
|
|
|
|
self.async_write_ha_state()
|
|
|
|
async def async_unlock(self, **kwargs):
|
|
"""Unlock the vehicle doors."""
|
|
await self.client.unlock_doors(self.vehicle_id)
|
|
|
|
self.async_write_ha_state()
|