Add power notification handling and improve subscription management
This commit is contained in:
parent
2c35c39a1c
commit
d48cc1b785
1 changed files with 24 additions and 0 deletions
|
@ -151,6 +151,15 @@ class HassSystemClient(HassClient):
|
|||
if code != 0:
|
||||
log.error(f"Failed to execute command: {cmd}")
|
||||
|
||||
match cmd:
|
||||
case "POWER_OFF":
|
||||
self.publish(
|
||||
f"{self.node_id}/user/notify",
|
||||
"System will be shutting down in 1 minute.",
|
||||
)
|
||||
case "POWER_ON":
|
||||
self.publish(f"{self.node_id}/user/notify", "Shutdown cancelled.")
|
||||
|
||||
@property
|
||||
def state_topic(self) -> str:
|
||||
return f"{self.node_id}/system/state"
|
||||
|
@ -243,10 +252,25 @@ class HassUserClient(HassClient):
|
|||
if code != 0:
|
||||
log.error(f"Failed to execute command: {cmd}:{value}")
|
||||
|
||||
def init_subs(self) -> None:
|
||||
super().init_subs()
|
||||
self.subscribe(self.notify_topic)
|
||||
self.message_callback_add(self.notify_topic, self.on_notify)
|
||||
|
||||
def on_notify(self, client: Client, userdata: Any, message: MQTTMessage) -> None:
|
||||
payload = message.payload.decode("utf-8")
|
||||
|
||||
log.info(f"Received notification: {payload}")
|
||||
run_command(["notify-send", payload])
|
||||
|
||||
@property
|
||||
def availability_topic(self) -> str:
|
||||
return f"{self.node_id}/user/availability"
|
||||
|
||||
@property
|
||||
def notify_topic(self) -> str:
|
||||
return f"{self.node_id}/user/notify"
|
||||
|
||||
@property
|
||||
def state_topic(self) -> str:
|
||||
return f"{self.node_id}/user/state"
|
||||
|
|
Loading…
Add table
Reference in a new issue