forked from indymedia/epicyon
Functions for pgp fingerprints
parent
30f4fbbdb6
commit
6817cc8329
81
pgp.py
81
pgp.py
|
@ -53,6 +53,28 @@ def getPGPpubKey(actorJson: {}) -> str:
|
||||||
return ''
|
return ''
|
||||||
|
|
||||||
|
|
||||||
|
def getPGPfingerprint(actorJson: {}) -> str:
|
||||||
|
"""Returns PGP fingerprint for the given actor
|
||||||
|
"""
|
||||||
|
if not actorJson.get('attachment'):
|
||||||
|
return ''
|
||||||
|
for propertyValue in actorJson['attachment']:
|
||||||
|
if not propertyValue.get('name'):
|
||||||
|
continue
|
||||||
|
if not propertyValue['name'].lower().startswith('openpgp'):
|
||||||
|
continue
|
||||||
|
if not propertyValue.get('type'):
|
||||||
|
continue
|
||||||
|
if not propertyValue.get('value'):
|
||||||
|
continue
|
||||||
|
if propertyValue['type'] != 'PropertyValue':
|
||||||
|
continue
|
||||||
|
if len(propertyValue['value']) < 10:
|
||||||
|
continue
|
||||||
|
return propertyValue['value']
|
||||||
|
return ''
|
||||||
|
|
||||||
|
|
||||||
def setEmailAddress(actorJson: {}, emailAddress: str) -> None:
|
def setEmailAddress(actorJson: {}, emailAddress: str) -> None:
|
||||||
"""Sets the email address for the given actor
|
"""Sets the email address for the given actor
|
||||||
"""
|
"""
|
||||||
|
@ -103,6 +125,13 @@ def setEmailAddress(actorJson: {}, emailAddress: str) -> None:
|
||||||
def setPGPpubKey(actorJson: {}, PGPpubKey: str) -> None:
|
def setPGPpubKey(actorJson: {}, PGPpubKey: str) -> None:
|
||||||
"""Sets a PGP public key for the given actor
|
"""Sets a PGP public key for the given actor
|
||||||
"""
|
"""
|
||||||
|
removeKey = False
|
||||||
|
if not PGPpubKey:
|
||||||
|
removeKey = True
|
||||||
|
else:
|
||||||
|
if '--BEGIN PGP PUBLIC KEY' not in PGPpubKey:
|
||||||
|
removeKey = True
|
||||||
|
|
||||||
if not actorJson.get('attachment'):
|
if not actorJson.get('attachment'):
|
||||||
actorJson['attachment'] = []
|
actorJson['attachment'] = []
|
||||||
|
|
||||||
|
@ -119,8 +148,7 @@ def setPGPpubKey(actorJson: {}, PGPpubKey: str) -> None:
|
||||||
break
|
break
|
||||||
if propertyFound:
|
if propertyFound:
|
||||||
actorJson['attachment'].remove(propertyValue)
|
actorJson['attachment'].remove(propertyValue)
|
||||||
|
if removeKey:
|
||||||
if '--BEGIN PGP PUBLIC KEY' not in PGPpubKey:
|
|
||||||
return
|
return
|
||||||
|
|
||||||
for propertyValue in actorJson['attachment']:
|
for propertyValue in actorJson['attachment']:
|
||||||
|
@ -141,3 +169,52 @@ def setPGPpubKey(actorJson: {}, PGPpubKey: str) -> None:
|
||||||
"value": PGPpubKey
|
"value": PGPpubKey
|
||||||
}
|
}
|
||||||
actorJson['attachment'].append(newPGPpubKey)
|
actorJson['attachment'].append(newPGPpubKey)
|
||||||
|
|
||||||
|
|
||||||
|
def setPGPfingerprint(actorJson: {}, fingerprint: str) -> None:
|
||||||
|
"""Sets a PGP fingerprint for the given actor
|
||||||
|
"""
|
||||||
|
removeFingerprint = False
|
||||||
|
if not fingerprint:
|
||||||
|
removeFingerprint = True
|
||||||
|
else:
|
||||||
|
if len(fingerprint) < 10:
|
||||||
|
removeFingerprint = True
|
||||||
|
|
||||||
|
if not actorJson.get('attachment'):
|
||||||
|
actorJson['attachment'] = []
|
||||||
|
|
||||||
|
# remove any existing value
|
||||||
|
propertyFound = None
|
||||||
|
for propertyValue in actorJson['attachment']:
|
||||||
|
if not propertyValue.get('name'):
|
||||||
|
continue
|
||||||
|
if not propertyValue.get('type'):
|
||||||
|
continue
|
||||||
|
if not propertyValue['name'].lower().startswith('openpgp'):
|
||||||
|
continue
|
||||||
|
propertyFound = propertyValue
|
||||||
|
break
|
||||||
|
if propertyFound:
|
||||||
|
actorJson['attachment'].remove(propertyValue)
|
||||||
|
if removeFingerprint:
|
||||||
|
return
|
||||||
|
|
||||||
|
for propertyValue in actorJson['attachment']:
|
||||||
|
if not propertyValue.get('name'):
|
||||||
|
continue
|
||||||
|
if not propertyValue.get('type'):
|
||||||
|
continue
|
||||||
|
if not propertyValue['name'].lower().startswith('openpgp'):
|
||||||
|
continue
|
||||||
|
if propertyValue['type'] != 'PropertyValue':
|
||||||
|
continue
|
||||||
|
propertyValue['value'] = fingerprint.strip()
|
||||||
|
return
|
||||||
|
|
||||||
|
newPGPfingerprint = {
|
||||||
|
"name": "OpenPGP",
|
||||||
|
"type": "PropertyValue",
|
||||||
|
"value": fingerprint
|
||||||
|
}
|
||||||
|
actorJson['attachment'].append(newPGPfingerprint)
|
||||||
|
|
Loading…
Reference in New Issue