2023-02-19 19:43:41 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
import argparse
|
|
|
|
import asyncio
|
|
|
|
import logging
|
|
|
|
import sys
|
|
|
|
import time
|
|
|
|
from getpass import getpass
|
|
|
|
from pathlib import Path
|
|
|
|
from pprint import pprint
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
sys.path.insert(0, str(Path(__file__).parent.parent))
|
|
|
|
|
|
|
|
from pyhon import HonConnection
|
|
|
|
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
def get_arguments():
|
|
|
|
"""Get parsed arguments."""
|
2023-03-04 21:27:10 +01:00
|
|
|
parser = argparse.ArgumentParser(description="pyhOn: Command Line Utility")
|
|
|
|
parser.add_argument("-u", "--user", help="user for haier hOn account")
|
|
|
|
parser.add_argument("-p", "--password", help="password for haier hOn account")
|
2023-02-19 19:43:41 +01:00
|
|
|
return vars(parser.parse_args())
|
|
|
|
|
|
|
|
|
2023-03-06 19:45:46 +01:00
|
|
|
# yaml.dump() would be done the same, but needs an additional dependency...
|
2023-03-04 21:27:10 +01:00
|
|
|
def pretty_print(data, key="", intend=0, is_list=False):
|
|
|
|
if type(data) is list:
|
|
|
|
if key:
|
|
|
|
print(f"{' ' * intend}{'- ' if is_list else ''}{key}:")
|
|
|
|
intend += 1
|
|
|
|
for i, value in enumerate(data):
|
|
|
|
pretty_print(value, intend=intend, is_list=True)
|
|
|
|
elif type(data) is dict:
|
|
|
|
if key:
|
|
|
|
print(f"{' ' * intend}{'- ' if is_list else ''}{key}:")
|
|
|
|
intend += 1
|
|
|
|
for i, (key, value) in enumerate(sorted(data.items())):
|
|
|
|
if is_list and not i:
|
|
|
|
pretty_print(value, key=key, intend=intend, is_list=True)
|
|
|
|
elif is_list:
|
|
|
|
pretty_print(value, key=key, intend=intend + 1)
|
|
|
|
else:
|
|
|
|
pretty_print(value, key=key, intend=intend)
|
|
|
|
else:
|
|
|
|
print(f"{' ' * intend}{'- ' if is_list else ''}{key}{': ' if key else ''}{data}")
|
|
|
|
|
|
|
|
|
2023-03-06 19:45:46 +01:00
|
|
|
def create_command(commands):
|
|
|
|
result = {}
|
|
|
|
for name, command in commands.items():
|
|
|
|
result[name] = {}
|
|
|
|
for parameter, data in command.parameters.items():
|
|
|
|
if data.typology == "enum":
|
|
|
|
result[name][parameter] = data.values
|
|
|
|
if data.typology == "range":
|
|
|
|
result[name][parameter] = {"min": data.min, "max": data.max, "step": data.step}
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
2023-02-19 19:43:41 +01:00
|
|
|
async def main():
|
|
|
|
args = get_arguments()
|
|
|
|
if not (user := args["user"]):
|
2023-03-04 21:27:10 +01:00
|
|
|
user = input("User for hOn account: ")
|
2023-02-19 19:43:41 +01:00
|
|
|
if not (password := args["password"]):
|
2023-03-04 21:27:10 +01:00
|
|
|
password = getpass("Password for hOn account: ")
|
2023-02-19 19:43:41 +01:00
|
|
|
async with HonConnection(user, password) as hon:
|
|
|
|
for device in hon.devices:
|
2023-03-05 18:46:51 +01:00
|
|
|
print("=" * 10, device.appliance_type_name, "-", device.nick_name, "=" * 10)
|
2023-03-04 21:27:10 +01:00
|
|
|
pretty_print({"commands": device.commands})
|
|
|
|
pretty_print({"data": device.data})
|
2023-02-19 19:43:41 +01:00
|
|
|
|
|
|
|
|
|
|
|
def start():
|
|
|
|
try:
|
|
|
|
asyncio.run(main())
|
|
|
|
except KeyboardInterrupt:
|
|
|
|
print("Aborted.")
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
start()
|