epicyon/tox.py

101 lines
2.9 KiB
Python

__filename__ = "tox.py"
__author__ = "Bob Mottram"
__license__ = "AGPL3+"
__version__ = "1.2.0"
__maintainer__ = "Bob Mottram"
__email__ = "bob@libreserver.org"
__status__ = "Production"
__module_group__ = "Profile Metadata"
def getToxAddress(actor_json: {}) -> str:
"""Returns tox address for the given actor
"""
if not actor_json.get('attachment'):
return ''
for property_value in actor_json['attachment']:
if not property_value.get('name'):
continue
if not property_value['name'].lower().startswith('tox'):
continue
if not property_value.get('type'):
continue
if not property_value.get('value'):
continue
if property_value['type'] != 'PropertyValue':
continue
property_value['value'] = property_value['value'].strip()
if len(property_value['value']) != 76:
continue
if property_value['value'].upper() != property_value['value']:
continue
if '"' in property_value['value']:
continue
if ' ' in property_value['value']:
continue
if ',' in property_value['value']:
continue
if '.' in property_value['value']:
continue
return property_value['value']
return ''
def setToxAddress(actor_json: {}, toxAddress: str) -> None:
"""Sets an tox address for the given actor
"""
notToxAddress = False
if len(toxAddress) != 76:
notToxAddress = True
if toxAddress.upper() != toxAddress:
notToxAddress = True
if '"' in toxAddress:
notToxAddress = True
if ' ' in toxAddress:
notToxAddress = True
if '.' in toxAddress:
notToxAddress = True
if ',' in toxAddress:
notToxAddress = True
if '<' in toxAddress:
notToxAddress = True
if not actor_json.get('attachment'):
actor_json['attachment'] = []
# remove any existing value
propertyFound = None
for property_value in actor_json['attachment']:
if not property_value.get('name'):
continue
if not property_value.get('type'):
continue
if not property_value['name'].lower().startswith('tox'):
continue
propertyFound = property_value
break
if propertyFound:
actor_json['attachment'].remove(propertyFound)
if notToxAddress:
return
for property_value in actor_json['attachment']:
if not property_value.get('name'):
continue
if not property_value.get('type'):
continue
if not property_value['name'].lower().startswith('tox'):
continue
if property_value['type'] != 'PropertyValue':
continue
property_value['value'] = toxAddress
return
newToxAddress = {
"name": "Tox",
"type": "PropertyValue",
"value": toxAddress
}
actor_json['attachment'].append(newToxAddress)