forked from smartHomeHub/SmartIR
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontroller.py
186 lines (146 loc) · 6.04 KB
/
controller.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
from abc import ABC, abstractmethod
from base64 import b64encode
import binascii
import requests
import logging
import json
from homeassistant.const import ATTR_ENTITY_ID
from . import Helper
_LOGGER = logging.getLogger(__name__)
BROADLINK_CONTROLLER = 'Broadlink'
XIAOMI_CONTROLLER = 'Xiaomi'
MQTT_CONTROLLER = 'MQTT'
LOOKIN_CONTROLLER = 'LOOKin'
ESPHOME_CONTROLLER = 'ESPHome'
ENC_BASE64 = 'Base64'
ENC_HEX = 'Hex'
ENC_PRONTO = 'Pronto'
ENC_RAW = 'Raw'
BROADLINK_COMMANDS_ENCODING = [ENC_BASE64, ENC_HEX, ENC_PRONTO]
XIAOMI_COMMANDS_ENCODING = [ENC_PRONTO, ENC_RAW]
MQTT_COMMANDS_ENCODING = [ENC_RAW]
LOOKIN_COMMANDS_ENCODING = [ENC_PRONTO, ENC_RAW]
ESPHOME_COMMANDS_ENCODING = [ENC_RAW]
def get_controller(hass, controller, encoding, controller_data, delay):
"""Return a controller compatible with the specification provided."""
controllers = {
BROADLINK_CONTROLLER: BroadlinkController,
XIAOMI_CONTROLLER: XiaomiController,
MQTT_CONTROLLER: MQTTController,
LOOKIN_CONTROLLER: LookinController,
ESPHOME_CONTROLLER: ESPHomeController
}
try:
return controllers[controller](hass, controller, encoding, controller_data, delay)
except KeyError:
raise Exception("The controller is not supported.")
class AbstractController(ABC):
"""Representation of a controller."""
def __init__(self, hass, controller, encoding, controller_data, delay):
self.check_encoding(encoding)
self.hass = hass
self._controller = controller
self._encoding = encoding
self._controller_data = controller_data
self._delay = delay
@abstractmethod
def check_encoding(self, encoding):
"""Check if the encoding is supported by the controller."""
pass
@abstractmethod
async def send(self, command):
"""Send a command."""
pass
class BroadlinkController(AbstractController):
"""Controls a Broadlink device."""
def check_encoding(self, encoding):
"""Check if the encoding is supported by the controller."""
if encoding not in BROADLINK_COMMANDS_ENCODING:
raise Exception("The encoding is not supported "
"by the Broadlink controller.")
async def send(self, command):
"""Send a command."""
commands = []
if not isinstance(command, list):
command = [command]
for _command in command:
if self._encoding == ENC_HEX:
try:
_command = binascii.unhexlify(_command)
_command = b64encode(_command).decode('utf-8')
except:
raise Exception("Error while converting "
"Hex to Base64 encoding")
if self._encoding == ENC_PRONTO:
try:
_command = _command.replace(' ', '')
_command = bytearray.fromhex(_command)
_command = Helper.pronto2lirc(_command)
_command = Helper.lirc2broadlink(_command)
_command = b64encode(_command).decode('utf-8')
except:
raise Exception("Error while converting "
"Pronto to Base64 encoding")
commands.append('b64:' + _command)
service_data = {
ATTR_ENTITY_ID: self._controller_data,
'command': commands,
'delay_secs': self._delay
}
await self.hass.services.async_call(
'remote', 'send_command', service_data)
class XiaomiController(AbstractController):
"""Controls a Xiaomi device."""
def check_encoding(self, encoding):
"""Check if the encoding is supported by the controller."""
if encoding not in XIAOMI_COMMANDS_ENCODING:
raise Exception("The encoding is not supported "
"by the Xiaomi controller.")
async def send(self, command):
"""Send a command."""
service_data = {
ATTR_ENTITY_ID: self._controller_data,
'command': self._encoding.lower() + ':' + command
}
await self.hass.services.async_call(
'remote', 'send_command', service_data)
class MQTTController(AbstractController):
"""Controls a MQTT device."""
def check_encoding(self, encoding):
"""Check if the encoding is supported by the controller."""
if encoding not in MQTT_COMMANDS_ENCODING:
raise Exception("The encoding is not supported "
"by the mqtt controller.")
async def send(self, command):
"""Send a command."""
service_data = {
'topic': self._controller_data,
'payload': command
}
await self.hass.services.async_call(
'mqtt', 'publish', service_data)
class LookinController(AbstractController):
"""Controls a Lookin device."""
def check_encoding(self, encoding):
"""Check if the encoding is supported by the controller."""
if encoding not in LOOKIN_COMMANDS_ENCODING:
raise Exception("The encoding is not supported "
"by the LOOKin controller.")
async def send(self, command):
"""Send a command."""
encoding = self._encoding.lower().replace('pronto', 'prontohex')
url = f"http://{self._controller_data}/commands/ir/" \
f"{encoding}/{command}"
await self.hass.async_add_executor_job(requests.get, url)
class ESPHomeController(AbstractController):
"""Controls a ESPHome device."""
def check_encoding(self, encoding):
"""Check if the encoding is supported by the controller."""
if encoding not in ESPHOME_COMMANDS_ENCODING:
raise Exception("The encoding is not supported "
"by the ESPHome controller.")
async def send(self, command):
"""Send a command."""
service_data = {'command': json.loads(command)}
await self.hass.services.async_call(
'esphome', self._controller_data, service_data)