36 lines
1.0 KiB
Python
36 lines
1.0 KiB
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, 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 rename an entity."""
|
|
|
|
domain = DOMAIN
|
|
service = "rename_entity"
|
|
schema = {
|
|
vol.Required("name"): cv.string,
|
|
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,
|
|
name=call.data["name"],
|
|
)
|