core/homeassistant/components/device_tracker/locative.py

114 lines
4.0 KiB
Python
Raw Normal View History

"""
2016-03-07 17:12:06 +00:00
Support for the Locative platform.
2015-10-13 18:50:15 +00:00
For more details about this platform, please refer to the documentation at
2015-12-21 15:54:14 +00:00
https://home-assistant.io/components/device_tracker.locative/
"""
import asyncio
from functools import partial
2015-12-23 10:52:52 +00:00
import logging
from homeassistant.const import (
ATTR_LATITUDE, ATTR_LONGITUDE, STATE_NOT_HOME, HTTP_UNPROCESSABLE_ENTITY)
2016-05-14 07:58:36 +00:00
from homeassistant.components.http import HomeAssistantView
2016-09-11 23:12:28 +00:00
# pylint: disable=unused-import
from homeassistant.components.device_tracker import ( # NOQA
DOMAIN, PLATFORM_SCHEMA)
2015-12-23 10:52:52 +00:00
_LOGGER = logging.getLogger(__name__)
2015-12-31 19:02:50 +00:00
DEPENDENCIES = ['http']
URL = '/api/locative'
def setup_scanner(hass, config, see, discovery_info=None):
"""Set up an endpoint for the Locative application."""
hass.http.register_view(LocativeView(see))
return True
2016-05-14 07:58:36 +00:00
class LocativeView(HomeAssistantView):
"""View to handle Locative requests."""
2016-05-14 07:58:36 +00:00
url = URL
2016-09-11 23:12:28 +00:00
name = 'api:locative'
2016-05-14 07:58:36 +00:00
def __init__(self, see):
"""Initialize Locative URL endpoints."""
2016-05-14 07:58:36 +00:00
self.see = see
@asyncio.coroutine
2016-05-14 07:58:36 +00:00
def get(self, request):
"""Locative message received as GET."""
res = yield from self._handle(request.app['hass'], request.query)
return res
2016-05-14 07:58:36 +00:00
@asyncio.coroutine
2016-05-14 07:58:36 +00:00
def post(self, request):
"""Locative message received."""
data = yield from request.post()
res = yield from self._handle(request.app['hass'], data)
return res
2016-05-14 07:58:36 +00:00
@asyncio.coroutine
def _handle(self, hass, data):
"""Handle locative request."""
2016-05-14 07:58:36 +00:00
if 'latitude' not in data or 'longitude' not in data:
2016-09-11 23:12:28 +00:00
return ('Latitude and longitude not specified.',
2016-05-14 07:58:36 +00:00
HTTP_UNPROCESSABLE_ENTITY)
if 'device' not in data:
2016-09-11 23:12:28 +00:00
_LOGGER.error('Device id not specified.')
return ('Device id not specified.',
2016-05-14 07:58:36 +00:00
HTTP_UNPROCESSABLE_ENTITY)
if 'trigger' not in data:
2016-09-11 23:12:28 +00:00
_LOGGER.error('Trigger is not specified.')
return ('Trigger is not specified.',
2016-05-14 07:58:36 +00:00
HTTP_UNPROCESSABLE_ENTITY)
if 'id' not in data and data['trigger'] != 'test':
_LOGGER.error('Location id not specified.')
return ('Location id not specified.',
HTTP_UNPROCESSABLE_ENTITY)
2016-05-14 07:58:36 +00:00
device = data['device'].replace('-', '')
location_name = data.get('id', data['trigger']).lower()
2016-05-14 07:58:36 +00:00
direction = data['trigger']
gps_location = (data[ATTR_LATITUDE], data[ATTR_LONGITUDE])
2016-05-14 07:58:36 +00:00
if direction == 'enter':
yield from hass.async_add_job(
partial(self.see, dev_id=device, location_name=location_name,
gps=gps_location))
2016-09-11 23:12:28 +00:00
return 'Setting location to {}'.format(location_name)
2016-05-14 07:58:36 +00:00
if direction == 'exit':
current_state = hass.states.get(
2016-09-11 23:12:28 +00:00
'{}.{}'.format(DOMAIN, device))
2016-05-14 07:58:36 +00:00
if current_state is None or current_state.state == location_name:
location_name = STATE_NOT_HOME
yield from hass.async_add_job(
partial(self.see, dev_id=device,
location_name=location_name, gps=gps_location))
2016-09-11 23:12:28 +00:00
return 'Setting location to not home'
# Ignore the message if it is telling us to exit a zone that we
# aren't currently in. This occurs when a zone is entered
# before the previous zone was exited. The enter message will
# be sent first, then the exit message will be sent second.
return 'Ignoring exit from {} (already in {})'.format(
location_name, current_state)
2016-05-14 07:58:36 +00:00
if direction == 'test':
2016-05-14 07:58:36 +00:00
# In the app, a test message can be sent. Just return something to
# the user to let them know that it works.
2016-09-11 23:12:28 +00:00
return 'Received test message.'
2015-12-23 10:52:52 +00:00
_LOGGER.error('Received unidentified message from Locative: %s',
direction)
return ('Received unidentified message: {}'.format(direction),
HTTP_UNPROCESSABLE_ENTITY)