2015-05-30 13:34:23 +00:00
|
|
|
"""
|
|
|
|
homeassistant.components.switch.transmission
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2015-08-06 17:00:47 +00:00
|
|
|
Enable or disable Transmission BitTorrent client Turtle Mode.
|
2015-05-30 13:34:23 +00:00
|
|
|
|
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-05-30 13:34:23 +00:00
|
|
|
"""
|
2015-11-29 21:49:05 +00:00
|
|
|
import logging
|
2015-05-30 13:34:23 +00:00
|
|
|
|
2016-02-19 05:27:50 +00:00
|
|
|
from homeassistant.const import (
|
|
|
|
CONF_HOST, CONF_PASSWORD, CONF_USERNAME, STATE_OFF, STATE_ON)
|
2015-05-30 13:34:23 +00:00
|
|
|
from homeassistant.helpers.entity import ToggleEntity
|
|
|
|
|
|
|
|
_LOGGING = logging.getLogger(__name__)
|
2015-08-30 01:39:50 +00:00
|
|
|
REQUIREMENTS = ['transmissionrpc==0.11']
|
2015-05-30 13:34:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
# pylint: disable=unused-argument
|
|
|
|
def setup_platform(hass, config, add_devices_callback, discovery_info=None):
|
2015-08-06 17:00:18 +00:00
|
|
|
""" Sets up the transmission sensor. """
|
2015-11-17 08:18:42 +00:00
|
|
|
import transmissionrpc
|
|
|
|
from transmissionrpc.error import TransmissionError
|
|
|
|
|
2015-05-30 13:34:23 +00:00
|
|
|
host = config.get(CONF_HOST)
|
|
|
|
username = config.get(CONF_USERNAME, None)
|
|
|
|
password = config.get(CONF_PASSWORD, None)
|
|
|
|
port = config.get('port', 9091)
|
|
|
|
|
|
|
|
name = config.get("name", "Transmission Turtle Mode")
|
|
|
|
if not host:
|
|
|
|
_LOGGING.error('Missing config variable %s', CONF_HOST)
|
|
|
|
return False
|
|
|
|
|
|
|
|
# import logging
|
|
|
|
# logging.getLogger('transmissionrpc').setLevel(logging.DEBUG)
|
|
|
|
|
|
|
|
transmission_api = transmissionrpc.Client(
|
|
|
|
host, port=port, user=username, password=password)
|
|
|
|
try:
|
|
|
|
transmission_api.session_stats()
|
|
|
|
except TransmissionError:
|
|
|
|
_LOGGING.exception("Connection to Transmission API failed.")
|
|
|
|
return False
|
|
|
|
|
|
|
|
add_devices_callback([
|
|
|
|
TransmissionSwitch(transmission_api, name)
|
|
|
|
])
|
|
|
|
|
|
|
|
|
|
|
|
class TransmissionSwitch(ToggleEntity):
|
|
|
|
""" A Transmission sensor. """
|
|
|
|
|
|
|
|
def __init__(self, transmission_client, name):
|
|
|
|
self._name = name
|
|
|
|
self.transmission_client = transmission_client
|
|
|
|
self._state = STATE_OFF
|
|
|
|
|
|
|
|
@property
|
|
|
|
def name(self):
|
|
|
|
return self._name
|
|
|
|
|
|
|
|
@property
|
|
|
|
def state(self):
|
|
|
|
""" Returns the state of the device. """
|
|
|
|
return self._state
|
|
|
|
|
|
|
|
@property
|
|
|
|
def should_poll(self):
|
|
|
|
""" Poll for status regularly. """
|
|
|
|
return True
|
|
|
|
|
|
|
|
@property
|
|
|
|
def is_on(self):
|
|
|
|
""" True if device is on. """
|
|
|
|
return self._state == STATE_ON
|
|
|
|
|
|
|
|
def turn_on(self, **kwargs):
|
|
|
|
""" Turn the device on. """
|
|
|
|
|
2015-05-31 12:00:30 +00:00
|
|
|
_LOGGING.info("Turning on Turtle Mode")
|
|
|
|
self.transmission_client.set_session(
|
|
|
|
alt_speed_enabled=True)
|
2015-05-30 13:34:23 +00:00
|
|
|
|
|
|
|
def turn_off(self, **kwargs):
|
|
|
|
""" Turn the device off. """
|
|
|
|
|
2015-05-31 12:00:30 +00:00
|
|
|
_LOGGING.info("Turning off Turtle Mode ")
|
2015-05-30 13:34:23 +00:00
|
|
|
self.transmission_client.set_session(
|
2015-05-31 12:00:30 +00:00
|
|
|
alt_speed_enabled=False)
|
2015-05-30 13:34:23 +00:00
|
|
|
|
|
|
|
def update(self):
|
|
|
|
""" Gets the latest data from Transmission and updates the state. """
|
|
|
|
|
2015-05-31 12:00:30 +00:00
|
|
|
active = self.transmission_client.get_session(
|
2015-05-30 13:34:23 +00:00
|
|
|
).alt_speed_enabled
|
2015-05-31 12:00:30 +00:00
|
|
|
self._state = STATE_ON if active else STATE_OFF
|