Files
HomeAssistantVS/custom_components/spook/ectoplasms/homeassistant/services/enable_device.py
T
2026-07-20 22:52:35 -04:00

31 lines
960 B
Python

"""Spook - Your homie."""
from __future__ import annotations
from typing import TYPE_CHECKING
import voluptuous as vol
from homeassistant.components.homeassistant import DOMAIN
from homeassistant.helpers import config_validation as cv, device_registry as dr
from ....services import AbstractSpookAdminService
from ..device import async_enable_device_and_parent
if TYPE_CHECKING:
from homeassistant.core import ServiceCall
class SpookService(AbstractSpookAdminService):
"""Home Assistant Core integration service to enable a device."""
domain = DOMAIN
service = "enable_device"
schema = {vol.Required("device_id"): vol.All(cv.ensure_list, [cv.string])}
async def async_handle_service(self, call: ServiceCall) -> None:
"""Handle the service call."""
device_registry = dr.async_get(self.hass)
for device_id in call.data["device_id"]:
async_enable_device_and_parent(device_registry, device_id)