mirror of
https://github.com/python-kasa/python-kasa.git
synced 2024-12-23 11:43:34 +00:00
6115d96c39
* discover runs, prints on since of device 0 * added preliminary support for HS300 * forgot to add smartdevice to commit * added index to CLI * clean up dirty code * added fake sysinfo_hs300 * changed device alias to match MAC * #131 Move _id_to_index into smartstrip so everyone can pass index * Update pyHS100/discover.py Co-Authored-By: jimboca <jimboca3@gmail.com> * refactoring to deduplicate code between smarplug and smartstrip * fixing CI failures for devices without children * incorporating feedback from pull request. * fixing hound violation * changed internal store from list of dicts to dict * changed other methods to dictionary store as well * removed unused optional type from imports * changed plugs to Dict, remove redundant sys_info calls * added more functionality for smart strip, added smart strip tests * updated FakeTransportProtocol for devices with children * corrected hound violations * add click-datetime
685 lines
29 KiB
Python
685 lines
29 KiB
Python
from ..protocol import TPLinkSmartHomeProtocol
|
|
from .. import SmartDeviceException
|
|
import logging
|
|
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
def get_realtime(obj, x, child_ids=[]):
|
|
return {"current":0.268587,"voltage":125.836131,"power":33.495623,"total":0.199000}
|
|
|
|
|
|
def get_monthstat(obj, x, child_ids=[]):
|
|
if x["year"] < 2016:
|
|
return {"month_list":[]}
|
|
|
|
return {"month_list": [{"year": 2016, "month": 11, "energy": 1.089000}, {"year": 2016, "month": 12, "energy": 1.582000}]}
|
|
|
|
|
|
def get_daystat(obj, x, child_ids=[]):
|
|
if x["year"] < 2016:
|
|
return {"day_list":[]}
|
|
|
|
return {"day_list": [{"year": 2016, "month": 11, "day": 24, "energy": 0.026000},
|
|
{"year": 2016, "month": 11, "day": 25, "energy": 0.109000}]}
|
|
|
|
|
|
emeter_support = {"get_realtime": get_realtime,
|
|
"get_monthstat": get_monthstat,
|
|
"get_daystat": get_daystat,}
|
|
|
|
|
|
def get_realtime_units(obj, x):
|
|
return {"power_mw": 10800}
|
|
|
|
|
|
def get_monthstat_units(obj, x):
|
|
if x["year"] < 2016:
|
|
return {"month_list":[]}
|
|
|
|
return {"month_list": [{"year": 2016, "month": 11, "energy_wh": 32}, {"year": 2016, "month": 12, "energy_wh": 16}]}
|
|
|
|
|
|
def get_daystat_units(obj, x):
|
|
if x["year"] < 2016:
|
|
return {"day_list":[]}
|
|
|
|
return {"day_list": [{"year": 2016, "month": 11, "day": 24, "energy_wh": 20},
|
|
{"year": 2016, "month": 11, "day": 25, "energy_wh": 32}]}
|
|
|
|
|
|
emeter_units_support = {"get_realtime": get_realtime_units,
|
|
"get_monthstat": get_monthstat_units,
|
|
"get_daystat": get_daystat_units,}
|
|
|
|
sysinfo_hs300 = {
|
|
'system': {
|
|
'get_sysinfo': {
|
|
'sw_ver': '1.0.6 Build 180627 Rel.081000',
|
|
'hw_ver': '1.0',
|
|
'model': 'HS300(US)',
|
|
'deviceId': '7003ADE7030B7EFADE747104261A7A70931DADF4',
|
|
'oemId': 'FFF22CFF774A0B89F7624BFC6F50D5DE',
|
|
'hwId': '22603EA5E716DEAEA6642A30BE87AFCB',
|
|
'rssi': -53,
|
|
'longitude_i': -1198698,
|
|
'latitude_i': 352737,
|
|
'alias': 'TP-LINK_Power Strip_2233',
|
|
'mic_type': 'IOT.SMARTPLUGSWITCH',
|
|
'feature': 'TIM:ENE',
|
|
'mac': '50:C7:BF:11:22:33',
|
|
'updating': 0,
|
|
'led_off': 0,
|
|
'children': [
|
|
{
|
|
'id': '7003ADE7030B7EFADE747104261A7A70931DADF400',
|
|
'state': 1,
|
|
'alias': 'my plug 1 device',
|
|
'on_time': 5423,
|
|
'next_action': {
|
|
'type': -1
|
|
}
|
|
},
|
|
{
|
|
'id': '7003ADE7030B7EFADE747104261A7A70931DADF401',
|
|
'state': 1,
|
|
'alias': 'my plug 2 device',
|
|
'on_time': 4750,
|
|
'next_action': {
|
|
'type': -1
|
|
}
|
|
},
|
|
{
|
|
'id': '7003ADE7030B7EFADE747104261A7A70931DADF402',
|
|
'state': 1,
|
|
'alias': 'my plug 3 device',
|
|
'on_time': 4748,
|
|
'next_action': {
|
|
'type': -1
|
|
}
|
|
},
|
|
{
|
|
'id': '7003ADE7030B7EFADE747104261A7A70931DADF403',
|
|
'state': 1,
|
|
'alias': 'my plug 4 device',
|
|
'on_time': 4742,
|
|
'next_action': {
|
|
'type': -1
|
|
}
|
|
},
|
|
{
|
|
'id': '7003ADE7030B7EFADE747104261A7A70931DADF404',
|
|
'state': 1,
|
|
'alias': 'my plug 5 device',
|
|
'on_time': 4745,
|
|
'next_action': {
|
|
'type': -1
|
|
}
|
|
},
|
|
{
|
|
'id': '7003ADE7030B7EFADE747104261A7A70931DADF405',
|
|
'state': 1,
|
|
'alias': 'my plug 6 device',
|
|
'on_time': 5028,
|
|
'next_action': {
|
|
'type': -1
|
|
}
|
|
}
|
|
],
|
|
'child_num': 6,
|
|
'err_code': 0
|
|
}
|
|
}
|
|
}
|
|
|
|
sysinfo_hs100 = {'system': {'get_sysinfo':
|
|
{'active_mode': 'schedule',
|
|
'alias': 'My Smart Plug',
|
|
'dev_name': 'Wi-Fi Smart Plug',
|
|
'deviceId': '80061E93E28EEBA9FA1929D15C4678C7172A8AF2',
|
|
'feature': 'TIM',
|
|
'fwId': 'BFF24826FBC561803E49379DBE74FD71',
|
|
'hwId': '22603EA5E716DEAEA6642A30BE87AFCA',
|
|
'hw_ver': '1.0',
|
|
'icon_hash': '',
|
|
'latitude': 12.2,
|
|
'led_off': 0,
|
|
'longitude': 12.2,
|
|
'mac': '50:C7:BF:11:22:33',
|
|
'model': 'HS100(EU)',
|
|
'oemId': '812A90EB2FCF306A993FAD8748024B07',
|
|
'on_time': 255419,
|
|
'relay_state': 1,
|
|
'sw_ver': '1.0.8 Build 151101 Rel.24452',
|
|
'type': 'smartplug',
|
|
'updating': 0}}}
|
|
|
|
sysinfo_hs105 = {'system': {'get_sysinfo':
|
|
{'sw_ver': '1.0.6 Build 160722 Rel.081616',
|
|
'hw_ver': '1.0', 'type': 'IOT.SMARTPLUGSWITCH',
|
|
'model': 'HS105(US)',
|
|
'mac': '50:C7:BF:11:22:33',
|
|
'dev_name': 'Smart Wi-Fi Plug Mini',
|
|
'alias': 'TP-LINK_Smart Plug_CF0B',
|
|
'relay_state': 0,
|
|
'on_time': 0,
|
|
'active_mode': 'none',
|
|
'feature': 'TIM',
|
|
'updating': 0,
|
|
'icon_hash': '',
|
|
'rssi': 33,
|
|
'led_off': 0,
|
|
'longitude_i': -12.2,
|
|
'latitude_i': 12.2,
|
|
'hwId': '60FF6B258734EA6880E186F8C96DDC61',
|
|
'fwId': '00000000000000000000000000000000',
|
|
'deviceId': '800654F32938FCBA8F7327887A38647617',
|
|
'oemId': 'FFF22CFF774A0B89F7624BFC6F50D5DE'}}}
|
|
|
|
sysinfo_hs110 = {'system': {'get_sysinfo':
|
|
{'active_mode': 'schedule',
|
|
'alias': 'Mobile Plug',
|
|
'dev_name': 'Wi-Fi Smart Plug With Energy Monitoring',
|
|
'deviceId': '800654F32938FCBA8F7327887A386476172B5B53',
|
|
'err_code': 0,
|
|
'feature': 'TIM:ENE',
|
|
'fwId': 'E16EB3E95DB6B47B5B72B3FD86FD1438',
|
|
'hwId': '60FF6B258734EA6880E186F8C96DDC61',
|
|
'hw_ver': '1.0',
|
|
'icon_hash': '',
|
|
'latitude': 12.2,
|
|
'led_off': 0,
|
|
'longitude': -12.2,
|
|
'mac': 'AA:BB:CC:11:22:33',
|
|
'model': 'HS110(US)',
|
|
'oemId': 'FFF22CFF774A0B89F7624BFC6F50D5DE',
|
|
'on_time': 9022,
|
|
'relay_state': 1,
|
|
'rssi': -61,
|
|
'sw_ver': '1.0.8 Build 151113 Rel.24658',
|
|
'type': 'IOT.SMARTPLUGSWITCH',
|
|
'updating': 0}
|
|
},
|
|
'emeter': emeter_support,
|
|
}
|
|
|
|
sysinfo_hs110_au_v2 = {'system': {'get_sysinfo':
|
|
{'active_mode': 'none',
|
|
'alias': 'Tplink Test',
|
|
'dev_name': 'Smart Wi-Fi Plug With Energy Monitoring',
|
|
'deviceId': '80062952E2F3D9461CFB91FF21B7868F194F627A',
|
|
'feature': 'TIM:ENE',
|
|
'fwId': '00000000000000000000000000000000',
|
|
'hwId': 'A28C8BB92AFCB6CAFB83A8C00145F7E2',
|
|
'hw_ver': '2.0',
|
|
'icon_hash': '',
|
|
'latitude_i': -1.1,
|
|
'led_off': 0,
|
|
'longitude_i': 2.2,
|
|
'mac': '70:4F:57:12:12:12',
|
|
'model': 'HS110(AU)',
|
|
'oemId': '6480C2101948463DC65D7009CAECDECC',
|
|
'on_time': 0,
|
|
'relay_state': 0,
|
|
'rssi': -70,
|
|
'sw_ver': '1.5.2 Build 171201 Rel.084625',
|
|
'type': 'IOT.SMARTPLUGSWITCH',
|
|
'updating': 0}
|
|
},
|
|
'emeter': {'voltage_mv': 246520, 'power_mw': 258401, 'current_ma': 3104, 'total_wh': 387}}
|
|
|
|
sysinfo_hs200 = {'system': {'get_sysinfo': {'active_mode': 'schedule',
|
|
'alias': 'Christmas Tree Switch',
|
|
'dev_name': 'Wi-Fi Smart Light Switch',
|
|
'deviceId': '8006E0D62C90698C6A3EF72944F56DDC17D0DB80',
|
|
'err_code': 0,
|
|
'feature': 'TIM',
|
|
'fwId': 'DB4F3246CD85AA59CAE738A63E7B9C34',
|
|
'hwId': 'A0E3CC8F5C1166B27A16D56BE262A6D3',
|
|
'hw_ver': '1.0',
|
|
'icon_hash': '',
|
|
'latitude': 12.2,
|
|
'led_off': 0,
|
|
'longitude': -12.2,
|
|
'mac': 'AA:BB:CC:11:22:33',
|
|
'mic_type': 'IOT.SMARTPLUGSWITCH',
|
|
'model': 'HS200(US)',
|
|
'oemId': '4AFE44A41F868FD2340E6D1308D8551D',
|
|
'on_time': 9586,
|
|
'relay_state': 1,
|
|
'rssi': -53,
|
|
'sw_ver': '1.1.0 Build 160521 Rel.085826',
|
|
'updating': 0}}
|
|
}
|
|
|
|
sysinfo_hs220 = {
|
|
"system": {
|
|
"get_sysinfo": {
|
|
"sw_ver": "1.4.8 Build 180109 Rel.171240",
|
|
"hw_ver": "1.0",
|
|
"mic_type": "IOT.SMARTPLUGSWITCH",
|
|
"model": "HS220(US)",
|
|
"mac": "B0:4E:26:11:22:33",
|
|
"dev_name": "Smart Wi-Fi Dimmer",
|
|
"alias": "Chandelier",
|
|
"relay_state": 0,
|
|
"brightness": 25,
|
|
"on_time": 0,
|
|
"active_mode": "none",
|
|
"feature": "TIM",
|
|
"updating": 0,
|
|
"icon_hash": "",
|
|
"rssi": -53,
|
|
"led_off": 0,
|
|
"longitude_i": -12.2,
|
|
"latitude_i": 12.2,
|
|
"hwId": "84DCCF37225C9E55319617F7D5C095BD",
|
|
"fwId": "00000000000000000000000000000000",
|
|
"deviceId": "800695154E6B882428E30F850473F34019A9E999",
|
|
"oemId": "3B13224B2807E0D48A9DD06EBD344CD6",
|
|
"preferred_state":
|
|
[
|
|
{"index": 0, "brightness": 100},
|
|
{"index": 1, "brightness": 75},
|
|
{"index": 2, "brightness": 50},
|
|
{"index": 3, "brightness": 25}
|
|
],
|
|
"next_action": {"type": -1},
|
|
"err_code": 0
|
|
}
|
|
}
|
|
}
|
|
|
|
sysinfo_lb130 = {'system': {'get_sysinfo':
|
|
{'active_mode': 'none',
|
|
'alias': 'Living Room Side Table',
|
|
'ctrl_protocols': {'name': 'Linkie', 'version': '1.0'},
|
|
'description': 'Smart Wi-Fi LED Bulb with Color Changing',
|
|
'dev_state': 'normal',
|
|
'deviceId': '80123C4640E9FC33A9019A0F3FD8BF5C17B7D9A8',
|
|
'disco_ver': '1.0',
|
|
'heapsize': 347000,
|
|
'hwId': '111E35908497A05512E259BB76801E10',
|
|
'hw_ver': '1.0',
|
|
'is_color': 1,
|
|
'is_dimmable': 1,
|
|
'is_factory': False,
|
|
'is_variable_color_temp': 1,
|
|
'light_state': {'brightness': 100,
|
|
'color_temp': 3700,
|
|
'hue': 0,
|
|
'mode': 'normal',
|
|
'on_off': 1,
|
|
'saturation': 0},
|
|
'mic_mac': '50C7BF104865',
|
|
'mic_type': 'IOT.SMARTBULB',
|
|
'model': 'LB130(US)',
|
|
'oemId': '05BF7B3BE1675C5A6867B7A7E4C9F6F7',
|
|
'preferred_state': [{'brightness': 50,
|
|
'color_temp': 2700,
|
|
'hue': 0,
|
|
'index': 0,
|
|
'saturation': 0},
|
|
{'brightness': 100,
|
|
'color_temp': 0,
|
|
'hue': 0,
|
|
'index': 1,
|
|
'saturation': 75},
|
|
{'brightness': 100,
|
|
'color_temp': 0,
|
|
'hue': 120,
|
|
'index': 2,
|
|
'saturation': 75},
|
|
{'brightness': 100,
|
|
'color_temp': 0,
|
|
'hue': 240,
|
|
'index': 3,
|
|
'saturation': 75}],
|
|
'rssi': -55,
|
|
'sw_ver': '1.1.2 Build 160927 Rel.111100'}},
|
|
'smartlife.iot.smartbulb.lightingservice': {'get_light_state':
|
|
{'on_off':1,
|
|
'mode':'normal',
|
|
'hue': 0,
|
|
'saturation': 0,
|
|
'color_temp': 3700,
|
|
'brightness': 100,
|
|
'err_code': 0}},
|
|
'smartlife.iot.common.emeter': emeter_units_support,
|
|
}
|
|
|
|
sysinfo_lb100 = {'system': {
|
|
'sys_info': {
|
|
'emeter': {
|
|
'err_code': -2001,
|
|
'err_msg': 'Module not support'
|
|
},
|
|
'system': {
|
|
'get_sysinfo': {
|
|
'active_mode': 'none',
|
|
'alias': 'New Light',
|
|
'ctrl_protocols': {
|
|
'name': 'Linkie',
|
|
'version': '1.0'
|
|
},
|
|
'description': 'Smart Wi-Fi LED Bulb with Dimmable Light',
|
|
'dev_state': 'normal',
|
|
'deviceId': '8012996ED1F8DA43EFFD58B62BEC5ADE18192F88',
|
|
'disco_ver': '1.0',
|
|
'err_code': 0,
|
|
'heapsize': 340808,
|
|
'hwId': '111E35908497A05512E259BB76801E10',
|
|
'hw_ver': '1.0',
|
|
'is_color': 0,
|
|
'is_dimmable': 1,
|
|
'is_factory': False,
|
|
'is_variable_color_temp': 0,
|
|
'light_state': {
|
|
'dft_on_state': {
|
|
'brightness': 50,
|
|
'color_temp': 2700,
|
|
'hue': 0,
|
|
'mode': 'normal',
|
|
'saturation': 0
|
|
},
|
|
'on_off': 0
|
|
},
|
|
'mic_mac': '50C7BF3393F1',
|
|
'mic_type': 'IOT.SMARTBULB',
|
|
'model': 'LB100(US)',
|
|
'oemId': '264E4E97B2D2B086F289AC1F00B90679',
|
|
'preferred_state': [
|
|
{
|
|
'brightness': 100,
|
|
'color_temp': 2700,
|
|
'hue': 0,
|
|
'index': 0,
|
|
'saturation': 0
|
|
},
|
|
{
|
|
'brightness': 75,
|
|
'color_temp': 2700,
|
|
'hue': 0,
|
|
'index': 1,
|
|
'saturation': 0
|
|
},
|
|
{
|
|
'brightness': 25,
|
|
'color_temp': 2700,
|
|
'hue': 0,
|
|
'index': 2,
|
|
'saturation': 0
|
|
},
|
|
{
|
|
'brightness': 1,
|
|
'color_temp': 2700,
|
|
'hue': 0,
|
|
'index': 3,
|
|
'saturation': 0
|
|
}
|
|
],
|
|
'rssi': -54,
|
|
'sw_ver': '1.2.3 Build 170123 Rel.100146'
|
|
}
|
|
}
|
|
}
|
|
}}
|
|
|
|
sysinfo_lb110 = {'system': {
|
|
'sys_info':
|
|
{'emeter':
|
|
{'err_code': -2001,
|
|
'err_msg': 'Module not support'},
|
|
'system':
|
|
{'get_sysinfo':
|
|
{'active_mode': 'schedule',
|
|
'alias': 'Downstairs Light',
|
|
'ctrl_protocols':
|
|
{'name': 'Linkie',
|
|
'version': '1.0'},
|
|
'description': 'Smart Wi-Fi LED Bulb '
|
|
'with Dimmable Light',
|
|
'dev_state': 'normal',
|
|
'deviceId':
|
|
'80120B3D03E0B639CDF33E3CB1466490187FEF32',
|
|
'disco_ver': '1.0',
|
|
'err_code': 0,
|
|
'heapsize': 309908,
|
|
'hwId': '111E35908497A05512E259BB76801E10',
|
|
'hw_ver': '1.0',
|
|
'is_color': 0,
|
|
'is_dimmable': 1,
|
|
'is_factory': False,
|
|
'is_variable_color_temp': 0,
|
|
'light_state':
|
|
{'dft_on_state':
|
|
{'brightness': 92,
|
|
'color_temp': 2700,
|
|
'hue': 0,
|
|
'mode': 'normal',
|
|
'saturation': 0},
|
|
'on_off': 0},
|
|
'mic_mac': '50C7BF7BE306',
|
|
'mic_type': 'IOT.SMARTBULB',
|
|
'model': 'LB110(EU)',
|
|
'oemId':
|
|
'A68E15472071CB761E5CCFB388A1D8AE',
|
|
'preferred_state': [{'brightness': 100,
|
|
'color_temp': 2700,
|
|
'hue': 0,
|
|
'index': 0,
|
|
'saturation': 0},
|
|
{'brightness': 58,
|
|
'color_temp': 2700,
|
|
'hue': 0,
|
|
'index': 1,
|
|
'saturation': 0},
|
|
{'brightness': 25,
|
|
'color_temp': 2700,
|
|
'hue': 0,
|
|
'index': 2,
|
|
'saturation': 0},
|
|
{'brightness': 1,
|
|
'color_temp': 2700,
|
|
'hue': 0,
|
|
'index': 3,
|
|
'saturation': 0}],
|
|
'rssi': -61,
|
|
'sw_ver': '1.5.5 Build 170623 '
|
|
'Rel.090105'
|
|
}
|
|
}
|
|
}
|
|
}}
|
|
|
|
sysinfo_lb120 = {'system':
|
|
{'sys_info':
|
|
{'system':
|
|
{'get_sysinfo':
|
|
{'active_mode': 'none',
|
|
'alias': 'LB1202',
|
|
'ctrl_protocols': {'name': 'Linkie', 'version': '1.0'},
|
|
'description': 'Smart Wi-Fi LED Bulb with Tunable White Light',
|
|
'dev_state': 'normal',
|
|
'deviceId': 'foo',
|
|
'disco_ver': '1.0',
|
|
'heapsize': 329032,
|
|
'hwId': 'foo',
|
|
'hw_ver': '1.0',
|
|
'is_color': 0,
|
|
'is_dimmable': 1,
|
|
'is_factory': False,
|
|
'is_variable_color_temp': 1,
|
|
'light_state': {'dft_on_state': {'brightness': 31,
|
|
'color_temp': 4100,
|
|
'hue': 0,
|
|
'mode': 'normal',
|
|
'saturation': 0},
|
|
'on_off': 0},
|
|
'mic_mac': '50C7BF33937C',
|
|
'mic_type': 'IOT.SMARTBULB',
|
|
'model': 'LB120(US)',
|
|
'oemId': 'foo',
|
|
'preferred_state': [{'brightness': 100,
|
|
'color_temp': 3500,
|
|
'hue': 0,
|
|
'index': 0,
|
|
'saturation': 0},
|
|
{'brightness': 50,
|
|
'color_temp': 6500,
|
|
'hue': 0,
|
|
'index': 1,
|
|
'saturation': 0},
|
|
{'brightness': 50,
|
|
'color_temp': 2700,
|
|
'hue': 0,
|
|
'index': 2,
|
|
'saturation': 0},
|
|
{'brightness': 1,
|
|
'color_temp': 2700,
|
|
'hue': 0,
|
|
'index': 3,
|
|
'saturation': 0}],
|
|
'rssi': -47,
|
|
'sw_ver': '1.4.3 Build 170504 Rel.144921'}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
def error(target, cmd="no-command", msg="default msg"):
|
|
return {target: {cmd: {"err_code": -1323, "msg": msg}}}
|
|
|
|
|
|
def success(target, cmd, res):
|
|
if res:
|
|
res.update({"err_code": 0})
|
|
else:
|
|
res = {"err_code": 0}
|
|
return {target: {cmd: res}}
|
|
|
|
|
|
class FakeTransportProtocol(TPLinkSmartHomeProtocol):
|
|
def __init__(self, sysinfo, invalid=False):
|
|
""" invalid is set only for testing
|
|
to force query() to throw the exception for non-connected """
|
|
proto = FakeTransportProtocol.baseproto
|
|
for target in sysinfo:
|
|
for cmd in sysinfo[target]:
|
|
proto[target][cmd] = sysinfo[target][cmd]
|
|
self.proto = proto
|
|
self.invalid = invalid
|
|
|
|
def set_alias(self, x, child_ids=[]):
|
|
_LOGGER.debug("Setting alias to %s", x["alias"])
|
|
if child_ids:
|
|
for child in self.proto["system"]["get_sysinfo"]["children"]:
|
|
if child["id"] in child_ids:
|
|
child["alias"] = x["alias"]
|
|
else:
|
|
self.proto["system"]["get_sysinfo"]["alias"] = x["alias"]
|
|
|
|
def set_relay_state(self, x, child_ids=[]):
|
|
_LOGGER.debug("Setting relay state to %s", x["state"])
|
|
|
|
if not child_ids and "children" in self.proto["system"]["get_sysinfo"]:
|
|
for child in self.proto["system"]["get_sysinfo"]["children"]:
|
|
child_ids.append(child["id"])
|
|
|
|
if child_ids:
|
|
for child in self.proto["system"]["get_sysinfo"]["children"]:
|
|
if child["id"] in child_ids:
|
|
child["state"] = x["state"]
|
|
else:
|
|
self.proto["system"]["get_sysinfo"]["relay_state"] = x["state"]
|
|
|
|
def set_led_off(self, x):
|
|
_LOGGER.debug("Setting led off to %s", x)
|
|
self.proto["system"]["get_sysinfo"]["led_off"] = x["off"]
|
|
|
|
def set_mac(self, x):
|
|
_LOGGER.debug("Setting mac to %s", x)
|
|
self.proto["system"]["get_sysinfo"]["mac"] = x
|
|
|
|
def set_hs220_brightness(self, x):
|
|
_LOGGER.debug("Setting brightness to %s", x)
|
|
self.proto["system"]["get_sysinfo"]["brightness"] = x["brightness"]
|
|
|
|
def transition_light_state(self, x):
|
|
_LOGGER.debug("Setting light state to %s", x)
|
|
for key in x:
|
|
self.proto["smartlife.iot.smartbulb.lightingservice"]["get_light_state"][key]=x[key]
|
|
|
|
baseproto = {
|
|
"system": { "set_relay_state": set_relay_state,
|
|
"set_dev_alias": set_alias,
|
|
"set_led_off": set_led_off,
|
|
"get_dev_icon": {"icon": None, "hash": None},
|
|
"set_mac_addr": set_mac,
|
|
"get_sysinfo": None,
|
|
"context": None,
|
|
},
|
|
"emeter": { "get_realtime": None,
|
|
"get_daystat": None,
|
|
"get_monthstat": None,
|
|
"erase_emeter_state": None
|
|
},
|
|
"smartlife.iot.common.emeter": { "get_realtime": None,
|
|
"get_daystat": None,
|
|
"get_monthstat": None,
|
|
"erase_emeter_state": None
|
|
},
|
|
"smartlife.iot.smartbulb.lightingservice": { "get_light_state": None,
|
|
"transition_light_state": transition_light_state,
|
|
},
|
|
"time": { "get_time": { "year": 2017, "month": 1, "mday": 2, "hour": 3, "min": 4, "sec": 5 },
|
|
"get_timezone": {'zone_str': "test", 'dst_offset': -1, 'index': 12, 'tz_str': "test2" },
|
|
"set_timezone": None,
|
|
},
|
|
# HS220 brightness, different setter and getter
|
|
"smartlife.iot.dimmer": { "set_brightness": set_hs220_brightness,
|
|
},
|
|
"context": {"child_ids": None},
|
|
}
|
|
|
|
def query(self, host, request, port=9999):
|
|
if self.invalid:
|
|
raise SmartDeviceException("Invalid connection, can't query!")
|
|
|
|
_LOGGER.debug("Requesting {} from {}:{}".format(request, host, port))
|
|
|
|
proto = self.proto
|
|
|
|
# collect child ids from context
|
|
try:
|
|
child_ids = request["context"]["child_ids"]
|
|
request.pop("context", None)
|
|
except KeyError:
|
|
child_ids = []
|
|
|
|
target = next(iter(request))
|
|
if target not in proto.keys():
|
|
return error(target, msg="target not found")
|
|
|
|
cmd = next(iter(request[target]))
|
|
if cmd not in proto[target].keys():
|
|
return error(target, cmd, msg="command not found")
|
|
|
|
params = request[target][cmd]
|
|
_LOGGER.debug("Going to execute {}.{} (params: {}).. ".format(target, cmd, params))
|
|
|
|
if callable(proto[target][cmd]):
|
|
if child_ids:
|
|
res = proto[target][cmd](self, params, child_ids)
|
|
else:
|
|
res = proto[target][cmd](self, params)
|
|
# verify that change didn't break schema, requires refactoring..
|
|
#TestSmartPlug.sysinfo_schema(self.proto["system"]["get_sysinfo"])
|
|
return success(target, cmd, res)
|
|
elif isinstance(proto[target][cmd], dict):
|
|
return success(target, cmd, proto[target][cmd])
|
|
else:
|
|
raise NotImplementedError("target {} cmd {}".format(target, cmd))
|