-
-
Notifications
You must be signed in to change notification settings - Fork 37.5k
Add device trigger support to sensor entities #27133
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
emontnemery
merged 3 commits into
home-assistant:dev
from
emontnemery:device_trigger_sensor
Oct 3, 2019
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,145 @@ | ||
| """Provides device triggers for sensors.""" | ||
| import voluptuous as vol | ||
|
|
||
| import homeassistant.components.automation.numeric_state as numeric_state_automation | ||
| from homeassistant.components.device_automation import TRIGGER_BASE_SCHEMA | ||
| from homeassistant.const import ( | ||
| ATTR_DEVICE_CLASS, | ||
| CONF_ABOVE, | ||
| CONF_BELOW, | ||
| CONF_ENTITY_ID, | ||
| CONF_FOR, | ||
| CONF_TYPE, | ||
| DEVICE_CLASS_BATTERY, | ||
| DEVICE_CLASS_HUMIDITY, | ||
| DEVICE_CLASS_ILLUMINANCE, | ||
| DEVICE_CLASS_POWER, | ||
| DEVICE_CLASS_PRESSURE, | ||
| DEVICE_CLASS_SIGNAL_STRENGTH, | ||
| DEVICE_CLASS_TEMPERATURE, | ||
| DEVICE_CLASS_TIMESTAMP, | ||
| ) | ||
| from homeassistant.helpers.entity_registry import async_entries_for_device | ||
| from homeassistant.helpers import config_validation as cv | ||
|
|
||
| from . import DOMAIN | ||
|
|
||
|
|
||
| # mypy: allow-untyped-defs, no-check-untyped-defs | ||
|
|
||
| DEVICE_CLASS_NONE = "none" | ||
|
|
||
| CONF_BATTERY_LEVEL = "battery_level" | ||
| CONF_HUMIDITY = "humidity" | ||
| CONF_ILLUMINANCE = "illuminance" | ||
| CONF_POWER = "power" | ||
| CONF_PRESSURE = "pressure" | ||
| CONF_SIGNAL_STRENGTH = "signal_strength" | ||
| CONF_TEMPERATURE = "temperature" | ||
| CONF_TIMESTAMP = "timestamp" | ||
| CONF_VALUE = "value" | ||
|
|
||
| ENTITY_TRIGGERS = { | ||
| DEVICE_CLASS_BATTERY: [{CONF_TYPE: CONF_BATTERY_LEVEL}], | ||
| DEVICE_CLASS_HUMIDITY: [{CONF_TYPE: CONF_HUMIDITY}], | ||
| DEVICE_CLASS_ILLUMINANCE: [{CONF_TYPE: CONF_ILLUMINANCE}], | ||
| DEVICE_CLASS_POWER: [{CONF_TYPE: CONF_POWER}], | ||
| DEVICE_CLASS_PRESSURE: [{CONF_TYPE: CONF_PRESSURE}], | ||
| DEVICE_CLASS_SIGNAL_STRENGTH: [{CONF_TYPE: CONF_SIGNAL_STRENGTH}], | ||
| DEVICE_CLASS_TEMPERATURE: [{CONF_TYPE: CONF_TEMPERATURE}], | ||
| DEVICE_CLASS_TIMESTAMP: [{CONF_TYPE: CONF_TIMESTAMP}], | ||
| DEVICE_CLASS_NONE: [{CONF_TYPE: CONF_VALUE}], | ||
| } | ||
|
|
||
|
|
||
| TRIGGER_SCHEMA = vol.All( | ||
| TRIGGER_BASE_SCHEMA.extend( | ||
| { | ||
| vol.Required(CONF_ENTITY_ID): cv.entity_id, | ||
| vol.Required(CONF_TYPE): vol.In( | ||
| [ | ||
| CONF_BATTERY_LEVEL, | ||
| CONF_HUMIDITY, | ||
| CONF_ILLUMINANCE, | ||
| CONF_POWER, | ||
| CONF_PRESSURE, | ||
| CONF_SIGNAL_STRENGTH, | ||
| CONF_TEMPERATURE, | ||
| CONF_TIMESTAMP, | ||
| CONF_VALUE, | ||
| ] | ||
| ), | ||
| vol.Optional(CONF_BELOW): vol.Any(vol.Coerce(float)), | ||
| vol.Optional(CONF_ABOVE): vol.Any(vol.Coerce(float)), | ||
| vol.Optional(CONF_FOR): vol.Any( | ||
| vol.All(cv.time_period, cv.positive_timedelta), | ||
| cv.template, | ||
| cv.template_complex, | ||
| ), | ||
| vol.Optional(CONF_FOR): cv.positive_time_period_dict, | ||
| } | ||
| ), | ||
| cv.has_at_least_one_key(CONF_BELOW, CONF_ABOVE), | ||
| ) | ||
|
|
||
|
|
||
| async def async_attach_trigger(hass, config, action, automation_info): | ||
| """Listen for state changes based on configuration.""" | ||
| numeric_state_config = { | ||
| numeric_state_automation.CONF_ENTITY_ID: config[CONF_ENTITY_ID], | ||
| numeric_state_automation.CONF_ABOVE: config.get(CONF_ABOVE), | ||
| numeric_state_automation.CONF_BELOW: config.get(CONF_BELOW), | ||
| numeric_state_automation.CONF_FOR: config.get(CONF_FOR), | ||
| } | ||
| if CONF_FOR in config: | ||
| numeric_state_config[CONF_FOR] = config[CONF_FOR] | ||
|
|
||
| return await numeric_state_automation.async_attach_trigger( | ||
| hass, numeric_state_config, action, automation_info, platform_type="device" | ||
| ) | ||
|
|
||
|
|
||
| async def async_get_triggers(hass, device_id): | ||
| """List device triggers.""" | ||
| triggers = [] | ||
| entity_registry = await hass.helpers.entity_registry.async_get_registry() | ||
|
|
||
| entries = [ | ||
| entry | ||
| for entry in async_entries_for_device(entity_registry, device_id) | ||
| if entry.domain == DOMAIN | ||
| ] | ||
|
|
||
| for entry in entries: | ||
| device_class = DEVICE_CLASS_NONE | ||
| state = hass.states.get(entry.entity_id) | ||
| if state: | ||
| device_class = state.attributes.get(ATTR_DEVICE_CLASS) | ||
|
|
||
| templates = ENTITY_TRIGGERS.get( | ||
| device_class, ENTITY_TRIGGERS[DEVICE_CLASS_NONE] | ||
| ) | ||
|
|
||
| triggers.extend( | ||
| ( | ||
| { | ||
| **automation, | ||
| "platform": "device", | ||
| "device_id": device_id, | ||
| "entity_id": entry.entity_id, | ||
| "domain": DOMAIN, | ||
| } | ||
| for automation in templates | ||
| ) | ||
| ) | ||
|
|
||
| return triggers | ||
|
|
||
|
|
||
| async def async_get_trigger_capabilities(hass, trigger): | ||
| """List trigger capabilities.""" | ||
| return { | ||
| "extra_fields": vol.Schema( | ||
| {vol.Optional(CONF_FOR): cv.positive_time_period_dict} | ||
| ) | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| { | ||
| "device_automation": { | ||
| "condition_type": { | ||
| "is_battery_level": "{entity_name} battery level", | ||
| "is_humidity": "{entity_name} humidity", | ||
| "is_illuminance": "{entity_name} illuminance", | ||
| "is_power": "{entity_name} power", | ||
| "is_pressure": "{entity_name} pressure", | ||
| "is_signal_strength": "{entity_name} signal strength", | ||
| "is_temperature": "{entity_name} temperature", | ||
| "is_timestamp": "{entity_name} timestamp", | ||
| "is_value": "{entity_name} value" | ||
| }, | ||
| "trigger_type": { | ||
| "battery_level": "{entity_name} battery level", | ||
| "humidity": "{entity_name} humidity", | ||
| "illuminance": "{entity_name} illuminance", | ||
| "power": "{entity_name} power", | ||
| "pressure": "{entity_name} pressure", | ||
| "signal_strength": "{entity_name} signal strength", | ||
| "temperature": "{entity_name} temperature", | ||
| "timestamp": "{entity_name} timestamp", | ||
| "value": "{entity_name} value" | ||
| } | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added to compare lists with different order since the order of automations is not deterministic when we have automations from different domains.