* Moved climate components with tests into platform dirs. * Updated tests from climate component. * Moved binary_sensor components with tests into platform dirs. * Updated tests from binary_sensor component. * Moved calendar components with tests into platform dirs. * Updated tests from calendar component. * Moved camera components with tests into platform dirs. * Updated tests from camera component. * Moved cover components with tests into platform dirs. * Updated tests from cover component. * Moved device_tracker components with tests into platform dirs. * Updated tests from device_tracker component. * Moved fan components with tests into platform dirs. * Updated tests from fan component. * Moved geo_location components with tests into platform dirs. * Updated tests from geo_location component. * Moved image_processing components with tests into platform dirs. * Updated tests from image_processing component. * Moved light components with tests into platform dirs. * Updated tests from light component. * Moved lock components with tests into platform dirs. * Moved media_player components with tests into platform dirs. * Updated tests from media_player component. * Moved scene components with tests into platform dirs. * Moved sensor components with tests into platform dirs. * Updated tests from sensor component. * Moved switch components with tests into platform dirs. * Updated tests from sensor component. * Moved vacuum components with tests into platform dirs. * Updated tests from vacuum component. * Moved weather components with tests into platform dirs. * Fixed __init__.py files * Fixes for stuff moved as part of this branch. * Fix stuff needed to merge with balloob's branch. * Formatting issues. * Missing __init__.py files. * Fix-ups * Fixup * Regenerated requirements. * Linting errors fixed. * Fixed more broken tests. * Missing init files. * Fix broken tests. * More broken tests * There seems to be a thread race condition. I suspect the logger stuff is running in another thread, which means waiting until the aio loop is done is missing the log messages. Used sleep instead because that allows the logger thread to run. I think the api_streams sensor might not be thread safe. * Disabled tests, will remove sensor in #22147 * Updated coverage and codeowners.
199 lines
6.9 KiB
Python
199 lines
6.9 KiB
Python
"""
|
|
Support for RESTful switches.
|
|
|
|
For more details about this platform, please refer to the documentation at
|
|
https://home-assistant.io/components/switch.rest/
|
|
"""
|
|
import asyncio
|
|
import logging
|
|
|
|
import aiohttp
|
|
import async_timeout
|
|
import voluptuous as vol
|
|
|
|
from homeassistant.components.switch import (SwitchDevice, PLATFORM_SCHEMA)
|
|
from homeassistant.const import (
|
|
CONF_HEADERS, CONF_NAME, CONF_RESOURCE, CONF_TIMEOUT, CONF_METHOD,
|
|
CONF_USERNAME, CONF_PASSWORD, CONF_VERIFY_SSL)
|
|
from homeassistant.helpers.aiohttp_client import async_get_clientsession
|
|
import homeassistant.helpers.config_validation as cv
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
CONF_BODY_OFF = 'body_off'
|
|
CONF_BODY_ON = 'body_on'
|
|
CONF_IS_ON_TEMPLATE = 'is_on_template'
|
|
|
|
DEFAULT_METHOD = 'post'
|
|
DEFAULT_BODY_OFF = 'OFF'
|
|
DEFAULT_BODY_ON = 'ON'
|
|
DEFAULT_NAME = 'REST Switch'
|
|
DEFAULT_TIMEOUT = 10
|
|
DEFAULT_VERIFY_SSL = True
|
|
|
|
SUPPORT_REST_METHODS = ['post', 'put']
|
|
|
|
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({
|
|
vol.Required(CONF_RESOURCE): cv.url,
|
|
vol.Optional(CONF_HEADERS): {cv.string: cv.string},
|
|
vol.Optional(CONF_BODY_OFF, default=DEFAULT_BODY_OFF): cv.template,
|
|
vol.Optional(CONF_BODY_ON, default=DEFAULT_BODY_ON): cv.template,
|
|
vol.Optional(CONF_IS_ON_TEMPLATE): cv.template,
|
|
vol.Optional(CONF_METHOD, default=DEFAULT_METHOD):
|
|
vol.All(vol.Lower, vol.In(SUPPORT_REST_METHODS)),
|
|
vol.Optional(CONF_NAME, default=DEFAULT_NAME): cv.string,
|
|
vol.Optional(CONF_TIMEOUT, default=DEFAULT_TIMEOUT): cv.positive_int,
|
|
vol.Inclusive(CONF_USERNAME, 'authentication'): cv.string,
|
|
vol.Inclusive(CONF_PASSWORD, 'authentication'): cv.string,
|
|
vol.Optional(CONF_VERIFY_SSL, default=DEFAULT_VERIFY_SSL): cv.boolean,
|
|
})
|
|
|
|
|
|
async def async_setup_platform(hass, config, async_add_entities,
|
|
discovery_info=None):
|
|
"""Set up the RESTful switch."""
|
|
body_off = config.get(CONF_BODY_OFF)
|
|
body_on = config.get(CONF_BODY_ON)
|
|
is_on_template = config.get(CONF_IS_ON_TEMPLATE)
|
|
method = config.get(CONF_METHOD)
|
|
headers = config.get(CONF_HEADERS)
|
|
name = config.get(CONF_NAME)
|
|
username = config.get(CONF_USERNAME)
|
|
password = config.get(CONF_PASSWORD)
|
|
resource = config.get(CONF_RESOURCE)
|
|
verify_ssl = config.get(CONF_VERIFY_SSL)
|
|
|
|
auth = None
|
|
if username:
|
|
auth = aiohttp.BasicAuth(username, password=password)
|
|
|
|
if is_on_template is not None:
|
|
is_on_template.hass = hass
|
|
if body_on is not None:
|
|
body_on.hass = hass
|
|
if body_off is not None:
|
|
body_off.hass = hass
|
|
timeout = config.get(CONF_TIMEOUT)
|
|
|
|
try:
|
|
switch = RestSwitch(name, resource, method, headers, auth, body_on,
|
|
body_off, is_on_template, timeout, verify_ssl)
|
|
|
|
req = await switch.get_device_state(hass)
|
|
if req.status >= 400:
|
|
_LOGGER.error("Got non-ok response from resource: %s", req.status)
|
|
else:
|
|
async_add_entities([switch])
|
|
except (TypeError, ValueError):
|
|
_LOGGER.error("Missing resource or schema in configuration. "
|
|
"Add http:// or https:// to your URL")
|
|
except (asyncio.TimeoutError, aiohttp.ClientError):
|
|
_LOGGER.error("No route to resource/endpoint: %s", resource)
|
|
|
|
|
|
class RestSwitch(SwitchDevice):
|
|
"""Representation of a switch that can be toggled using REST."""
|
|
|
|
def __init__(self, name, resource, method, headers, auth, body_on,
|
|
body_off, is_on_template, timeout, verify_ssl):
|
|
"""Initialize the REST switch."""
|
|
self._state = None
|
|
self._name = name
|
|
self._resource = resource
|
|
self._method = method
|
|
self._headers = headers
|
|
self._auth = auth
|
|
self._body_on = body_on
|
|
self._body_off = body_off
|
|
self._is_on_template = is_on_template
|
|
self._timeout = timeout
|
|
self._verify_ssl = verify_ssl
|
|
|
|
@property
|
|
def name(self):
|
|
"""Return the name of the switch."""
|
|
return self._name
|
|
|
|
@property
|
|
def is_on(self):
|
|
"""Return true if device is on."""
|
|
return self._state
|
|
|
|
async def async_turn_on(self, **kwargs):
|
|
"""Turn the device on."""
|
|
body_on_t = self._body_on.async_render()
|
|
|
|
try:
|
|
req = await self.set_device_state(body_on_t)
|
|
|
|
if req.status == 200:
|
|
self._state = True
|
|
else:
|
|
_LOGGER.error(
|
|
"Can't turn on %s. Is resource/endpoint offline?",
|
|
self._resource)
|
|
except (asyncio.TimeoutError, aiohttp.ClientError):
|
|
_LOGGER.error("Error while switching on %s", self._resource)
|
|
|
|
async def async_turn_off(self, **kwargs):
|
|
"""Turn the device off."""
|
|
body_off_t = self._body_off.async_render()
|
|
|
|
try:
|
|
req = await self.set_device_state(body_off_t)
|
|
if req.status == 200:
|
|
self._state = False
|
|
else:
|
|
_LOGGER.error(
|
|
"Can't turn off %s. Is resource/endpoint offline?",
|
|
self._resource)
|
|
except (asyncio.TimeoutError, aiohttp.ClientError):
|
|
_LOGGER.error("Error while switching off %s", self._resource)
|
|
|
|
async def set_device_state(self, body):
|
|
"""Send a state update to the device."""
|
|
websession = async_get_clientsession(self.hass, self._verify_ssl)
|
|
|
|
with async_timeout.timeout(self._timeout, loop=self.hass.loop):
|
|
req = await getattr(websession, self._method)(
|
|
self._resource, auth=self._auth, data=bytes(body, 'utf-8'),
|
|
headers=self._headers)
|
|
return req
|
|
|
|
async def async_update(self):
|
|
"""Get the current state, catching errors."""
|
|
try:
|
|
await self.get_device_state(self.hass)
|
|
except asyncio.TimeoutError:
|
|
_LOGGER.exception("Timed out while fetching data")
|
|
except aiohttp.ClientError as err:
|
|
_LOGGER.exception("Error while fetching data: %s", err)
|
|
|
|
async def get_device_state(self, hass):
|
|
"""Get the latest data from REST API and update the state."""
|
|
websession = async_get_clientsession(hass, self._verify_ssl)
|
|
|
|
with async_timeout.timeout(self._timeout, loop=hass.loop):
|
|
req = await websession.get(self._resource, auth=self._auth,
|
|
headers=self._headers)
|
|
text = await req.text()
|
|
|
|
if self._is_on_template is not None:
|
|
text = self._is_on_template.async_render_with_possible_json_value(
|
|
text, 'None')
|
|
text = text.lower()
|
|
if text == 'true':
|
|
self._state = True
|
|
elif text == 'false':
|
|
self._state = False
|
|
else:
|
|
self._state = None
|
|
else:
|
|
if text == self._body_on.template:
|
|
self._state = True
|
|
elif text == self._body_off.template:
|
|
self._state = False
|
|
else:
|
|
self._state = None
|
|
|
|
return req
|