Refactor & add unittests for almost all functionality, add tox for running tests on py27 and py35 (#17)
* Refactor & add unittests for almost all functionality, add tox for running tests on py27 and py35
This commit adds unit tests for current api functionality.
- currently no mocking, all tests are run on the device.
- the library is now compatible with python 2.7 and python 3.5, use tox for tests
- schema checks are done with voluptuous
refactoring:
- protocol is separated into its own file, smartplug adapted to receive protocol worker as parameter.
- cleaned up the initialization routine, initialization is done on use, not on creation of smartplug
- added model and features properties, identity kept for backwards compatibility
- no more storing of local variables outside _sys_info, paves a way to handle state changes sanely (without complete reinitialization)
* Fix CI warnings, remove unused leftover code
* Rename _initialize to _fetch_sysinfo, as that's what it does.
* examples.cli: fix identify call, prettyprint sysinfo, update readme which had false format for led setting
* Add tox-travis for automated testing.
2016-12-16 22:51:56 +00:00
|
|
|
import json
|
|
|
|
import socket
|
2017-01-17 13:38:23 +00:00
|
|
|
import struct
|
Refactor & add unittests for almost all functionality, add tox for running tests on py27 and py35 (#17)
* Refactor & add unittests for almost all functionality, add tox for running tests on py27 and py35
This commit adds unit tests for current api functionality.
- currently no mocking, all tests are run on the device.
- the library is now compatible with python 2.7 and python 3.5, use tox for tests
- schema checks are done with voluptuous
refactoring:
- protocol is separated into its own file, smartplug adapted to receive protocol worker as parameter.
- cleaned up the initialization routine, initialization is done on use, not on creation of smartplug
- added model and features properties, identity kept for backwards compatibility
- no more storing of local variables outside _sys_info, paves a way to handle state changes sanely (without complete reinitialization)
* Fix CI warnings, remove unused leftover code
* Rename _initialize to _fetch_sysinfo, as that's what it does.
* examples.cli: fix identify call, prettyprint sysinfo, update readme which had false format for led setting
* Add tox-travis for automated testing.
2016-12-16 22:51:56 +00:00
|
|
|
import logging
|
|
|
|
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
class TPLinkSmartHomeProtocol:
|
|
|
|
"""
|
|
|
|
Implementation of the TP-Link Smart Home Protocol
|
|
|
|
|
|
|
|
Encryption/Decryption methods based on the works of
|
|
|
|
Lubomir Stroetmann and Tobias Esser
|
|
|
|
|
|
|
|
https://www.softscheck.com/en/reverse-engineering-tp-link-hs110/
|
|
|
|
https://github.com/softScheck/tplink-smartplug/
|
|
|
|
|
|
|
|
which are licensed under the Apache License, Version 2.0
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
"""
|
2017-01-07 22:44:57 +00:00
|
|
|
INITIALIZATION_VECTOR = 171
|
|
|
|
DEFAULT_PORT = 9999
|
|
|
|
DEFAULT_TIMEOUT = 5
|
Refactor & add unittests for almost all functionality, add tox for running tests on py27 and py35 (#17)
* Refactor & add unittests for almost all functionality, add tox for running tests on py27 and py35
This commit adds unit tests for current api functionality.
- currently no mocking, all tests are run on the device.
- the library is now compatible with python 2.7 and python 3.5, use tox for tests
- schema checks are done with voluptuous
refactoring:
- protocol is separated into its own file, smartplug adapted to receive protocol worker as parameter.
- cleaned up the initialization routine, initialization is done on use, not on creation of smartplug
- added model and features properties, identity kept for backwards compatibility
- no more storing of local variables outside _sys_info, paves a way to handle state changes sanely (without complete reinitialization)
* Fix CI warnings, remove unused leftover code
* Rename _initialize to _fetch_sysinfo, as that's what it does.
* examples.cli: fix identify call, prettyprint sysinfo, update readme which had false format for led setting
* Add tox-travis for automated testing.
2016-12-16 22:51:56 +00:00
|
|
|
|
|
|
|
@staticmethod
|
2017-01-07 22:44:57 +00:00
|
|
|
def query(host, request, port=DEFAULT_PORT):
|
Refactor & add unittests for almost all functionality, add tox for running tests on py27 and py35 (#17)
* Refactor & add unittests for almost all functionality, add tox for running tests on py27 and py35
This commit adds unit tests for current api functionality.
- currently no mocking, all tests are run on the device.
- the library is now compatible with python 2.7 and python 3.5, use tox for tests
- schema checks are done with voluptuous
refactoring:
- protocol is separated into its own file, smartplug adapted to receive protocol worker as parameter.
- cleaned up the initialization routine, initialization is done on use, not on creation of smartplug
- added model and features properties, identity kept for backwards compatibility
- no more storing of local variables outside _sys_info, paves a way to handle state changes sanely (without complete reinitialization)
* Fix CI warnings, remove unused leftover code
* Rename _initialize to _fetch_sysinfo, as that's what it does.
* examples.cli: fix identify call, prettyprint sysinfo, update readme which had false format for led setting
* Add tox-travis for automated testing.
2016-12-16 22:51:56 +00:00
|
|
|
"""
|
|
|
|
Request information from a TP-Link SmartHome Device and return the
|
|
|
|
response.
|
|
|
|
|
|
|
|
:param str host: ip address of the device
|
|
|
|
:param int port: port on the device (default: 9999)
|
|
|
|
:param request: command to send to the device (can be either dict or
|
|
|
|
json string)
|
|
|
|
:return:
|
|
|
|
"""
|
|
|
|
if isinstance(request, dict):
|
|
|
|
request = json.dumps(request)
|
|
|
|
|
|
|
|
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
2017-01-07 22:42:31 +00:00
|
|
|
sock.settimeout(5.0)
|
|
|
|
try:
|
|
|
|
sock.connect((host, port))
|
|
|
|
|
|
|
|
_LOGGER.debug("> (%i) %s", len(request), request)
|
|
|
|
sock.send(TPLinkSmartHomeProtocol.encrypt(request))
|
|
|
|
|
|
|
|
buffer = bytes()
|
2017-01-17 13:38:23 +00:00
|
|
|
# Some devices send responses with a length header of 0 and
|
|
|
|
# terminate with a zero size chunk. Others send the length and
|
|
|
|
# will hang if we attempt to read more data.
|
|
|
|
length = -1
|
2017-01-07 22:42:31 +00:00
|
|
|
while True:
|
|
|
|
chunk = sock.recv(4096)
|
2017-01-17 13:38:23 +00:00
|
|
|
if length == -1:
|
|
|
|
length = struct.unpack(">I", chunk[0:4])[0]
|
2017-01-07 22:42:31 +00:00
|
|
|
buffer += chunk
|
2017-01-17 13:38:23 +00:00
|
|
|
if (length > 0 and len(buffer) >= length + 4) or not chunk:
|
2017-01-07 22:42:31 +00:00
|
|
|
break
|
|
|
|
|
|
|
|
finally:
|
2017-03-19 14:53:40 +00:00
|
|
|
try:
|
|
|
|
sock.shutdown(socket.SHUT_RDWR)
|
|
|
|
sock.close()
|
|
|
|
except OSError:
|
|
|
|
# OSX raises OSError when shutdown() gets called on a closed
|
|
|
|
# socket. We ignore it here as the data has already been read
|
|
|
|
# into the buffer at this point.
|
|
|
|
pass
|
Refactor & add unittests for almost all functionality, add tox for running tests on py27 and py35 (#17)
* Refactor & add unittests for almost all functionality, add tox for running tests on py27 and py35
This commit adds unit tests for current api functionality.
- currently no mocking, all tests are run on the device.
- the library is now compatible with python 2.7 and python 3.5, use tox for tests
- schema checks are done with voluptuous
refactoring:
- protocol is separated into its own file, smartplug adapted to receive protocol worker as parameter.
- cleaned up the initialization routine, initialization is done on use, not on creation of smartplug
- added model and features properties, identity kept for backwards compatibility
- no more storing of local variables outside _sys_info, paves a way to handle state changes sanely (without complete reinitialization)
* Fix CI warnings, remove unused leftover code
* Rename _initialize to _fetch_sysinfo, as that's what it does.
* examples.cli: fix identify call, prettyprint sysinfo, update readme which had false format for led setting
* Add tox-travis for automated testing.
2016-12-16 22:51:56 +00:00
|
|
|
|
|
|
|
response = TPLinkSmartHomeProtocol.decrypt(buffer[4:])
|
|
|
|
_LOGGER.debug("< (%i) %s", len(response), response)
|
|
|
|
|
|
|
|
return json.loads(response)
|
|
|
|
|
2017-01-07 22:44:57 +00:00
|
|
|
@staticmethod
|
|
|
|
def discover(timeout=DEFAULT_TIMEOUT, port=DEFAULT_PORT):
|
|
|
|
"""
|
|
|
|
Sends discovery message to 255.255.255.255:9999 in order
|
|
|
|
to detect available supported devices in the local network,
|
|
|
|
and waits for given timeout for answers from devices.
|
|
|
|
|
|
|
|
:param timeout: How long to wait for responses, defaults to 5
|
|
|
|
:param port: port to send broadcast messages, defaults to 9999.
|
|
|
|
:rtype: list[dict]
|
|
|
|
:return: Array of json objects {"ip", "port", "sys_info"}
|
|
|
|
"""
|
|
|
|
discovery_query = {"system": {"get_sysinfo": None},
|
|
|
|
"emeter": {"get_realtime": None}}
|
|
|
|
target = "255.255.255.255"
|
|
|
|
|
|
|
|
sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
|
|
|
|
sock.setsockopt(socket.SOL_SOCKET, socket.SO_BROADCAST, 1)
|
|
|
|
sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
|
|
|
|
sock.settimeout(timeout)
|
|
|
|
|
|
|
|
req = json.dumps(discovery_query)
|
|
|
|
_LOGGER.debug("Sending discovery to %s:%s", target, port)
|
|
|
|
|
|
|
|
encrypted_req = TPLinkSmartHomeProtocol.encrypt(req)
|
|
|
|
sock.sendto(encrypted_req[4:], (target, port))
|
|
|
|
|
|
|
|
devices = []
|
|
|
|
_LOGGER.debug("Waiting %s seconds for responses...", timeout)
|
|
|
|
|
|
|
|
try:
|
|
|
|
while True:
|
|
|
|
data, addr = sock.recvfrom(4096)
|
|
|
|
ip, port = addr
|
|
|
|
info = json.loads(TPLinkSmartHomeProtocol.decrypt(data))
|
|
|
|
|
|
|
|
devices.append({"ip": ip, "port": port, "sys_info": info})
|
2017-03-17 13:32:50 +00:00
|
|
|
except socket.timeout:
|
|
|
|
_LOGGER.debug("Got socket timeout, which is okay.")
|
2017-01-07 22:44:57 +00:00
|
|
|
except Exception as ex:
|
|
|
|
_LOGGER.error("Got exception %s", ex, exc_info=True)
|
|
|
|
|
|
|
|
return devices
|
|
|
|
|
Refactor & add unittests for almost all functionality, add tox for running tests on py27 and py35 (#17)
* Refactor & add unittests for almost all functionality, add tox for running tests on py27 and py35
This commit adds unit tests for current api functionality.
- currently no mocking, all tests are run on the device.
- the library is now compatible with python 2.7 and python 3.5, use tox for tests
- schema checks are done with voluptuous
refactoring:
- protocol is separated into its own file, smartplug adapted to receive protocol worker as parameter.
- cleaned up the initialization routine, initialization is done on use, not on creation of smartplug
- added model and features properties, identity kept for backwards compatibility
- no more storing of local variables outside _sys_info, paves a way to handle state changes sanely (without complete reinitialization)
* Fix CI warnings, remove unused leftover code
* Rename _initialize to _fetch_sysinfo, as that's what it does.
* examples.cli: fix identify call, prettyprint sysinfo, update readme which had false format for led setting
* Add tox-travis for automated testing.
2016-12-16 22:51:56 +00:00
|
|
|
@staticmethod
|
|
|
|
def encrypt(request):
|
|
|
|
"""
|
|
|
|
Encrypt a request for a TP-Link Smart Home Device.
|
|
|
|
|
|
|
|
:param request: plaintext request data
|
|
|
|
:return: ciphertext request
|
|
|
|
"""
|
2017-01-07 22:44:57 +00:00
|
|
|
key = TPLinkSmartHomeProtocol.INITIALIZATION_VECTOR
|
2017-01-17 13:38:23 +00:00
|
|
|
buffer = bytearray(struct.pack(">I", len(request)))
|
Refactor & add unittests for almost all functionality, add tox for running tests on py27 and py35 (#17)
* Refactor & add unittests for almost all functionality, add tox for running tests on py27 and py35
This commit adds unit tests for current api functionality.
- currently no mocking, all tests are run on the device.
- the library is now compatible with python 2.7 and python 3.5, use tox for tests
- schema checks are done with voluptuous
refactoring:
- protocol is separated into its own file, smartplug adapted to receive protocol worker as parameter.
- cleaned up the initialization routine, initialization is done on use, not on creation of smartplug
- added model and features properties, identity kept for backwards compatibility
- no more storing of local variables outside _sys_info, paves a way to handle state changes sanely (without complete reinitialization)
* Fix CI warnings, remove unused leftover code
* Rename _initialize to _fetch_sysinfo, as that's what it does.
* examples.cli: fix identify call, prettyprint sysinfo, update readme which had false format for led setting
* Add tox-travis for automated testing.
2016-12-16 22:51:56 +00:00
|
|
|
|
|
|
|
for char in request:
|
|
|
|
cipher = key ^ ord(char)
|
|
|
|
key = cipher
|
|
|
|
buffer.append(cipher)
|
|
|
|
|
|
|
|
return buffer
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def decrypt(ciphertext):
|
|
|
|
"""
|
|
|
|
Decrypt a response of a TP-Link Smart Home Device.
|
|
|
|
|
|
|
|
:param ciphertext: encrypted response data
|
|
|
|
:return: plaintext response
|
|
|
|
"""
|
2017-01-07 22:44:57 +00:00
|
|
|
key = TPLinkSmartHomeProtocol.INITIALIZATION_VECTOR
|
Refactor & add unittests for almost all functionality, add tox for running tests on py27 and py35 (#17)
* Refactor & add unittests for almost all functionality, add tox for running tests on py27 and py35
This commit adds unit tests for current api functionality.
- currently no mocking, all tests are run on the device.
- the library is now compatible with python 2.7 and python 3.5, use tox for tests
- schema checks are done with voluptuous
refactoring:
- protocol is separated into its own file, smartplug adapted to receive protocol worker as parameter.
- cleaned up the initialization routine, initialization is done on use, not on creation of smartplug
- added model and features properties, identity kept for backwards compatibility
- no more storing of local variables outside _sys_info, paves a way to handle state changes sanely (without complete reinitialization)
* Fix CI warnings, remove unused leftover code
* Rename _initialize to _fetch_sysinfo, as that's what it does.
* examples.cli: fix identify call, prettyprint sysinfo, update readme which had false format for led setting
* Add tox-travis for automated testing.
2016-12-16 22:51:56 +00:00
|
|
|
buffer = []
|
|
|
|
|
|
|
|
ciphertext = ciphertext.decode('latin-1')
|
|
|
|
|
|
|
|
for char in ciphertext:
|
|
|
|
plain = key ^ ord(char)
|
|
|
|
key = ord(char)
|
|
|
|
buffer.append(chr(plain))
|
|
|
|
|
|
|
|
plaintext = ''.join(buffer)
|
|
|
|
|
|
|
|
return plaintext
|