fix: Catch errors fir no records returned via API
All checks were successful
Build Docker / Build Main Image (push) Successful in 20s
Build Docker / Build SLDs Image (push) Successful in 19s

This commit is contained in:
Nathan Woodburn 2023-11-16 15:11:54 +11:00
parent f49a14c5b2
commit 0ca9a8ac91
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1

30
varo.py
View File

@ -67,10 +67,11 @@ def get_auth_id(domain):
}
r = requests.post(url, headers=headers, json=data)
r = r.json()
if 'data' not in r:
return ""
for record in r['data']:
if record['name'] == domain + "." + city_domain:
if 'profile avatar=' not in record['content']:
return record['uuid']
if 'profile avatar=' not in record['content']:
return record['uuid']
return ""
def get_auth(domain):
@ -91,10 +92,12 @@ def get_auth(domain):
}
r = requests.post(url, headers=headers, json=data)
r = r.json()
if 'data' not in r:
return ""
for record in r['data']:
if record['name'] == domain + "." + city_domain:
if 'profile avatar=' not in record['content']:
return record['content']
if 'profile avatar=' not in record['content']:
return record['content']
return ""
def get_zone():
@ -149,13 +152,14 @@ def update_avatar(avatar,domain):
r = requests.post(url, headers=headers, json=data)
r = r.json()
record_id = ""
for record in r['data']:
if record['name'] == domain + "." + city_domain:
if 'profile avatar=' in record['content']:
if record['content'].split("profile avatar=")[1] == avatar:
print("Avatar already set", flush=True)
return "Avatar already set"
record_id = record['uuid']
if 'data' in r:
for record in r['data']:
if record['name'] == domain + "." + city_domain:
if 'profile avatar=' in record['content']:
if record['content'].split("profile avatar=")[1] == avatar:
print("Avatar already set", flush=True)
return "Avatar already set"
record_id = record['uuid']
if record_id == "":
data = {