core/homeassistant/components/command_line/switch.py

192 lines
6.4 KiB
Python
Raw Normal View History

"""Support for custom shell commands to turn a switch on/off."""
from __future__ import annotations
import logging
from typing import TYPE_CHECKING, Any
import voluptuous as vol
from homeassistant.components.switch import (
2019-07-31 19:25:30 +00:00
ENTITY_ID_FORMAT,
PLATFORM_SCHEMA,
SwitchEntity,
2019-07-31 19:25:30 +00:00
)
from homeassistant.const import (
2019-07-31 19:25:30 +00:00
CONF_COMMAND_OFF,
CONF_COMMAND_ON,
CONF_COMMAND_STATE,
CONF_FRIENDLY_NAME,
CONF_ICON,
CONF_ICON_TEMPLATE,
CONF_NAME,
CONF_SWITCHES,
CONF_UNIQUE_ID,
CONF_VALUE_TEMPLATE,
2019-07-31 19:25:30 +00:00
)
from homeassistant.core import HomeAssistant
import homeassistant.helpers.config_validation as cv
from homeassistant.helpers.entity_platform import AddEntitiesCallback
from homeassistant.helpers.reload import async_setup_reload_service
from homeassistant.helpers.template import Template
from homeassistant.helpers.template_entity import ManualTriggerEntity
from homeassistant.helpers.typing import ConfigType, DiscoveryInfoType
2015-09-15 05:56:08 +00:00
from .const import CONF_COMMAND_TIMEOUT, DEFAULT_TIMEOUT, DOMAIN, PLATFORMS
from .utils import call_shell_with_timeout, check_output_or_log
_LOGGER = logging.getLogger(__name__)
2019-07-31 19:25:30 +00:00
SWITCH_SCHEMA = vol.Schema(
{
vol.Optional(CONF_COMMAND_OFF, default="true"): cv.string,
vol.Optional(CONF_COMMAND_ON, default="true"): cv.string,
vol.Optional(CONF_COMMAND_STATE): cv.string,
vol.Optional(CONF_FRIENDLY_NAME): cv.string,
vol.Optional(CONF_VALUE_TEMPLATE): cv.template,
vol.Optional(CONF_ICON_TEMPLATE): cv.template,
vol.Optional(CONF_COMMAND_TIMEOUT, default=DEFAULT_TIMEOUT): cv.positive_int,
vol.Optional(CONF_UNIQUE_ID): cv.string,
2019-07-31 19:25:30 +00:00
}
)
2019-07-31 19:25:30 +00:00
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend(
{vol.Required(CONF_SWITCHES): cv.schema_with_slug_keys(SWITCH_SCHEMA)}
)
async def async_setup_platform(
hass: HomeAssistant,
config: ConfigType,
async_add_entities: AddEntitiesCallback,
discovery_info: DiscoveryInfoType | None = None,
) -> None:
2016-02-23 20:06:50 +00:00
"""Find and return switches controlled by shell commands."""
await async_setup_reload_service(hass, DOMAIN, PLATFORMS)
devices: dict[str, Any] = config.get(CONF_SWITCHES, {})
switches = []
for object_id, device_config in devices.items():
trigger_entity_config = {
CONF_UNIQUE_ID: device_config.get(CONF_UNIQUE_ID),
CONF_NAME: Template(device_config.get(CONF_FRIENDLY_NAME, object_id), hass),
CONF_ICON: device_config.get(CONF_ICON_TEMPLATE),
}
value_template: Template | None = device_config.get(CONF_VALUE_TEMPLATE)
if value_template is not None:
value_template.hass = hass
switches.append(
CommandSwitch(
trigger_entity_config,
object_id,
device_config[CONF_COMMAND_ON],
device_config[CONF_COMMAND_OFF],
device_config.get(CONF_COMMAND_STATE),
2019-07-31 19:25:30 +00:00
value_template,
device_config[CONF_COMMAND_TIMEOUT],
)
)
if not switches:
_LOGGER.error("No switches added")
return
async_add_entities(switches)
class CommandSwitch(ManualTriggerEntity, SwitchEntity):
2016-03-08 12:35:39 +00:00
"""Representation a switch that can be toggled using shell commands."""
2015-12-22 00:49:39 +00:00
2019-07-31 19:25:30 +00:00
def __init__(
self,
config: ConfigType,
object_id: str,
command_on: str,
command_off: str,
command_state: str | None,
value_template: Template | None,
timeout: int,
) -> None:
2016-03-08 12:35:39 +00:00
"""Initialize the switch."""
super().__init__(self.hass, config)
self.entity_id = ENTITY_ID_FORMAT.format(object_id)
self._attr_is_on = False
self._command_on = command_on
self._command_off = command_off
2015-12-22 00:49:39 +00:00
self._command_state = command_state
self._value_template = value_template
self._timeout = timeout
self._attr_should_poll = bool(command_state)
async def _switch(self, command: str) -> bool:
2016-02-23 20:06:50 +00:00
"""Execute the actual commands."""
_LOGGER.info("Running command: %s", command)
success = (
await self.hass.async_add_executor_job(
call_shell_with_timeout, command, self._timeout
)
== 0
)
if not success:
_LOGGER.error("Command failed: %s", command)
return success
def _query_state_value(self, command: str) -> str | None:
2016-02-23 20:06:50 +00:00
"""Execute state command for return value."""
_LOGGER.info("Running state value command: %s", command)
return check_output_or_log(command, self._timeout)
2015-12-22 00:49:39 +00:00
def _query_state_code(self, command: str) -> bool:
2016-02-23 20:06:50 +00:00
"""Execute state command for return code."""
_LOGGER.info("Running state code command: %s", command)
return (
call_shell_with_timeout(command, self._timeout, log_return_code=False) == 0
)
2015-12-28 03:49:55 +00:00
@property
def assumed_state(self) -> bool:
"""Return true if we do optimistic updates."""
return self._command_state is None
def _query_state(self) -> str | int | None:
2016-02-23 20:06:50 +00:00
"""Query for state."""
if self._command_state:
if self._value_template:
return self._query_state_value(self._command_state)
return self._query_state_code(self._command_state)
if TYPE_CHECKING:
return None
2015-12-28 03:49:55 +00:00
async def async_update(self) -> None:
2016-02-23 20:06:50 +00:00
"""Update device state."""
2015-12-28 03:49:55 +00:00
if self._command_state:
payload = str(await self.hass.async_add_executor_job(self._query_state))
value = None
2015-12-28 03:49:55 +00:00
if self._value_template:
value = self._value_template.async_render_with_possible_json_value(
payload, None
)
self._attr_is_on = None
if payload or value:
self._attr_is_on = (value or payload).lower() == "true"
self._process_manual_data(payload)
2015-12-22 00:49:39 +00:00
async def async_turn_on(self, **kwargs: Any) -> None:
2016-02-23 20:06:50 +00:00
"""Turn the device on."""
if await self._switch(self._command_on) and not self._command_state:
self._attr_is_on = True
self.async_schedule_update_ha_state()
async def async_turn_off(self, **kwargs: Any) -> None:
2016-02-23 20:06:50 +00:00
"""Turn the device off."""
if await self._switch(self._command_off) and not self._command_state:
self._attr_is_on = False
self.async_schedule_update_ha_state()