Add uptime sensor and state topics for system and user clients
This commit is contained in:
parent
e697a34fca
commit
2c35c39a1c
2 changed files with 28 additions and 0 deletions
hasspy
|
@ -66,5 +66,6 @@ def main() -> int:
|
|||
|
||||
log.info("Shutting down")
|
||||
|
||||
ha.timer.cancel()
|
||||
ha.loop_stop()
|
||||
return 0
|
||||
|
|
|
@ -2,6 +2,7 @@ import io
|
|||
import json
|
||||
import logging
|
||||
import re
|
||||
from datetime import datetime, timezone
|
||||
from pathlib import Path
|
||||
from subprocess import run
|
||||
from threading import Thread, Timer
|
||||
|
@ -150,6 +151,10 @@ class HassSystemClient(HassClient):
|
|||
if code != 0:
|
||||
log.error(f"Failed to execute command: {cmd}")
|
||||
|
||||
@property
|
||||
def state_topic(self) -> str:
|
||||
return f"{self.node_id}/system/state"
|
||||
|
||||
@property
|
||||
def components(self) -> dict[str, dict[str, Any]]:
|
||||
return {
|
||||
|
@ -176,6 +181,14 @@ class HassSystemClient(HassClient):
|
|||
"icon": "mdi:sleep",
|
||||
"payload_press": "SUSPEND",
|
||||
},
|
||||
"uptime": {
|
||||
"unique_id": f"{self.node_id}_uptime",
|
||||
"p": "sensor",
|
||||
"name": "Uptime",
|
||||
"icon": "mdi:clock",
|
||||
"device_class": "timestamp",
|
||||
"value_template": "{{ value_json.uptime|timestamp_utc }}",
|
||||
},
|
||||
}
|
||||
|
||||
@property
|
||||
|
@ -184,8 +197,18 @@ class HassSystemClient(HassClient):
|
|||
"power": "POWER_OFF"
|
||||
if Path("/run/systemd/shutdown/scheduled").exists()
|
||||
else "POWER_ON",
|
||||
"uptime": self.uptime_value,
|
||||
}
|
||||
|
||||
@property
|
||||
def uptime_value(self) -> float | None:
|
||||
code, out = run_command(["uptime", "--since"])
|
||||
if code != 0:
|
||||
log.error("Failed to get uptime")
|
||||
return None
|
||||
|
||||
return datetime.fromisoformat(out.strip()).astimezone(timezone.utc).timestamp()
|
||||
|
||||
|
||||
class HassUserClient(HassClient):
|
||||
commands = {
|
||||
|
@ -224,6 +247,10 @@ class HassUserClient(HassClient):
|
|||
def availability_topic(self) -> str:
|
||||
return f"{self.node_id}/user/availability"
|
||||
|
||||
@property
|
||||
def state_topic(self) -> str:
|
||||
return f"{self.node_id}/user/state"
|
||||
|
||||
@property
|
||||
def components(self) -> dict[str, dict[str, Any]]:
|
||||
return {
|
||||
|
|
Loading…
Add table
Reference in a new issue