core/homeassistant/components/transmission/switch.py

97 lines
2.7 KiB
Python
Raw Normal View History

"""
2016-03-08 12:35:39 +00:00
Support for setting the Transmission BitTorrent client Turtle Mode.
2015-10-21 08:56:32 +00:00
For more details about this platform, please refer to the documentation at
2015-11-09 12:12:18 +00:00
https://home-assistant.io/components/switch.transmission/
"""
2015-11-29 21:49:05 +00:00
import logging
from homeassistant.components.transmission import (
DATA_TRANSMISSION, DATA_UPDATED)
2016-02-19 05:27:50 +00:00
from homeassistant.const import (
STATE_OFF, STATE_ON)
from homeassistant.core import callback
from homeassistant.helpers.dispatcher import async_dispatcher_connect
from homeassistant.helpers.entity import ToggleEntity
DEPENDENCIES = ['transmission']
_LOGGING = logging.getLogger(__name__)
DEFAULT_NAME = 'Transmission Turtle Mode'
async def async_setup_platform(
hass,
config,
async_add_entities,
discovery_info=None):
"""Set up the Transmission switch."""
if discovery_info is None:
return
component_name = DATA_TRANSMISSION
transmission_api = hass.data[component_name]
name = discovery_info['client_name']
async_add_entities([TransmissionSwitch(transmission_api, name)], True)
class TransmissionSwitch(ToggleEntity):
"""Representation of a Transmission switch."""
def __init__(self, transmission_client, name):
2016-03-08 12:35:39 +00:00
"""Initialize the Transmission switch."""
self._name = name
self.transmission_client = transmission_client
self._state = STATE_OFF
@property
def name(self):
2016-03-08 12:35:39 +00:00
"""Return the name of the switch."""
return self._name
@property
def state(self):
2016-03-08 12:35:39 +00:00
"""Return the state of the device."""
return self._state
@property
def should_poll(self):
2016-03-08 12:35:39 +00:00
"""Poll for status regularly."""
return False
@property
def is_on(self):
2016-03-08 12:35:39 +00:00
"""Return true if device is on."""
return self._state == STATE_ON
def turn_on(self, **kwargs):
2016-03-08 12:35:39 +00:00
"""Turn the device on."""
_LOGGING.debug("Turning Turtle Mode of Transmission on")
self.transmission_client.set_alt_speed_enabled(True)
def turn_off(self, **kwargs):
2016-03-08 12:35:39 +00:00
"""Turn the device off."""
_LOGGING.debug("Turning Turtle Mode of Transmission off")
self.transmission_client.set_alt_speed_enabled(False)
async def async_added_to_hass(self):
"""Handle entity which will be added."""
async_dispatcher_connect(
self.hass, DATA_UPDATED, self._schedule_immediate_update
)
@callback
def _schedule_immediate_update(self):
self.async_schedule_update_ha_state(True)
def update(self):
2016-03-08 12:35:39 +00:00
"""Get the latest data from Transmission and updates the state."""
active = self.transmission_client.get_alt_speed_enabled()
if active is None:
return
self._state = STATE_ON if active else STATE_OFF