More checking for actor updates

merge-requests/30/head
Bob Mottram 2021-07-19 09:59:30 +01:00
parent d53bf9a5f7
commit 90417b5f8e
1 changed files with 12 additions and 1 deletions

View File

@ -62,7 +62,10 @@ def _outboxPersonReceiveUpdate(recentPostsCache: {},
if not messageJson.get('type'):
return
print("messageJson['type'] " + messageJson['type'])
if not isinstance(messageJson['type'], str):
if debug:
print('DEBUG: c2s actor update type is not a string')
return
if messageJson['type'] != 'Update':
return
if not hasObjectDict(messageJson):
@ -73,6 +76,10 @@ def _outboxPersonReceiveUpdate(recentPostsCache: {},
if debug:
print('DEBUG: c2s actor update - no type')
return
if not isinstance(messageJson['object']['type'], str):
if debug:
print('DEBUG: c2s actor update object type is not a string')
return
if messageJson['object']['type'] != 'Person':
if debug:
print('DEBUG: not a c2s actor update')
@ -89,6 +96,10 @@ def _outboxPersonReceiveUpdate(recentPostsCache: {},
if debug:
print('DEBUG: c2s actor update has no id field')
return
if not isinstance(messageJson['id'], str):
if debug:
print('DEBUG: c2s actor update id is not a string')
return
actor = \
httpPrefix + '://' + getFullDomain(domain, port) + '/users/' + nickname
if len(messageJson['to']) != 1: