better detect unknown cave identifer strings from users

This commit is contained in:
Philip Sargent 2023-07-25 21:07:13 +03:00
parent 5ce21564fc
commit af552a3d62

View File

@ -233,14 +233,19 @@ def cavewallets(request, caveid):
for z in zilchwallets:
zcaveid = z.cave()
if zcaveid:
if str(zcaveid) in Gcavelookup:
fcave = Gcavelookup[str(zcaveid)]
cleanid = str(zcaveid).strip("'[]'")
if cleanid in Gcavelookup:
fcave = Gcavelookup[cleanid]
if str(fcave.slug()) == caveid:
# print(f' - Found one ! {z.walletname=} {zcaveid=}')
wallets.add(z)
elif cleanid in ['surface', 'unknown', '']:
message = f" ! In {z.walletname} ignore '{cleanid}' "
print(message)
pass
else:
wurl = f"/walletedit/{z.walletname.replace('#',':')}"
message = f" ! In {z.walletname} there is an unrecognised cave name '{zcaveid}' (out of {len(Gcavelookup):,} cave names and aliases)"
message = f" ! In {z.walletname} there is an unrecognised cave name '{cleanid}' (out of {len(Gcavelookup):,} cave names and aliases)"
print(message)
DataIssue.objects.update_or_create(parser="scans", message=message, url=wurl)