mirror of https://gitlab.com/bashrc2/epicyon
Also check 'to' and 'cc' fields within followers and unlisted posts
parent
6ee7fd3bf4
commit
a470c78dda
12
utils.py
12
utils.py
|
@ -2641,9 +2641,13 @@ def is_followers_post(post_json_object: {}) -> bool:
|
|||
return False
|
||||
if not post_json_object['object'].get('to'):
|
||||
return False
|
||||
if isinstance(post_json_object['object']['to'], list):
|
||||
for recipient in post_json_object['object']['to']:
|
||||
if recipient.endswith('/followers'):
|
||||
return True
|
||||
elif isinstance(post_json_object['object']['to'], str):
|
||||
if post_json_object['object']['to'].endswith('/followers'):
|
||||
return True
|
||||
return False
|
||||
|
||||
|
||||
|
@ -2661,17 +2665,25 @@ def is_unlisted_post(post_json_object: {}) -> bool:
|
|||
if not post_json_object['object'].get('cc'):
|
||||
return False
|
||||
has_followers = False
|
||||
if isinstance(post_json_object['object']['to'], list):
|
||||
for recipient in post_json_object['object']['to']:
|
||||
if recipient.endswith('/followers'):
|
||||
has_followers = True
|
||||
break
|
||||
elif isinstance(post_json_object['object']['to'], str):
|
||||
if post_json_object['object']['to'].endswith('/followers'):
|
||||
has_followers = True
|
||||
if not has_followers:
|
||||
return False
|
||||
if isinstance(post_json_object['object']['cc'], list):
|
||||
for recipient in post_json_object['object']['cc']:
|
||||
if recipient.endswith('#Public') or \
|
||||
recipient == 'as:Public' or \
|
||||
recipient == 'Public':
|
||||
return True
|
||||
elif isinstance(post_json_object['object']['cc'], str):
|
||||
if post_json_object['object']['cc'].endswith('#Public'):
|
||||
return True
|
||||
return False
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue