2016-01-14 04:05:47 +00:00
|
|
|
"""
|
2016-09-01 20:08:03 +00:00
|
|
|
Support for Nest devices.
|
2016-01-14 04:05:47 +00:00
|
|
|
|
2016-09-01 20:08:03 +00:00
|
|
|
For more details about this component, please refer to the documentation at
|
|
|
|
https://home-assistant.io/components/nest/
|
2016-01-14 04:05:47 +00:00
|
|
|
"""
|
2016-04-12 04:52:19 +00:00
|
|
|
import logging
|
|
|
|
import socket
|
2018-06-12 05:28:16 +00:00
|
|
|
from datetime import datetime, timedelta
|
2018-08-16 11:46:43 +00:00
|
|
|
import threading
|
2016-04-12 04:52:19 +00:00
|
|
|
|
2016-04-01 14:31:11 +00:00
|
|
|
import voluptuous as vol
|
2016-09-01 20:08:03 +00:00
|
|
|
|
2018-08-09 11:24:14 +00:00
|
|
|
from homeassistant import config_entries
|
2017-04-30 05:04:49 +00:00
|
|
|
from homeassistant.const import (
|
|
|
|
CONF_STRUCTURE, CONF_FILENAME, CONF_BINARY_SENSORS, CONF_SENSORS,
|
2018-06-01 14:44:58 +00:00
|
|
|
CONF_MONITORED_CONDITIONS,
|
|
|
|
EVENT_HOMEASSISTANT_START, EVENT_HOMEASSISTANT_STOP)
|
2018-08-16 11:46:43 +00:00
|
|
|
from homeassistant.core import callback
|
2018-06-13 15:14:52 +00:00
|
|
|
from homeassistant.helpers import config_validation as cv
|
2018-08-16 11:46:43 +00:00
|
|
|
from homeassistant.helpers.dispatcher import dispatcher_send, \
|
2018-06-03 01:54:48 +00:00
|
|
|
async_dispatcher_connect
|
|
|
|
from homeassistant.helpers.entity import Entity
|
2016-01-14 04:05:47 +00:00
|
|
|
|
2018-06-13 15:14:52 +00:00
|
|
|
from .const import DOMAIN
|
|
|
|
from . import local_auth
|
|
|
|
|
2018-06-25 17:04:32 +00:00
|
|
|
REQUIREMENTS = ['python-nest==4.0.3']
|
2017-04-30 05:04:49 +00:00
|
|
|
|
2016-11-28 00:18:47 +00:00
|
|
|
_CONFIGURING = {}
|
2016-09-01 20:08:03 +00:00
|
|
|
_LOGGER = logging.getLogger(__name__)
|
2016-01-14 04:05:47 +00:00
|
|
|
|
|
|
|
|
2016-11-05 00:22:47 +00:00
|
|
|
DATA_NEST = 'nest'
|
2018-06-13 15:14:52 +00:00
|
|
|
DATA_NEST_CONFIG = 'nest_config'
|
2016-01-14 04:05:47 +00:00
|
|
|
|
2018-06-01 14:44:58 +00:00
|
|
|
SIGNAL_NEST_UPDATE = 'nest_update'
|
|
|
|
|
2016-11-28 00:18:47 +00:00
|
|
|
NEST_CONFIG_FILE = 'nest.conf'
|
|
|
|
CONF_CLIENT_ID = 'client_id'
|
|
|
|
CONF_CLIENT_SECRET = 'client_secret'
|
2016-08-24 05:47:53 +00:00
|
|
|
|
2017-06-05 06:45:24 +00:00
|
|
|
ATTR_HOME_MODE = 'home_mode'
|
|
|
|
ATTR_STRUCTURE = 'structure'
|
2018-06-12 05:28:16 +00:00
|
|
|
ATTR_TRIP_ID = 'trip_id'
|
|
|
|
ATTR_ETA = 'eta'
|
|
|
|
ATTR_ETA_WINDOW = 'eta_window'
|
|
|
|
|
|
|
|
HOME_MODE_AWAY = 'away'
|
|
|
|
HOME_MODE_HOME = 'home'
|
2017-06-05 06:45:24 +00:00
|
|
|
|
2017-01-17 08:12:15 +00:00
|
|
|
SENSOR_SCHEMA = vol.Schema({
|
|
|
|
vol.Optional(CONF_MONITORED_CONDITIONS): vol.All(cv.ensure_list)
|
|
|
|
})
|
|
|
|
|
2017-06-05 06:45:24 +00:00
|
|
|
AWAY_SCHEMA = vol.Schema({
|
2018-06-12 05:28:16 +00:00
|
|
|
vol.Required(ATTR_HOME_MODE): vol.In([HOME_MODE_AWAY, HOME_MODE_HOME]),
|
2018-10-31 11:52:21 +00:00
|
|
|
vol.Optional(ATTR_STRUCTURE): vol.All(cv.ensure_list, [cv.string]),
|
2018-06-12 05:28:16 +00:00
|
|
|
vol.Optional(ATTR_TRIP_ID): cv.string,
|
2018-06-12 07:32:13 +00:00
|
|
|
vol.Optional(ATTR_ETA): cv.time_period,
|
|
|
|
vol.Optional(ATTR_ETA_WINDOW): cv.time_period
|
2017-06-05 06:45:24 +00:00
|
|
|
})
|
|
|
|
|
2016-04-01 14:31:11 +00:00
|
|
|
CONFIG_SCHEMA = vol.Schema({
|
|
|
|
DOMAIN: vol.Schema({
|
2016-11-28 00:18:47 +00:00
|
|
|
vol.Required(CONF_CLIENT_ID): cv.string,
|
|
|
|
vol.Required(CONF_CLIENT_SECRET): cv.string,
|
2018-10-31 11:52:21 +00:00
|
|
|
vol.Optional(CONF_STRUCTURE): vol.All(cv.ensure_list, [cv.string]),
|
2017-01-17 08:12:15 +00:00
|
|
|
vol.Optional(CONF_SENSORS): SENSOR_SCHEMA,
|
|
|
|
vol.Optional(CONF_BINARY_SENSORS): SENSOR_SCHEMA
|
2016-04-01 14:31:11 +00:00
|
|
|
})
|
|
|
|
}, extra=vol.ALLOW_EXTRA)
|
|
|
|
|
2016-04-12 04:52:19 +00:00
|
|
|
|
2018-08-16 11:46:43 +00:00
|
|
|
def nest_update_event_broker(hass, nest):
|
2018-06-01 14:44:58 +00:00
|
|
|
"""
|
|
|
|
Dispatch SIGNAL_NEST_UPDATE to devices when nest stream API received data.
|
|
|
|
|
2018-08-16 11:46:43 +00:00
|
|
|
Runs in its own thread.
|
2018-06-01 14:44:58 +00:00
|
|
|
"""
|
|
|
|
_LOGGER.debug("listening nest.update_event")
|
2018-08-16 11:46:43 +00:00
|
|
|
|
|
|
|
while hass.is_running:
|
|
|
|
nest.update_event.wait()
|
|
|
|
|
|
|
|
if not hass.is_running:
|
|
|
|
break
|
|
|
|
|
|
|
|
nest.update_event.clear()
|
|
|
|
_LOGGER.debug("dispatching nest data update")
|
|
|
|
dispatcher_send(hass, SIGNAL_NEST_UPDATE)
|
|
|
|
|
|
|
|
_LOGGER.debug("stop listening nest.update_event")
|
2018-06-01 14:44:58 +00:00
|
|
|
|
|
|
|
|
2018-06-13 15:14:52 +00:00
|
|
|
async def async_setup(hass, config):
|
|
|
|
"""Set up Nest components."""
|
|
|
|
if DOMAIN not in config:
|
2018-08-02 22:36:37 +00:00
|
|
|
return True
|
2016-11-28 00:18:47 +00:00
|
|
|
|
2018-06-13 15:14:52 +00:00
|
|
|
conf = config[DOMAIN]
|
|
|
|
|
|
|
|
local_auth.initialize(hass, conf[CONF_CLIENT_ID], conf[CONF_CLIENT_SECRET])
|
|
|
|
|
|
|
|
filename = config.get(CONF_FILENAME, NEST_CONFIG_FILE)
|
|
|
|
access_token_cache_file = hass.config.path(filename)
|
|
|
|
|
2018-10-02 09:03:09 +00:00
|
|
|
hass.async_create_task(hass.config_entries.flow.async_init(
|
2018-08-09 11:24:14 +00:00
|
|
|
DOMAIN, context={'source': config_entries.SOURCE_IMPORT},
|
|
|
|
data={
|
2018-06-15 19:19:58 +00:00
|
|
|
'nest_conf_path': access_token_cache_file,
|
|
|
|
}
|
|
|
|
))
|
2018-06-13 15:14:52 +00:00
|
|
|
|
|
|
|
# Store config to be used during entry setup
|
|
|
|
hass.data[DATA_NEST_CONFIG] = conf
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
async def async_setup_entry(hass, entry):
|
2018-08-19 20:29:08 +00:00
|
|
|
"""Set up Nest from a config entry."""
|
2018-06-13 15:14:52 +00:00
|
|
|
from nest import Nest
|
|
|
|
|
|
|
|
nest = Nest(access_token=entry.data['tokens']['access_token'])
|
2016-11-28 00:18:47 +00:00
|
|
|
|
|
|
|
_LOGGER.debug("proceeding with setup")
|
2018-06-13 15:14:52 +00:00
|
|
|
conf = hass.data.get(DATA_NEST_CONFIG, {})
|
2016-11-28 00:18:47 +00:00
|
|
|
hass.data[DATA_NEST] = NestDevice(hass, conf, nest)
|
2018-06-25 20:06:00 +00:00
|
|
|
if not await hass.async_add_job(hass.data[DATA_NEST].initialize):
|
|
|
|
return False
|
2016-11-28 00:18:47 +00:00
|
|
|
|
2018-06-13 15:14:52 +00:00
|
|
|
for component in 'climate', 'camera', 'sensor', 'binary_sensor':
|
2018-07-23 12:05:38 +00:00
|
|
|
hass.async_create_task(hass.config_entries.async_forward_entry_setup(
|
2018-06-13 15:14:52 +00:00
|
|
|
entry, component))
|
2017-01-17 08:12:15 +00:00
|
|
|
|
2018-06-01 14:44:58 +00:00
|
|
|
def set_mode(service):
|
2018-06-12 05:28:16 +00:00
|
|
|
"""
|
|
|
|
Set the home/away mode for a Nest structure.
|
|
|
|
|
|
|
|
You can set optional eta information when set mode to away.
|
|
|
|
"""
|
2018-06-01 14:44:58 +00:00
|
|
|
if ATTR_STRUCTURE in service.data:
|
|
|
|
structures = service.data[ATTR_STRUCTURE]
|
|
|
|
else:
|
|
|
|
structures = hass.data[DATA_NEST].local_structure
|
|
|
|
|
|
|
|
for structure in nest.structures:
|
|
|
|
if structure.name in structures:
|
|
|
|
_LOGGER.info("Setting mode for %s", structure.name)
|
|
|
|
structure.away = service.data[ATTR_HOME_MODE]
|
2018-06-12 05:28:16 +00:00
|
|
|
|
|
|
|
if service.data[ATTR_HOME_MODE] == HOME_MODE_AWAY \
|
|
|
|
and ATTR_ETA in service.data:
|
|
|
|
now = datetime.utcnow()
|
|
|
|
eta_begin = now + service.data[ATTR_ETA]
|
|
|
|
eta_window = service.data.get(ATTR_ETA_WINDOW,
|
|
|
|
timedelta(minutes=1))
|
|
|
|
eta_end = eta_begin + eta_window
|
|
|
|
trip_id = service.data.get(
|
|
|
|
ATTR_TRIP_ID, "trip_{}".format(int(now.timestamp())))
|
|
|
|
_LOGGER.info("Setting eta for %s, eta window starts at "
|
|
|
|
"%s ends at %s", trip_id, eta_begin, eta_end)
|
|
|
|
structure.set_eta(trip_id, eta_begin, eta_end)
|
2018-06-01 14:44:58 +00:00
|
|
|
else:
|
|
|
|
_LOGGER.error("Invalid structure %s",
|
|
|
|
service.data[ATTR_STRUCTURE])
|
2017-01-17 08:12:15 +00:00
|
|
|
|
2018-06-01 14:44:58 +00:00
|
|
|
hass.services.async_register(
|
|
|
|
DOMAIN, 'set_mode', set_mode, schema=AWAY_SCHEMA)
|
2017-01-17 08:12:15 +00:00
|
|
|
|
2018-08-16 11:46:43 +00:00
|
|
|
@callback
|
2018-06-01 14:44:58 +00:00
|
|
|
def start_up(event):
|
|
|
|
"""Start Nest update event listener."""
|
2018-08-16 11:46:43 +00:00
|
|
|
threading.Thread(
|
|
|
|
name='Nest update listener',
|
|
|
|
target=nest_update_event_broker,
|
|
|
|
args=(hass, nest)
|
|
|
|
).start()
|
2018-06-01 14:44:58 +00:00
|
|
|
|
|
|
|
hass.bus.async_listen_once(EVENT_HOMEASSISTANT_START, start_up)
|
|
|
|
|
2018-08-16 11:46:43 +00:00
|
|
|
@callback
|
2018-06-01 14:44:58 +00:00
|
|
|
def shut_down(event):
|
|
|
|
"""Stop Nest update event listener."""
|
2018-08-16 11:46:43 +00:00
|
|
|
nest.update_event.set()
|
2018-06-01 14:44:58 +00:00
|
|
|
|
|
|
|
hass.bus.async_listen_once(EVENT_HOMEASSISTANT_STOP, shut_down)
|
|
|
|
|
|
|
|
_LOGGER.debug("async_setup_nest is done")
|
2016-11-28 00:18:47 +00:00
|
|
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
2018-07-20 08:45:20 +00:00
|
|
|
class NestDevice:
|
2016-11-05 00:22:47 +00:00
|
|
|
"""Structure Nest functions for hass."""
|
|
|
|
|
|
|
|
def __init__(self, hass, conf, nest):
|
|
|
|
"""Init Nest Devices."""
|
|
|
|
self.hass = hass
|
|
|
|
self.nest = nest
|
2018-06-13 15:14:52 +00:00
|
|
|
self.local_structure = conf.get(CONF_STRUCTURE)
|
2016-11-05 00:22:47 +00:00
|
|
|
|
2018-06-13 15:14:52 +00:00
|
|
|
def initialize(self):
|
|
|
|
"""Initialize Nest."""
|
2018-06-25 20:06:00 +00:00
|
|
|
from nest.nest import AuthorizationError, APIError
|
|
|
|
try:
|
|
|
|
# Do not optimize next statement, it is here for initialize
|
|
|
|
# persistence Nest API connection.
|
|
|
|
structure_names = [s.name for s in self.nest.structures]
|
|
|
|
if self.local_structure is None:
|
|
|
|
self.local_structure = structure_names
|
|
|
|
|
|
|
|
except (AuthorizationError, APIError, socket.error) as err:
|
|
|
|
_LOGGER.error(
|
|
|
|
"Connection error while access Nest web service: %s", err)
|
|
|
|
return False
|
|
|
|
return True
|
2016-11-05 00:22:47 +00:00
|
|
|
|
2018-05-23 19:40:33 +00:00
|
|
|
def structures(self):
|
|
|
|
"""Generate a list of structures."""
|
2018-06-25 20:06:00 +00:00
|
|
|
from nest.nest import AuthorizationError, APIError
|
2018-05-23 19:40:33 +00:00
|
|
|
try:
|
|
|
|
for structure in self.nest.structures:
|
2018-06-25 20:06:00 +00:00
|
|
|
if structure.name not in self.local_structure:
|
2018-05-23 19:40:33 +00:00
|
|
|
_LOGGER.debug("Ignoring structure %s, not in %s",
|
|
|
|
structure.name, self.local_structure)
|
2018-06-25 20:06:00 +00:00
|
|
|
continue
|
|
|
|
yield structure
|
|
|
|
|
|
|
|
except (AuthorizationError, APIError, socket.error) as err:
|
2018-05-23 19:40:33 +00:00
|
|
|
_LOGGER.error(
|
2018-06-25 20:06:00 +00:00
|
|
|
"Connection error while access Nest web service: %s", err)
|
2018-05-23 19:40:33 +00:00
|
|
|
|
2016-12-22 19:22:07 +00:00
|
|
|
def thermostats(self):
|
2018-06-25 20:06:00 +00:00
|
|
|
"""Generate a list of thermostats."""
|
|
|
|
return self._devices('thermostats')
|
2016-11-05 00:22:47 +00:00
|
|
|
|
2016-12-22 19:22:07 +00:00
|
|
|
def smoke_co_alarms(self):
|
2018-01-29 22:37:19 +00:00
|
|
|
"""Generate a list of smoke co alarms."""
|
2018-06-25 20:06:00 +00:00
|
|
|
return self._devices('smoke_co_alarms')
|
2016-11-28 00:18:47 +00:00
|
|
|
|
2016-12-22 19:22:07 +00:00
|
|
|
def cameras(self):
|
2017-04-30 05:04:49 +00:00
|
|
|
"""Generate a list of cameras."""
|
2018-06-25 20:06:00 +00:00
|
|
|
return self._devices('cameras')
|
|
|
|
|
|
|
|
def _devices(self, device_type):
|
|
|
|
"""Generate a list of Nest devices."""
|
|
|
|
from nest.nest import AuthorizationError, APIError
|
2016-11-28 00:18:47 +00:00
|
|
|
try:
|
|
|
|
for structure in self.nest.structures:
|
2018-06-25 20:06:00 +00:00
|
|
|
if structure.name not in self.local_structure:
|
2018-05-23 19:40:33 +00:00
|
|
|
_LOGGER.debug("Ignoring structure %s, not in %s",
|
|
|
|
structure.name, self.local_structure)
|
2018-06-25 20:06:00 +00:00
|
|
|
continue
|
|
|
|
|
|
|
|
for device in getattr(structure, device_type, []):
|
|
|
|
try:
|
|
|
|
# Do not optimize next statement,
|
|
|
|
# it is here for verify Nest API permission.
|
|
|
|
device.name_long
|
|
|
|
except KeyError:
|
|
|
|
_LOGGER.warning("Cannot retrieve device name for [%s]"
|
|
|
|
", please check your Nest developer "
|
|
|
|
"account permission settings.",
|
|
|
|
device.serial)
|
|
|
|
continue
|
|
|
|
yield (structure, device)
|
|
|
|
|
|
|
|
except (AuthorizationError, APIError, socket.error) as err:
|
2016-11-28 00:18:47 +00:00
|
|
|
_LOGGER.error(
|
2018-06-25 20:06:00 +00:00
|
|
|
"Connection error while access Nest web service: %s", err)
|
2018-06-03 01:54:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
class NestSensorDevice(Entity):
|
|
|
|
"""Representation of a Nest sensor."""
|
|
|
|
|
|
|
|
def __init__(self, structure, device, variable):
|
|
|
|
"""Initialize the sensor."""
|
|
|
|
self.structure = structure
|
|
|
|
self.variable = variable
|
|
|
|
|
|
|
|
if device is not None:
|
|
|
|
# device specific
|
2018-08-26 19:25:39 +00:00
|
|
|
self.device = device
|
|
|
|
self._name = "{} {}".format(self.device.name_long,
|
2018-06-03 01:54:48 +00:00
|
|
|
self.variable.replace('_', ' '))
|
|
|
|
else:
|
|
|
|
# structure only
|
2018-08-26 19:25:39 +00:00
|
|
|
self.device = structure
|
2018-06-03 01:54:48 +00:00
|
|
|
self._name = "{} {}".format(self.structure.name,
|
|
|
|
self.variable.replace('_', ' '))
|
|
|
|
|
|
|
|
self._state = None
|
|
|
|
self._unit = None
|
|
|
|
|
|
|
|
@property
|
|
|
|
def name(self):
|
|
|
|
"""Return the name of the nest, if any."""
|
|
|
|
return self._name
|
|
|
|
|
|
|
|
@property
|
|
|
|
def unit_of_measurement(self):
|
|
|
|
"""Return the unit the value is expressed in."""
|
|
|
|
return self._unit
|
|
|
|
|
|
|
|
@property
|
|
|
|
def should_poll(self):
|
|
|
|
"""Do not need poll thanks using Nest streaming API."""
|
|
|
|
return False
|
|
|
|
|
2018-09-26 07:19:47 +00:00
|
|
|
@property
|
|
|
|
def unique_id(self):
|
|
|
|
"""Return unique id based on device serial and variable."""
|
|
|
|
return "{}-{}".format(self.device.serial, self.variable)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def device_info(self):
|
|
|
|
"""Return information about the device."""
|
|
|
|
if not hasattr(self.device, 'name_long'):
|
|
|
|
name = self.structure.name
|
|
|
|
model = "Structure"
|
|
|
|
else:
|
|
|
|
name = self.device.name_long
|
|
|
|
if self.device.is_thermostat:
|
|
|
|
model = 'Thermostat'
|
|
|
|
elif self.device.is_camera:
|
|
|
|
model = 'Camera'
|
|
|
|
elif self.device.is_smoke_co_alarm:
|
|
|
|
model = 'Nest Protect'
|
|
|
|
else:
|
|
|
|
model = None
|
|
|
|
|
|
|
|
return {
|
|
|
|
'identifiers': {
|
|
|
|
(DOMAIN, self.device.serial)
|
|
|
|
},
|
|
|
|
'name': name,
|
|
|
|
'manufacturer': 'Nest Labs',
|
|
|
|
'model': model,
|
|
|
|
}
|
|
|
|
|
2018-06-03 01:54:48 +00:00
|
|
|
def update(self):
|
|
|
|
"""Do not use NestSensorDevice directly."""
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
async def async_added_to_hass(self):
|
|
|
|
"""Register update signal handler."""
|
|
|
|
async def async_update_state():
|
|
|
|
"""Update sensor state."""
|
|
|
|
await self.async_update_ha_state(True)
|
|
|
|
|
|
|
|
async_dispatcher_connect(self.hass, SIGNAL_NEST_UPDATE,
|
|
|
|
async_update_state)
|