Refactor power control logic in MQTT client to use pattern matching for improved readability
This commit is contained in:
parent
98e1e970c1
commit
be2381429f
1 changed files with 11 additions and 8 deletions
|
@ -74,14 +74,17 @@ class HassClient(Client):
|
|||
def on_command(self, client: Client, userdata: Any, message: MQTTMessage) -> None:
|
||||
payload = message.payload.decode("utf-8")
|
||||
|
||||
if not self.power_on and payload == "POWER_ON":
|
||||
log.info("Cancelling shutdown…")
|
||||
self.power_on = True
|
||||
run(["systemctl", "poweroff", "--when=cancel"])
|
||||
elif self.power_on and payload == "POWER_OFF":
|
||||
log.info("Powering off…")
|
||||
self.power_on = False
|
||||
run(["systemctl", "poweroff", "--when=+1m"])
|
||||
match payload:
|
||||
case "POWER_ON":
|
||||
if not self.power_on:
|
||||
log.info("Cancelling shutdown…")
|
||||
self.power_on = True
|
||||
run(["systemctl", "poweroff", "--when=cancel"])
|
||||
case "POWER_OFF":
|
||||
if self.power_on:
|
||||
log.info("Powering off…")
|
||||
self.power_on = False
|
||||
run(["systemctl", "poweroff", "--when=+1m"])
|
||||
|
||||
self.publish_state()
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue