__filename__ = "donate.py" __author__ = "Bob Mottram" __license__ = "AGPL3+" __version__ = "1.2.0" __maintainer__ = "Bob Mottram" __email__ = "bob@libreserver.org" __status__ = "Production" __module_group__ = "Profile Metadata" def _get_donation_types() -> []: return ('patreon', 'paypal', 'gofundme', 'liberapay', 'kickstarter', 'indiegogo', 'crowdsupply', 'subscribestar') def _get_websiteStrings() -> []: return ['www', 'website', 'web', 'homepage'] def get_donation_url(actor_json: {}) -> str: """Returns a link used for donations """ if not actor_json.get('attachment'): return '' donationType = _get_donation_types() for property_value in actor_json['attachment']: if not property_value.get('name'): continue if property_value['name'].lower() not in donationType: continue if not property_value.get('type'): continue if not property_value.get('value'): continue if property_value['type'] != 'PropertyValue': continue if ' str: """Returns a web address link """ if not actor_json.get('attachment'): return '' matchStrings = _get_websiteStrings() matchStrings.append(translate['Website'].lower()) for property_value in actor_json['attachment']: if not property_value.get('name'): continue if property_value['name'].lower() not in matchStrings: continue if not property_value.get('type'): continue if not property_value.get('value'): continue if property_value['type'] != 'PropertyValue': continue return property_value['value'] return '' def set_donation_url(actor_json: {}, donate_url: str) -> None: """Sets a link used for donations """ notUrl = False if '.' not in donate_url: notUrl = True if '://' not in donate_url: notUrl = True if ' ' in donate_url: notUrl = True if '<' in donate_url: notUrl = True if not actor_json.get('attachment'): actor_json['attachment'] = [] donationType = _get_donation_types() donateName = None for paymentService in donationType: if paymentService in donate_url: donateName = paymentService if not donateName: return # 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() != donateName: continue propertyFound = property_value break if propertyFound: actor_json['attachment'].remove(propertyFound) if notUrl: return donateValue = \ '' + \ donate_url + '' for property_value in actor_json['attachment']: if not property_value.get('name'): continue if not property_value.get('type'): continue if property_value['name'].lower() != donateName: continue if property_value['type'] != 'PropertyValue': continue property_value['value'] = donateValue return newDonate = { "name": donateName, "type": "PropertyValue", "value": donateValue } actor_json['attachment'].append(newDonate) def set_website(actor_json: {}, website_url: str, translate: {}) -> None: """Sets a web address """ website_url = website_url.strip() notUrl = False if '.' not in website_url: notUrl = True if '://' not in website_url: notUrl = True if ' ' in website_url: notUrl = True if '<' in website_url: notUrl = True if not actor_json.get('attachment'): actor_json['attachment'] = [] matchStrings = _get_websiteStrings() matchStrings.append(translate['Website'].lower()) # 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 property_value['name'].lower() not in matchStrings: continue propertyFound = property_value break if propertyFound: actor_json['attachment'].remove(propertyFound) if notUrl: return newEntry = { "name": 'Website', "type": "PropertyValue", "value": website_url } actor_json['attachment'].append(newEntry)