Add power notification handling and improve subscription management

This commit is contained in:
Edgar P. Burkhart 2025-03-09 23:20:42 +01:00
parent 2c35c39a1c
commit d48cc1b785
Signed by: edpibu
GPG key ID: 9833D3C5A25BD227

View file

@ -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"