FreeDATA/modem/api_validations.py

13 lines
442 B
Python
Raw Normal View History

import re
def validate_freedata_callsign(callsign):
regexp = "^[a-zA-Z]+\d+\w+-\d{1,2}$"
return re.compile(regexp).match(callsign) is not None
2024-01-18 10:35:44 +00:00
def validate_message_attachment(attachment):
for field in ['name', 'type', 'data']:
if field not in attachment:
raise ValueError(f"Attachment missing '{field}'")
if len(attachment[field]) < 1:
raise ValueError(f"Attachment has empty '{field}'")