Merge pull request #31 from Meatballs1/set_multiple_values

Support JSON arrays in input data
This commit is contained in:
pmagyar
2024-03-21 09:20:40 +01:00
committed by GitHub

View File

@@ -93,104 +93,107 @@ class HCDevice:
return result return result
# Based on PR submitted https://github.com/Skons/hcpy/pull/1 # Based on PR submitted https://github.com/Skons/hcpy/pull/1
def test_program_data(self, data): def test_program_data(self, data_array):
if "program" not in data: for data in data_array:
raise TypeError("Message data invalid, no program specified.") if "program" not in data:
raise TypeError("Message data invalid, no program specified.")
if isinstance(data["program"], int) is False: if isinstance(data["program"], int) is False:
raise TypeError("Message data invalid, UID in 'program' must be an integer.") raise TypeError("Message data invalid, UID in 'program' must be an integer.")
# devices.json stores UID as string # devices.json stores UID as string
uid = str(data["program"]) uid = str(data["program"])
if uid not in self.features: if uid not in self.features:
raise ValueError( raise ValueError(
f"Unable to configure appliance. Program UID {uid} is not valid" f"Unable to configure appliance. Program UID {uid} is not valid"
" for this device." " for this device."
) )
feature = self.features[uid] feature = self.features[uid]
# Diswasher is Dishcare.Dishwasher.Program.{name} # Diswasher is Dishcare.Dishwasher.Program.{name}
# Hood is Cooking.Common.Program.{name} # Hood is Cooking.Common.Program.{name}
# May also be in the format BSH.Common.Program.Favorite.001 # May also be in the format BSH.Common.Program.Favorite.001
if ".Program." not in feature["name"]: if ".Program." not in feature["name"]:
raise ValueError( raise ValueError(
f"Unable to configure appliance. Program UID {uid} is not a valid" f"Unable to configure appliance. Program UID {uid} is not a valid"
f" program - {feature['name']}." f" program - {feature['name']}."
) )
if "options" in data: if "options" in data:
for option in data["options"]: for option in data["options"]:
option_uid = option["uid"] option_uid = option["uid"]
if str(option_uid) not in self.features: if str(option_uid) not in self.features:
raise ValueError( raise ValueError(
f"Unable to configure appliance. Option UID {option_uid} is not" f"Unable to configure appliance. Option UID {option_uid} is not"
" valid for this device." " valid for this device."
) )
# Test the feature of an appliance agains a data object # Test the feature of an appliance agains a data object
def test_feature(self, data): def test_feature(self, data_array):
if "uid" not in data: for data in data_array:
raise Exception("Unable to configure appliance. UID is required.") if "uid" not in data:
raise Exception("Unable to configure appliance. UID is required.")
if isinstance(data["uid"], int) is False: if isinstance(data["uid"], int) is False:
raise Exception("Unable to configure appliance. UID must be an integer.") raise Exception("Unable to configure appliance. UID must be an integer.")
if "value" not in data: if "value" not in data:
raise Exception("Unable to configure appliance. Value is required.") raise Exception("Unable to configure appliance. Value is required.")
# Check if the uid is present for this appliance # Check if the uid is present for this appliance
uid = str(data["uid"]) uid = str(data["uid"])
if uid not in self.features: if uid not in self.features:
raise Exception(f"Unable to configure appliance. UID {uid} is not valid.") raise Exception(f"Unable to configure appliance. UID {uid} is not valid.")
feature = self.features[uid] feature = self.features[uid]
# check the access level of the feature # check the access level of the feature
print(now(), self.name, f"Processing feature {feature['name']} with uid {uid}") print(now(), self.name, f"Processing feature {feature['name']} with uid {uid}")
if "access" not in feature: if "access" not in feature:
raise Exception(
"Unable to configure appliance. "
f"Feature {feature['name']} with uid {uid} does not have access."
)
access = feature["access"].lower()
if access != "readwrite" and access != "writeonly":
raise Exception(
"Unable to configure appliance. "
f"Feature {feature['name']} with uid {uid} has got access {feature['access']}."
)
# check if selected list with values is allowed
if "values" in feature:
if isinstance(data["value"], int) is False:
raise Exception(
f"Unable to configure appliance. The value {data['value']} must be an integer."
f" Allowed values are {feature['values']}."
)
value = str(data["value"])
# values are strings in the feature list,
# but always seem to be an integer. An integer must be provided
if value not in feature["values"]:
raise Exception( raise Exception(
"Unable to configure appliance. " "Unable to configure appliance. "
f"Value {data['value']} is not a valid value. " f"Feature {feature['name']} with uid {uid} does not have access."
f"Allowed values are {feature['values']}. "
) )
if "min" in feature: access = feature["access"].lower()
min = int(feature["min"]) if access != "readwrite" and access != "writeonly":
max = int(feature["max"])
if (
isinstance(data["value"], int) is False
or data["value"] < min
or data["value"] > max
):
raise Exception( raise Exception(
"Unable to configure appliance. " "Unable to configure appliance. "
f"Value {data['value']} is not a valid value. " f"Feature {feature['name']} with uid {uid} has got access {feature['access']}."
f"The value must be an integer in the range {min} and {max}."
) )
# check if selected list with values is allowed
if "values" in feature:
if isinstance(data["value"], int) is False:
raise Exception(
f"Unable to configure appliance. The value {data['value']} must "
f"be an integer. Allowed values are {feature['values']}."
)
value = str(data["value"])
# values are strings in the feature list,
# but always seem to be an integer. An integer must be provided
if value not in feature["values"]:
raise Exception(
"Unable to configure appliance. "
f"Value {data['value']} is not a valid value. "
f"Allowed values are {feature['values']}. "
)
if "min" in feature:
min = int(feature["min"])
max = int(feature["max"])
if (
isinstance(data["value"], int) is False
or data["value"] < min
or data["value"] > max
):
raise Exception(
"Unable to configure appliance. "
f"Value {data['value']} is not a valid value. "
f"The value must be an integer in the range {min} and {max}."
)
def recv(self): def recv(self):
try: try:
buf = self.ws.recv() buf = self.ws.recv()
@@ -230,6 +233,9 @@ class HCDevice:
} }
if data is not None: if data is not None:
if isinstance(data, list) is False:
data = [data]
if action == "POST": if action == "POST":
if resource == "/ro/values": if resource == "/ro/values":
# Raises exceptions on failure # Raises exceptions on failure
@@ -238,7 +244,7 @@ class HCDevice:
# Raises exception on failure # Raises exception on failure
self.test_program_data(data) self.test_program_data(data)
msg["data"] = [data] msg["data"] = data
try: try:
self.ws.send(msg) self.ws.send(msg)