mirror of
https://github.com/home-assistant/core.git
synced 2025-07-25 14:17:45 +00:00

Co-authored-by: 乾启 <18442047+tsutsuku@users.noreply.github.com> Co-authored-by: dengweijun <dengweijunben@gmail.com> Co-authored-by: dengweijun <mengzi.deng@tuya.com> Co-authored-by: erchuan <jie.zheng@tuya.com> Co-authored-by: erchuan <erchuan365@outlook.com> Co-authored-by: Paulus Schoutsen <balloob@gmail.com>
209 lines
6.7 KiB
Python
209 lines
6.7 KiB
Python
#!/usr/bin/env python3
|
|
"""Support for Tuya Smart devices."""
|
|
|
|
import itertools
|
|
import logging
|
|
|
|
from tuya_iot import (
|
|
ProjectType,
|
|
TuyaDevice,
|
|
TuyaDeviceListener,
|
|
TuyaDeviceManager,
|
|
TuyaHomeManager,
|
|
TuyaOpenAPI,
|
|
TuyaOpenMQ,
|
|
)
|
|
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.core import HomeAssistant, callback
|
|
from homeassistant.helpers import device_registry
|
|
from homeassistant.helpers.dispatcher import dispatcher_send
|
|
|
|
from .const import (
|
|
CONF_ACCESS_ID,
|
|
CONF_ACCESS_SECRET,
|
|
CONF_APP_TYPE,
|
|
CONF_COUNTRY_CODE,
|
|
CONF_ENDPOINT,
|
|
CONF_PASSWORD,
|
|
CONF_PROJECT_TYPE,
|
|
CONF_USERNAME,
|
|
DOMAIN,
|
|
PLATFORMS,
|
|
TUYA_DEVICE_MANAGER,
|
|
TUYA_DISCOVERY_NEW,
|
|
TUYA_HA_DEVICES,
|
|
TUYA_HA_SIGNAL_UPDATE_ENTITY,
|
|
TUYA_HA_TUYA_MAP,
|
|
TUYA_HOME_MANAGER,
|
|
TUYA_MQTT_LISTENER,
|
|
)
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
|
"""Async setup hass config entry."""
|
|
|
|
_LOGGER.debug("tuya.__init__.async_setup_entry-->%s", entry.data)
|
|
|
|
hass.data[DOMAIN] = {entry.entry_id: {TUYA_HA_TUYA_MAP: {}, TUYA_HA_DEVICES: set()}}
|
|
|
|
success = await _init_tuya_sdk(hass, entry)
|
|
if not success:
|
|
return False
|
|
|
|
return True
|
|
|
|
|
|
async def _init_tuya_sdk(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
|
project_type = ProjectType(entry.data[CONF_PROJECT_TYPE])
|
|
api = TuyaOpenAPI(
|
|
entry.data[CONF_ENDPOINT],
|
|
entry.data[CONF_ACCESS_ID],
|
|
entry.data[CONF_ACCESS_SECRET],
|
|
project_type,
|
|
)
|
|
|
|
api.set_dev_channel("hass")
|
|
|
|
if project_type == ProjectType.INDUSTY_SOLUTIONS:
|
|
response = await hass.async_add_executor_job(
|
|
api.login, entry.data[CONF_USERNAME], entry.data[CONF_PASSWORD]
|
|
)
|
|
else:
|
|
response = await hass.async_add_executor_job(
|
|
api.login,
|
|
entry.data[CONF_USERNAME],
|
|
entry.data[CONF_PASSWORD],
|
|
entry.data[CONF_COUNTRY_CODE],
|
|
entry.data[CONF_APP_TYPE],
|
|
)
|
|
|
|
if response.get("success", False) is False:
|
|
_LOGGER.error("Tuya login error response: %s", response)
|
|
return False
|
|
|
|
tuya_mq = TuyaOpenMQ(api)
|
|
tuya_mq.start()
|
|
|
|
device_manager = TuyaDeviceManager(api, tuya_mq)
|
|
|
|
# Get device list
|
|
home_manager = TuyaHomeManager(api, tuya_mq, device_manager)
|
|
await hass.async_add_executor_job(home_manager.update_device_cache)
|
|
hass.data[DOMAIN][entry.entry_id][TUYA_HOME_MANAGER] = home_manager
|
|
|
|
listener = DeviceListener(hass, entry)
|
|
hass.data[DOMAIN][entry.entry_id][TUYA_MQTT_LISTENER] = listener
|
|
device_manager.add_device_listener(listener)
|
|
hass.data[DOMAIN][entry.entry_id][TUYA_DEVICE_MANAGER] = device_manager
|
|
|
|
# Clean up device entities
|
|
await cleanup_device_registry(hass, entry)
|
|
|
|
_LOGGER.debug("init support type->%s", PLATFORMS)
|
|
|
|
hass.config_entries.async_setup_platforms(entry, PLATFORMS)
|
|
|
|
return True
|
|
|
|
|
|
async def cleanup_device_registry(hass: HomeAssistant, entry: ConfigEntry) -> None:
|
|
"""Remove deleted device registry entry if there are no remaining entities."""
|
|
|
|
device_registry_object = device_registry.async_get(hass)
|
|
device_manager = hass.data[DOMAIN][entry.entry_id][TUYA_DEVICE_MANAGER]
|
|
|
|
for dev_id, device_entry in list(device_registry_object.devices.items()):
|
|
for item in device_entry.identifiers:
|
|
if DOMAIN == item[0] and item[1] not in device_manager.device_map:
|
|
device_registry_object.async_remove_device(dev_id)
|
|
break
|
|
|
|
|
|
@callback
|
|
def async_remove_hass_device(hass: HomeAssistant, device_id: str) -> None:
|
|
"""Remove device from hass cache."""
|
|
device_registry_object = device_registry.async_get(hass)
|
|
for device_entry in list(device_registry_object.devices.values()):
|
|
if device_id in list(device_entry.identifiers)[0]:
|
|
device_registry_object.async_remove_device(device_entry.id)
|
|
|
|
|
|
async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
|
"""Unloading the Tuya platforms."""
|
|
_LOGGER.debug("integration unload")
|
|
unload = await hass.config_entries.async_unload_platforms(entry, PLATFORMS)
|
|
if unload:
|
|
device_manager = hass.data[DOMAIN][entry.entry_id][TUYA_DEVICE_MANAGER]
|
|
device_manager.mq.stop()
|
|
device_manager.remove_device_listener(
|
|
hass.data[DOMAIN][entry.entry_id][TUYA_MQTT_LISTENER]
|
|
)
|
|
|
|
hass.data.pop(DOMAIN)
|
|
|
|
return unload
|
|
|
|
|
|
class DeviceListener(TuyaDeviceListener):
|
|
"""Device Update Listener."""
|
|
|
|
def __init__(self, hass: HomeAssistant, entry: ConfigEntry) -> None:
|
|
"""Init DeviceListener."""
|
|
|
|
self.hass = hass
|
|
self.entry = entry
|
|
|
|
def update_device(self, device: TuyaDevice) -> None:
|
|
"""Update device status."""
|
|
if device.id in self.hass.data[DOMAIN][self.entry.entry_id][TUYA_HA_DEVICES]:
|
|
_LOGGER.debug(
|
|
"_update-->%s;->>%s",
|
|
self,
|
|
device.id,
|
|
)
|
|
dispatcher_send(self.hass, f"{TUYA_HA_SIGNAL_UPDATE_ENTITY}_{device.id}")
|
|
|
|
def add_device(self, device: TuyaDevice) -> None:
|
|
"""Add device added listener."""
|
|
device_add = False
|
|
|
|
if device.category in itertools.chain(
|
|
*self.hass.data[DOMAIN][self.entry.entry_id][TUYA_HA_TUYA_MAP].values()
|
|
):
|
|
ha_tuya_map = self.hass.data[DOMAIN][self.entry.entry_id][TUYA_HA_TUYA_MAP]
|
|
self.hass.add_job(async_remove_hass_device, self.hass, device.id)
|
|
|
|
for domain, tuya_list in ha_tuya_map.items():
|
|
if device.category in tuya_list:
|
|
device_add = True
|
|
_LOGGER.debug(
|
|
"Add device category->%s; domain-> %s",
|
|
device.category,
|
|
domain,
|
|
)
|
|
self.hass.data[DOMAIN][self.entry.entry_id][TUYA_HA_DEVICES].add(
|
|
device.id
|
|
)
|
|
dispatcher_send(
|
|
self.hass, TUYA_DISCOVERY_NEW.format(domain), [device.id]
|
|
)
|
|
|
|
if device_add:
|
|
device_manager = self.hass.data[DOMAIN][self.entry.entry_id][
|
|
TUYA_DEVICE_MANAGER
|
|
]
|
|
device_manager.mq.stop()
|
|
tuya_mq = TuyaOpenMQ(device_manager.api)
|
|
tuya_mq.start()
|
|
|
|
device_manager.mq = tuya_mq
|
|
tuya_mq.add_message_listener(device_manager.on_message)
|
|
|
|
def remove_device(self, device_id: str) -> None:
|
|
"""Add device removed listener."""
|
|
_LOGGER.debug("tuya remove device:%s", device_id)
|
|
self.hass.add_job(async_remove_hass_device, self.hass, device_id)
|