-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathbutton.py
334 lines (280 loc) · 13.4 KB
/
button.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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
import json
import logging
from home_connect_async import Appliance, HomeConnect, HomeConnectError, Events
from homeassistant.components.button import ButtonEntity
from homeassistant.const import CONF_CLIENT_ID, CONF_CLIENT_SECRET
from homeassistant.core import HomeAssistant
from homeassistant.exceptions import HomeAssistantError
from homeassistant.helpers.entity_platform import AddEntitiesCallback
from homeassistant.helpers.typing import ConfigType
from .common import Configuration, EntityBase, EntityManager
from .const import DOMAIN, HOME_CONNECT_DEVICE
_LOGGER = logging.getLogger(__name__)
async def async_setup_entry(hass:HomeAssistant , config_entry:ConfigType, async_add_entities:AddEntitiesCallback) -> None:
""" Add buttons for passed config_entry in HA """
#homeconnect:HomeConnect = hass.data[DOMAIN]['homeconnect']
entry_conf:Configuration = hass.data[DOMAIN][config_entry.entry_id]
homeconnect:HomeConnect = entry_conf["homeconnect"]
entity_manager = EntityManager(async_add_entities, "Button")
def add_appliance(appliance:Appliance) -> None:
conf = entry_conf.get_config()
if appliance.available_programs:
entity_manager.add(StartButton(appliance, None, conf))
entity_manager.add(StopButton(appliance, None, conf))
if appliance.commands:
for command in appliance.commands.values():
# The "BSH.Common.Command.AcknowledgeEvent" command is used to acknowledge the ProgramFinished state
if command.key not in ["BSH.Common.Command.PauseProgram", "BSH.Common.Command.ResumeProgram", "BSH.Common.Command.AcknowledgeEvent"]:
button = CommandButton(appliance, command.key, conf, hc_obj=command)
entity_manager.add(button)
entity_manager.register()
def remove_appliance(appliance:Appliance) -> None:
entity_manager.remove_appliance(appliance)
# First add the integration button
button_name_suffix = "" if entry_conf["primary_config_entry"] else "_"+config_entry.entry_id
async_add_entities([HomeConnectRefreshButton(homeconnect, button_name_suffix), HomeConnectDebugButton(homeconnect, button_name_suffix)])
# Subscribe for events and register existing appliances
homeconnect.register_callback(add_appliance, [Events.PAIRED, Events.DATA_CHANGED, Events.PROGRAM_STARTED, Events.PROGRAM_SELECTED])
homeconnect.register_callback(remove_appliance, Events.DEPAIRED)
for appliance in homeconnect.appliances.values():
add_appliance(appliance)
class StartButton(EntityBase, ButtonEntity):
""" Class for buttons that start the selected program """
@property
def unique_id(self) -> str:
return f'{self.haId}_start_pause'
@property
def name_ext(self) -> str:
match self.translation_key:
case "pause_program":
return "Pause"
case "resume_program":
return "Resume"
return "Start"
@property
def translation_key(self) -> str:
op_state = self._appliance.status.get("BSH.Common.Status.OperationState")
if op_state and op_state.value == "BSH.Common.EnumType.OperationState.Run" \
and "BSH.Common.Command.PauseProgram" in self._appliance.commands:
return "pause_program"
if op_state and op_state.value == "BSH.Common.EnumType.OperationState.Pause" \
and "BSH.Common.Command.ResumeProgram" in self._appliance.commands:
return "resume_program"
return "start_program"
@property
def available(self) -> bool:
op_state = self._appliance.status.get("BSH.Common.Status.OperationState")
return super().available and op_state and \
(
(
op_state.value in ["BSH.Common.EnumType.OperationState.Ready", "BSH.Common.EnumType.OperationState.Inactive" ]
and (
"BSH.Common.Status.RemoteControlStartAllowed" not in self._appliance.status or
self._appliance.status["BSH.Common.Status.RemoteControlStartAllowed"].value
)
and (
(self._appliance.selected_program or self._appliance.startonly_program)
and not self._appliance.active_program
# and self._appliance.available_programs and
# self._appliance.selected_program.key in self._appliance.available_programs
)
)
or (
op_state.value == "BSH.Common.EnumType.OperationState.Run"
and "BSH.Common.Command.PauseProgram" in self._appliance.commands
)
or (
op_state.value == "BSH.Common.EnumType.OperationState.Pause"
and "BSH.Common.Command.ResumeProgram" in self._appliance.commands
)
)
@property
def icon(self) -> str:
if "BSH.Common.Command.PauseProgram" in self._appliance.commands \
and "BSH.Common.Status.OperationState" in self._appliance.status \
and self._appliance.status["BSH.Common.Status.OperationState"].value == "BSH.Common.EnumType.OperationState.Run":
return "mdi:pause"
return "mdi:play"
async def async_press(self) -> None:
""" Handle button press """
try:
op_state = self._appliance.status.get("BSH.Common.Status.OperationState")
if op_state and op_state.value in ["BSH.Common.EnumType.OperationState.Ready", "BSH.Common.EnumType.OperationState.Inactive" ]:
await self._appliance.async_start_program()
elif op_state and op_state.value == "BSH.Common.EnumType.OperationState.Run":
await self._appliance.async_pause_active_program()
elif op_state and op_state.value == "BSH.Common.EnumType.OperationState.Pause":
await self._appliance.async_resume_paused_program()
except HomeConnectError as ex:
if ex.error_description:
raise HomeAssistantError(f"Failed to start the selected program: {ex.error_description} ({ex.code})")
raise HomeAssistantError(f"Failed to start the selected program ({ex.code})")
async def async_added_to_hass(self):
"""Run when this Entity has been added to HA."""
events = [ Events.CONNECTION_CHANGED,
Events.DATA_CHANGED,
Events.PROGRAM_SELECTED,
Events.PROGRAM_STARTED,
Events.PROGRAM_FINISHED,
"BSH.Common.Status.*",
"BSH.Common.Setting.PowerState"
]
self._appliance.register_callback(self.async_on_update, events)
async def async_will_remove_from_hass(self):
"""Entity being removed from hass."""
events = [ Events.CONNECTION_CHANGED,
Events.DATA_CHANGED,
Events.PROGRAM_SELECTED,
Events.PROGRAM_STARTED,
Events.PROGRAM_FINISHED,
"BSH.Common.Status.*",
"BSH.Common.Setting.PowerState"
]
self._appliance.deregister_callback(self.async_on_update, events)
async def async_on_update(self, appliance:Appliance, key:str, value) -> None:
self.async_write_ha_state()
class StopButton(EntityBase, ButtonEntity):
""" Class for buttons that start the selected program """
@property
def unique_id(self) -> str:
return f'{self.haId}_stop'
@property
def name_ext(self) -> str:
return "Stop"
@property
def translation_key(self) -> str:
return "stop_program"
@property
def available(self) -> bool:
return super().available \
and self._appliance.active_program \
and (
"BSH.Common.Status.RemoteControlStartAllowed" not in self._appliance.status or
self._appliance.status["BSH.Common.Status.RemoteControlStartAllowed"].value
)
@property
def icon(self) -> str:
return "mdi:stop"
async def async_press(self) -> None:
""" Handle button press """
try:
await self._appliance.async_stop_active_program()
except HomeConnectError as ex:
if ex.error_description:
raise HomeAssistantError(f"Failed to stop the selected program: {ex.error_description} ({ex.code})")
raise HomeAssistantError(f"Failed to stop the selected program ({ex.code})")
async def async_added_to_hass(self):
"""Run when this Entity has been added to HA."""
events = [ Events.CONNECTION_CHANGED,
Events.DATA_CHANGED,
Events.PROGRAM_SELECTED,
Events.PROGRAM_STARTED,
Events.PROGRAM_FINISHED,
"BSH.Common.Status.*",
"BSH.Common.Setting.PowerState"
]
self._appliance.register_callback(self.async_on_update, events)
async def async_will_remove_from_hass(self):
"""Entity being removed from hass."""
events = [ Events.CONNECTION_CHANGED,
Events.DATA_CHANGED,
Events.PROGRAM_SELECTED,
Events.PROGRAM_STARTED,
Events.PROGRAM_FINISHED,
"BSH.Common.Status.*",
"BSH.Common.Setting.PowerState"
]
self._appliance.deregister_callback(self.async_on_update, events)
async def async_on_update(self, appliance:Appliance, key:str, value) -> None:
self.async_write_ha_state()
class CommandButton(EntityBase, ButtonEntity):
""" Class for running a HC command """
@property
def name_ext(self) -> str|None:
return self._hc_obj.name
@property
def icon(self) -> str:
return self.get_entity_setting('icon', "mdi:button-pointer")
@property
def available(self) -> bool:
return super().available and self._appliance.commands and self._key in self._appliance.commands
async def async_press(self) -> None:
""" Handle button press """
try:
await self._appliance.async_send_command(self._key, True)
except HomeConnectError as ex:
if ex.error_description:
raise HomeAssistantError(f"Failed to stop the selected program: {ex.error_description} ({ex.code})")
raise HomeAssistantError(f"Failed to stop the selected program ({ex.code})")
async def async_on_update(self, appliance:Appliance, key:str, value) -> None:
self.async_write_ha_state()
class HomeConnectRefreshButton(ButtonEntity):
""" Class for a button to trigger a global refresh of Home Connect data """
_attr_has_entity_name = True
def __init__(self, homeconnect:HomeConnect, name_suffix:str) -> None:
self._homeconnect = homeconnect
self._name_suffix = name_suffix
self.entity_id = f'home_connect.{self.unique_id}'
@property
def device_info(self):
"""Return information to link this entity with the correct device."""
return HOME_CONNECT_DEVICE
@property
def unique_id(self) -> str:
return "homeconnect_refresh" + self._name_suffix
@property
def translation_key(self) -> str:
return "homeconnect_refresh"
@property
def icon(self) -> str:
return "mdi:cloud-refresh"
@property
def available(self) -> bool:
return True
async def async_press(self) -> None:
""" Handle button press """
try:
self._homeconnect.start_load_data_task(refresh=HomeConnect.RefreshMode.ALL)
except HomeConnectError as ex:
if ex.error_description:
raise HomeAssistantError(f"Failed to refresh the Home Connect data: {ex.error_description} ({ex.code})")
raise HomeAssistantError(f"Failed to refresh the Home Connect data ({ex.code})")
class HomeConnectDebugButton(ButtonEntity):
""" Class for a button to trigger a global refresh of Home Connect data """
_attr_has_entity_name = True
def __init__(self, homeconnect:HomeConnect, name_suffix:str) -> None:
self._homeconnect = homeconnect
self._name_suffix = name_suffix
self.entity_id = f'home_connect.{self.unique_id}'
@property
def device_info(self):
"""Return information to link this entity with the correct device."""
return HOME_CONNECT_DEVICE
@property
def unique_id(self) -> str:
return "homeconnect_debug" + self._name_suffix
# @property
# def name(self) -> str:
# return "homeconnect_debug"
# return None
#return "Home Connect Debug Info"
@property
def translation_key(self) -> str:
return "homeconnect_debug"
@property
def icon(self) -> str:
return "mdi:bug-check"
@property
def available(self) -> bool:
return True
async def async_press(self) -> None:
""" Handle button press """
try:
conf = {k:v for (k,v) in self.hass.data[DOMAIN].items() if isinstance(v, (str, int, float, dict, list)) and k not in [CONF_CLIENT_ID, CONF_CLIENT_SECRET] }
js=json.dumps(conf, indent=2, default=lambda o: '<not serializable>')
#js=json.dumps(self.hass.data[DOMAIN], indent=2, default=lambda o: '<not serializable>')
_LOGGER.error(js)
js=self._homeconnect.to_json(indent=2)
_LOGGER.error(js)
except Exception as ex:
raise HomeAssistantError("Failed to serialize to JSON")