2014-12-07 07:57:02 +00:00
|
|
|
"""
|
|
|
|
Helper methods for components within Home Assistant.
|
|
|
|
"""
|
2014-12-14 08:32:20 +00:00
|
|
|
from datetime import datetime
|
|
|
|
|
2014-12-07 07:57:02 +00:00
|
|
|
from homeassistant.loader import get_component
|
2015-03-06 08:04:32 +00:00
|
|
|
from homeassistant.const import ATTR_ENTITY_ID, CONF_PLATFORM
|
2015-01-06 07:02:41 +00:00
|
|
|
from homeassistant.util import ensure_unique_string, slugify
|
2014-12-07 07:57:02 +00:00
|
|
|
|
2015-03-06 07:18:22 +00:00
|
|
|
# Deprecated 3/5/2015 - Moved to homeassistant.helpers.device
|
|
|
|
# pylint: disable=unused-import
|
|
|
|
from .device import Device, ToggleDevice # noqa
|
|
|
|
|
2014-12-07 07:57:02 +00:00
|
|
|
|
2015-01-19 08:02:25 +00:00
|
|
|
def generate_entity_id(entity_id_format, name, current_ids=None, hass=None):
|
2015-01-20 05:39:24 +00:00
|
|
|
""" Generate a unique entity ID based on given entity IDs or used ids. """
|
2015-01-19 08:02:25 +00:00
|
|
|
if current_ids is None:
|
|
|
|
if hass is None:
|
|
|
|
raise RuntimeError("Missing required parameter currentids or hass")
|
|
|
|
|
|
|
|
current_ids = hass.states.entity_ids()
|
|
|
|
|
|
|
|
return ensure_unique_string(
|
2015-02-06 08:17:30 +00:00
|
|
|
entity_id_format.format(slugify(name.lower())), current_ids)
|
2015-01-19 08:02:25 +00:00
|
|
|
|
|
|
|
|
2014-12-07 07:57:02 +00:00
|
|
|
def extract_entity_ids(hass, service):
|
|
|
|
"""
|
|
|
|
Helper method to extract a list of entity ids from a service call.
|
|
|
|
Will convert group entity ids to the entity ids it represents.
|
|
|
|
"""
|
2015-02-09 06:18:54 +00:00
|
|
|
if not (service.data and ATTR_ENTITY_ID in service.data):
|
|
|
|
return []
|
2014-12-07 07:57:02 +00:00
|
|
|
|
2015-02-09 06:18:54 +00:00
|
|
|
group = get_component('group')
|
2014-12-07 07:57:02 +00:00
|
|
|
|
2015-02-09 06:18:54 +00:00
|
|
|
# Entity ID attr can be a list or a string
|
|
|
|
service_ent_id = service.data[ATTR_ENTITY_ID]
|
2014-12-07 07:57:02 +00:00
|
|
|
|
2015-02-09 06:18:54 +00:00
|
|
|
if isinstance(service_ent_id, str):
|
|
|
|
return group.expand_entity_ids(hass, [service_ent_id.lower()])
|
2014-12-07 07:57:02 +00:00
|
|
|
|
2015-02-09 06:18:54 +00:00
|
|
|
return [ent_id for ent_id in group.expand_entity_ids(hass, service_ent_id)]
|
2014-12-07 07:57:02 +00:00
|
|
|
|
|
|
|
|
2014-12-14 08:32:20 +00:00
|
|
|
# pylint: disable=too-few-public-methods, attribute-defined-outside-init
|
|
|
|
class TrackStates(object):
|
|
|
|
"""
|
|
|
|
Records the time when the with-block is entered. Will add all states
|
|
|
|
that have changed since the start time to the return list when with-block
|
|
|
|
is exited.
|
|
|
|
"""
|
|
|
|
def __init__(self, hass):
|
|
|
|
self.hass = hass
|
|
|
|
self.states = []
|
|
|
|
|
|
|
|
def __enter__(self):
|
|
|
|
self.now = datetime.now()
|
|
|
|
return self.states
|
|
|
|
|
|
|
|
def __exit__(self, exc_type, exc_value, traceback):
|
|
|
|
self.states.extend(self.hass.states.get_since(self.now))
|
|
|
|
|
|
|
|
|
2014-12-07 07:57:02 +00:00
|
|
|
def validate_config(config, items, logger):
|
|
|
|
"""
|
|
|
|
Validates if all items are available in the configuration.
|
|
|
|
|
|
|
|
config is the general dictionary with all the configurations.
|
|
|
|
items is a dict with per domain which attributes we require.
|
|
|
|
logger is the logger from the caller to log the errors to.
|
|
|
|
|
|
|
|
Returns True if all required items were found.
|
|
|
|
"""
|
|
|
|
errors_found = False
|
|
|
|
for domain in items.keys():
|
|
|
|
config.setdefault(domain, {})
|
|
|
|
|
|
|
|
errors = [item for item in items[domain] if item not in config[domain]]
|
|
|
|
|
|
|
|
if errors:
|
|
|
|
logger.error(
|
|
|
|
"Missing required configuration items in {}: {}".format(
|
|
|
|
domain, ", ".join(errors)))
|
|
|
|
|
|
|
|
errors_found = True
|
|
|
|
|
|
|
|
return not errors_found
|
|
|
|
|
|
|
|
|
|
|
|
def config_per_platform(config, domain, logger):
|
|
|
|
"""
|
|
|
|
Generator to break a component config into different platforms.
|
|
|
|
For example, will find 'switch', 'switch 2', 'switch 3', .. etc
|
|
|
|
"""
|
|
|
|
config_key = domain
|
|
|
|
found = 1
|
|
|
|
|
|
|
|
while config_key in config:
|
|
|
|
platform_config = config[config_key]
|
|
|
|
|
|
|
|
platform_type = platform_config.get(CONF_PLATFORM)
|
|
|
|
|
|
|
|
if platform_type is None:
|
|
|
|
logger.warning('No platform specified for %s', config_key)
|
|
|
|
break
|
|
|
|
|
|
|
|
yield platform_type, platform_config
|
|
|
|
|
|
|
|
found += 1
|
|
|
|
config_key = "{} {}".format(domain, found)
|