Skip to content

Commit

Permalink
fix string to cert in mqtt
Browse files Browse the repository at this point in the history
  • Loading branch information
bittles committed Jan 15, 2023
1 parent f1002d1 commit 0e8c3ef
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/ecovacs/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"domain": "ecovacs",
"name": "Ecovacs Bumper",
"version": "1.4.2",
"version": "1.4.3",
"documentation": "https://github.com/bittles/ha_ecovacs_bumper",
"issue_tracker": "https://github.com/bittles/ha_ecovacs_bumper/issues",
"requirements": ["sleekxmppfs==1.4.1", "requests>=2.18", "pycryptodome>=3.4", "pycountry-convert>=0.5", "paho-mqtt>=1.4", "stringcase>=1.2"],
Expand Down
14 changes: 14 additions & 0 deletions custom_components/ecovacs/sucks_mqtt.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,20 @@

from .const import LOGGER

def str_to_bool_or_cert(s):
if s == 'True' or s == True:
return True
elif s == 'False' or s == False:
return False
else:
if not s == None:
if os.path.exists(s): # User could provide a path to a CA Cert as well, which is useful for Bumper
if os.path.isfile(s):
return s
else:
raise ValueError("Certificate path provided is not a file - {}".format(s))
raise ValueError("Cannot covert {} to a bool or certificate path".format(s))

#This is used by EcoVacsIOTMQ and EcoVacsXMPP for _ctl_to_dict
def RepresentsInt(stringvar):
try:
Expand Down

0 comments on commit 0e8c3ef

Please sign in to comment.