hOn/scripts/sensor_docs.py

92 lines
2.9 KiB
Python
Raw Normal View History

2023-04-22 23:36:31 +02:00
#!/usr/bin/env python
2023-04-17 23:18:27 +02:00
import re
2023-04-22 23:36:31 +02:00
import sys
2023-04-17 23:18:27 +02:00
from pathlib import Path
2023-05-10 18:13:05 +02:00
2023-04-22 23:36:31 +02:00
if __name__ == "__main__":
sys.path.insert(0, str(Path(__file__).parent.parent))
2023-04-16 23:35:43 +02:00
from custom_components.hon.binary_sensor import BINARY_SENSORS
from custom_components.hon.button import BUTTONS
2023-05-10 18:13:05 +02:00
from custom_components.hon.climate import CLIMATES
2023-04-16 23:35:43 +02:00
from custom_components.hon.number import NUMBERS
from custom_components.hon.select import SELECTS
from custom_components.hon.sensor import SENSORS
2023-04-17 23:18:27 +02:00
from custom_components.hon.switch import SWITCHES, HonSwitchEntityDescription
2023-04-16 23:35:43 +02:00
APPLIANCES = {
"AC": "Air conditioner",
"AP": "Air purifier",
"AS": "Air scanner",
"DW": "Dish washer",
"HO": "Hood",
"IH": "Hob",
"MW": "Microwave",
"OV": "Oven",
"REF": "Fridge",
"RVC": "Robot vacuum cleaner",
"TD": "Tumble dryer",
"WC": "Wine Cellar",
"WD": "Washer dryer",
"WH": "Water Heater",
"WM": "Washing machine",
}
ENTITY_CATEGORY_SORT = ["control", "config", "sensor"]
entities = {
"binary_sensor": BINARY_SENSORS,
"button": BUTTONS,
"number": NUMBERS,
"select": SELECTS,
"sensor": SENSORS,
"switch": SWITCHES,
2023-05-10 18:13:05 +02:00
"climate": CLIMATES,
2023-04-16 23:35:43 +02:00
}
result = {}
for entity_type, appliances in entities.items():
for appliance, data in appliances.items():
for entity in data:
2023-04-17 23:18:27 +02:00
if (
isinstance(entity, HonSwitchEntityDescription)
and entity.entity_category != "config"
and "settings." not in entity.key
2023-04-17 23:18:27 +02:00
):
key = f"{entity.turn_on_key}` / `{entity.turn_off_key}"
else:
key = entity.key
2023-04-24 21:38:05 +02:00
attributes = (key, entity.name, entity.icon, entity_type)
2023-05-10 18:13:05 +02:00
category = (
"control"
if entity_type in ["switch", "button", "climate"]
else "sensor"
)
2023-04-16 23:35:43 +02:00
result.setdefault(appliance, {}).setdefault(
entity.entity_category or category, []
).append(attributes)
2023-04-17 23:18:27 +02:00
text = ""
2023-04-16 23:35:43 +02:00
for appliance, categories in sorted(result.items()):
2023-04-17 23:18:27 +02:00
text += f"\n### {APPLIANCES[appliance]}\n"
2023-04-16 23:35:43 +02:00
categories = {k: categories[k] for k in ENTITY_CATEGORY_SORT if k in categories}
for category, data in categories.items():
2023-04-17 23:18:27 +02:00
text += f"#### {str(category).capitalize()}s\n"
2023-04-24 21:38:05 +02:00
text += "| Name | Icon | Entity | Key |\n"
text += "| --- | --- | --- | --- |\n"
for key, name, icon, entity_type in sorted(data, key=lambda d: d[1]):
2023-04-23 02:01:14 +02:00
icon = f"`{icon.replace('mdi:', '')}`" if icon else ""
2023-04-24 21:38:05 +02:00
text += f"| {name} | {icon} | `{entity_type}` | `{key}` |\n"
2023-04-17 23:18:27 +02:00
with open(Path(__file__).parent.parent / "README.md", "r") as file:
readme = file.read()
readme = re.sub(
"(## Appliance Features\n)(?:.|\\s)+?([^#]## |\\Z)",
f"\\1{text}\\2",
readme,
re.DOTALL,
)
with open(Path(__file__).parent.parent / "README.md", "w") as file:
file.write(readme)