"""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, entity_registry as er from ....services import AbstractSpookAdminService if TYPE_CHECKING: from homeassistant.core import ServiceCall class SpookService(AbstractSpookAdminService): """Home Assistant Core integration service to disable an entity.""" domain = DOMAIN service = "disable_entity" schema = {vol.Required("entity_id"): vol.All(cv.ensure_list, [cv.string])} async def async_handle_service(self, call: ServiceCall) -> None: """Handle the service call.""" entity_registry = er.async_get(self.hass) for entity_id in call.data["entity_id"]: entity_registry.async_update_entity( entity_id=entity_id, disabled_by=er.RegistryEntryDisabler.USER, )