mirror of https://gitlab.com/bashrc2/epicyon
Validate before showing LXMF address
parent
dec6c57394
commit
c048ca1057
39
lxmf.py
39
lxmf.py
|
|
@ -14,6 +14,18 @@ from utils import remove_html
|
||||||
VALID_LXMF_CHARS = set('0123456789abcdefghijklmnopqrstuvwxyz')
|
VALID_LXMF_CHARS = set('0123456789abcdefghijklmnopqrstuvwxyz')
|
||||||
|
|
||||||
|
|
||||||
|
def _is_valid_lxmf_address(lxmf_address: str) -> bool:
|
||||||
|
"""Is the given LXMF address valid?
|
||||||
|
"""
|
||||||
|
if len(lxmf_address) != 32:
|
||||||
|
return False
|
||||||
|
if lxmf_address.lower() != lxmf_address:
|
||||||
|
return False
|
||||||
|
if not set(lxmf_address).issubset(VALID_LXMF_CHARS):
|
||||||
|
return False
|
||||||
|
return True
|
||||||
|
|
||||||
|
|
||||||
def get_lxmf_address(actor_json: {}) -> str:
|
def get_lxmf_address(actor_json: {}) -> str:
|
||||||
"""Returns lxmf address for the given actor
|
"""Returns lxmf address for the given actor
|
||||||
"""
|
"""
|
||||||
|
|
@ -44,35 +56,12 @@ def get_lxmf_address(actor_json: {}) -> str:
|
||||||
continue
|
continue
|
||||||
property_value[prop_value_name] = \
|
property_value[prop_value_name] = \
|
||||||
property_value[prop_value_name].strip()
|
property_value[prop_value_name].strip()
|
||||||
if len(property_value[prop_value_name]) != 76:
|
if not _is_valid_lxmf_address(property_value[prop_value_name]):
|
||||||
continue
|
continue
|
||||||
if property_value[prop_value_name].upper() != \
|
return property_value[prop_value_name]
|
||||||
property_value[prop_value_name]:
|
|
||||||
continue
|
|
||||||
if '"' in property_value[prop_value_name]:
|
|
||||||
continue
|
|
||||||
if ' ' in property_value[prop_value_name]:
|
|
||||||
continue
|
|
||||||
if ',' in property_value[prop_value_name]:
|
|
||||||
continue
|
|
||||||
if '.' in property_value[prop_value_name]:
|
|
||||||
continue
|
|
||||||
return remove_html(property_value[prop_value_name])
|
|
||||||
return ''
|
return ''
|
||||||
|
|
||||||
|
|
||||||
def _is_valid_lxmf_address(lxmf_address: str) -> bool:
|
|
||||||
"""Is the given LXMF address valid?
|
|
||||||
"""
|
|
||||||
if len(lxmf_address) != 32:
|
|
||||||
return False
|
|
||||||
if lxmf_address.lower() != lxmf_address:
|
|
||||||
return False
|
|
||||||
if not set(lxmf_address).issubset(VALID_LXMF_CHARS):
|
|
||||||
return False
|
|
||||||
return True
|
|
||||||
|
|
||||||
|
|
||||||
def set_lxmf_address(actor_json: {}, lxmf_address: str) -> None:
|
def set_lxmf_address(actor_json: {}, lxmf_address: str) -> None:
|
||||||
"""Sets an lxmf address for the given actor
|
"""Sets an lxmf address for the given actor
|
||||||
"""
|
"""
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue