epicyon/like.py

482 lines
17 KiB
Python
Raw Normal View History

2020-04-01 10:44:33 +00:00
__filename__ = "like.py"
__author__ = "Bob Mottram"
__license__ = "AGPL3+"
2021-01-26 10:07:42 +00:00
__version__ = "1.2.0"
2020-04-01 10:44:33 +00:00
__maintainer__ = "Bob Mottram"
2021-09-10 16:14:50 +00:00
__email__ = "bob@libreserver.org"
2020-04-01 10:44:33 +00:00
__status__ = "Production"
2021-06-15 15:08:12 +00:00
__module_group__ = "ActivityPub"
2019-07-02 11:13:45 +00:00
2021-09-03 12:00:23 +00:00
import os
from pprint import pprint
2021-12-26 17:12:07 +00:00
from utils import has_object_string
2021-12-26 15:54:46 +00:00
from utils import has_object_string_object
2021-12-26 17:12:07 +00:00
from utils import has_object_stringType
2021-12-26 18:17:37 +00:00
from utils import remove_domain_port
2021-12-26 10:57:03 +00:00
from utils import has_object_dict
2021-12-26 12:19:00 +00:00
from utils import has_users_path
2021-12-26 12:45:03 +00:00
from utils import get_full_domain
2021-12-27 11:20:57 +00:00
from utils import remove_id_ending
2021-12-27 20:47:05 +00:00
from utils import url_permitted
2021-12-27 22:19:18 +00:00
from utils import get_nickname_from_actor
2021-12-27 19:05:25 +00:00
from utils import get_domain_from_actor
2021-12-26 20:36:08 +00:00
from utils import locate_post
2021-12-27 23:23:07 +00:00
from utils import undo_likes_collection_entry
2021-12-26 17:53:07 +00:00
from utils import has_group_type
2021-12-26 10:19:59 +00:00
from utils import local_actor_url
2021-12-26 15:13:34 +00:00
from utils import load_json
2021-12-26 14:47:21 +00:00
from utils import save_json
2021-12-27 11:05:24 +00:00
from utils import remove_post_from_cache
2021-12-26 23:41:34 +00:00
from utils import get_cached_post_filename
2021-12-29 21:55:09 +00:00
from posts import send_signed_json
from session import post_json
from webfinger import webfinger_handle
2021-12-28 21:36:27 +00:00
from auth import create_basic_auth_header
2021-12-29 21:55:09 +00:00
from posts import get_person_box
2019-07-11 12:29:31 +00:00
2020-04-01 10:44:33 +00:00
2021-12-29 21:55:09 +00:00
def no_of_likes(post_json_object: {}) -> int:
2021-11-10 12:16:03 +00:00
"""Returns the number of likes ona given post
"""
2021-12-25 22:09:19 +00:00
obj = post_json_object
2021-12-26 10:57:03 +00:00
if has_object_dict(post_json_object):
2021-12-25 22:09:19 +00:00
obj = post_json_object['object']
2021-11-10 12:16:03 +00:00
if not obj.get('likes'):
return 0
if not isinstance(obj['likes'], dict):
return 0
if not obj['likes'].get('items'):
obj['likes']['items'] = []
obj['likes']['totalItems'] = 0
return len(obj['likes']['items'])
2021-12-29 21:55:09 +00:00
def liked_by_person(post_json_object: {}, nickname: str, domain: str) -> bool:
"""Returns True if the given post is liked by the given person
2019-08-01 09:05:09 +00:00
"""
2021-12-29 21:55:09 +00:00
if no_of_likes(post_json_object) == 0:
2019-08-01 09:05:09 +00:00
return False
2020-09-05 11:00:21 +00:00
actorMatch = domain + '/users/' + nickname
2021-10-15 09:13:04 +00:00
2021-12-25 22:09:19 +00:00
obj = post_json_object
2021-12-26 10:57:03 +00:00
if has_object_dict(post_json_object):
2021-12-25 22:09:19 +00:00
obj = post_json_object['object']
2021-10-15 09:13:04 +00:00
for item in obj['likes']['items']:
2019-08-01 09:05:09 +00:00
if item['actor'].endswith(actorMatch):
return True
return False
2020-04-01 10:44:33 +00:00
2021-12-29 21:55:09 +00:00
def _create_like(recent_posts_cache: {},
session, base_dir: str, federation_list: [],
nickname: str, domain: str, port: int,
ccList: [], http_prefix: str,
objectUrl: str, actorLiked: str,
client_to_server: bool,
send_threads: [], postLog: [],
person_cache: {}, cached_webfingers: {},
debug: bool, project_version: str,
signing_priv_key_pem: str) -> {}:
2019-07-02 11:13:45 +00:00
"""Creates a like
2019-07-12 09:10:09 +00:00
actor is the person doing the liking
'to' might be a specific person (actor) whose post was liked
object is typically the url of the message which was liked
2019-07-02 11:13:45 +00:00
"""
2021-12-27 20:47:05 +00:00
if not url_permitted(objectUrl, federation_list):
2019-07-02 11:13:45 +00:00
return None
2021-12-26 12:45:03 +00:00
fullDomain = get_full_domain(domain, port)
2019-08-07 11:02:15 +00:00
2020-04-01 10:44:33 +00:00
newLikeJson = {
2019-08-18 11:07:06 +00:00
"@context": "https://www.w3.org/ns/activitystreams",
2019-07-02 11:13:45 +00:00
'type': 'Like',
2021-12-26 10:19:59 +00:00
'actor': local_actor_url(http_prefix, nickname, fullDomain),
2019-08-18 16:58:50 +00:00
'object': objectUrl
2019-07-02 11:13:45 +00:00
}
2019-07-11 12:29:31 +00:00
if ccList:
2020-04-01 10:44:33 +00:00
if len(ccList) > 0:
newLikeJson['cc'] = ccList
2019-07-10 09:47:07 +00:00
# Extract the domain and nickname from a statuses link
2020-04-01 10:44:33 +00:00
likedPostNickname = None
likedPostDomain = None
likedPostPort = None
2021-12-26 00:07:44 +00:00
group_account = False
2019-11-15 09:54:19 +00:00
if actorLiked:
2021-12-27 22:19:18 +00:00
likedPostNickname = get_nickname_from_actor(actorLiked)
2021-12-27 19:05:25 +00:00
likedPostDomain, likedPostPort = get_domain_from_actor(actorLiked)
2021-12-26 17:53:07 +00:00
group_account = has_group_type(base_dir, actorLiked, person_cache)
2019-11-15 09:54:19 +00:00
else:
2021-12-26 12:19:00 +00:00
if has_users_path(objectUrl):
2021-12-27 22:19:18 +00:00
likedPostNickname = get_nickname_from_actor(objectUrl)
2021-12-27 19:05:25 +00:00
likedPostDomain, likedPostPort = get_domain_from_actor(objectUrl)
if '/' + str(likedPostNickname) + '/' in objectUrl:
actorLiked = \
objectUrl.split('/' + likedPostNickname + '/')[0] + \
'/' + likedPostNickname
2021-12-26 00:07:44 +00:00
group_account = \
2021-12-26 17:53:07 +00:00
has_group_type(base_dir, actorLiked, person_cache)
2019-07-10 09:47:07 +00:00
if likedPostNickname:
2021-12-26 23:41:34 +00:00
post_filename = locate_post(base_dir, nickname, domain, objectUrl)
if not post_filename:
2021-12-25 16:17:53 +00:00
print('DEBUG: like base_dir: ' + base_dir)
2020-04-03 16:36:21 +00:00
print('DEBUG: like nickname: ' + nickname)
print('DEBUG: like domain: ' + domain)
print('DEBUG: like objectUrl: ' + objectUrl)
2019-07-11 12:29:31 +00:00
return None
2020-03-22 21:16:02 +00:00
2021-12-29 21:55:09 +00:00
update_likes_collection(recent_posts_cache,
base_dir, post_filename, objectUrl,
newLikeJson['actor'],
nickname, domain, debug, None)
send_signed_json(newLikeJson, session, base_dir,
nickname, domain, port,
likedPostNickname, likedPostDomain, likedPostPort,
'https://www.w3.org/ns/activitystreams#Public',
http_prefix, True, client_to_server, federation_list,
send_threads, postLog, cached_webfingers,
person_cache,
debug, project_version, None, group_account,
signing_priv_key_pem, 7367374)
2019-07-10 09:47:07 +00:00
return newLikeJson
2020-04-01 10:44:33 +00:00
2021-12-29 21:55:09 +00:00
def like_post(recent_posts_cache: {},
session, base_dir: str, federation_list: [],
nickname: str, domain: str, port: int, http_prefix: str,
likeNickname: str, likeDomain: str, likePort: int,
ccList: [],
likeStatusNumber: int, client_to_server: bool,
send_threads: [], postLog: [],
person_cache: {}, cached_webfingers: {},
debug: bool, project_version: str,
signing_priv_key_pem: str) -> {}:
2019-11-15 09:54:19 +00:00
"""Likes a given status post. This is only used by unit tests
2019-07-02 14:02:58 +00:00
"""
2021-12-26 12:45:03 +00:00
likeDomain = get_full_domain(likeDomain, likePort)
2020-04-01 10:44:33 +00:00
2021-12-26 10:19:59 +00:00
actorLiked = local_actor_url(http_prefix, likeNickname, likeDomain)
2020-04-03 16:36:21 +00:00
objectUrl = actorLiked + '/statuses/' + str(likeStatusNumber)
2020-04-01 10:44:33 +00:00
2021-12-29 21:55:09 +00:00
return _create_like(recent_posts_cache,
session, base_dir, federation_list,
nickname, domain, port,
ccList, http_prefix, objectUrl, actorLiked,
client_to_server,
send_threads, postLog, person_cache, cached_webfingers,
debug, project_version, signing_priv_key_pem)
def send_like_via_server(base_dir: str, session,
fromNickname: str, password: str,
fromDomain: str, fromPort: int,
http_prefix: str, likeUrl: str,
cached_webfingers: {}, person_cache: {},
debug: bool, project_version: str,
signing_priv_key_pem: str) -> {}:
2019-07-17 18:33:41 +00:00
"""Creates a like via c2s
"""
if not session:
2021-12-29 21:55:09 +00:00
print('WARN: No session for send_like_via_server')
2019-07-17 18:33:41 +00:00
return 6
2021-12-26 12:45:03 +00:00
fromDomainFull = get_full_domain(fromDomain, fromPort)
2020-04-03 16:36:21 +00:00
2021-12-26 10:19:59 +00:00
actor = local_actor_url(http_prefix, fromNickname, fromDomainFull)
2019-07-17 18:33:41 +00:00
2020-04-01 10:44:33 +00:00
newLikeJson = {
2019-08-18 11:07:06 +00:00
"@context": "https://www.w3.org/ns/activitystreams",
2019-07-17 18:33:41 +00:00
'type': 'Like',
2020-04-03 16:36:21 +00:00
'actor': actor,
2019-08-18 16:58:50 +00:00
'object': likeUrl
2019-07-17 18:33:41 +00:00
}
2021-12-25 17:09:22 +00:00
handle = http_prefix + '://' + fromDomainFull + '/@' + fromNickname
2019-07-17 18:33:41 +00:00
# lookup the inbox for the To handle
2021-12-29 21:55:09 +00:00
wfRequest = webfinger_handle(session, handle, http_prefix,
cached_webfingers,
fromDomain, project_version, debug, False,
signing_priv_key_pem)
2019-07-17 18:33:41 +00:00
if not wfRequest:
if debug:
2021-03-18 10:01:01 +00:00
print('DEBUG: like webfinger failed for ' + handle)
2019-07-17 18:33:41 +00:00
return 1
2020-06-23 10:41:12 +00:00
if not isinstance(wfRequest, dict):
2021-03-18 10:01:01 +00:00
print('WARN: like webfinger for ' + handle +
' did not return a dict. ' + str(wfRequest))
2020-06-23 10:41:12 +00:00
return 1
2019-07-17 18:33:41 +00:00
2020-04-01 10:44:33 +00:00
postToBox = 'outbox'
2019-07-17 18:33:41 +00:00
# get the actor inbox for the To handle
2021-09-15 14:05:08 +00:00
originDomain = fromDomain
(inboxUrl, pubKeyId, pubKey, fromPersonId, sharedInbox, avatarUrl,
2021-12-29 21:55:09 +00:00
displayName, _) = get_person_box(signing_priv_key_pem,
originDomain,
base_dir, session, wfRequest,
person_cache,
project_version, http_prefix,
fromNickname, fromDomain,
postToBox, 72873)
2020-03-22 21:16:02 +00:00
2019-07-17 18:33:41 +00:00
if not inboxUrl:
if debug:
2021-03-18 10:01:01 +00:00
print('DEBUG: like no ' + postToBox + ' was found for ' + handle)
2019-07-17 18:33:41 +00:00
return 3
if not fromPersonId:
if debug:
2021-03-18 10:01:01 +00:00
print('DEBUG: like no actor was found for ' + handle)
2019-07-17 18:33:41 +00:00
return 4
2020-03-22 21:16:02 +00:00
2021-12-28 21:36:27 +00:00
authHeader = create_basic_auth_header(fromNickname, password)
2020-03-22 21:16:02 +00:00
2020-04-01 10:44:33 +00:00
headers = {
'host': fromDomain,
'Content-type': 'application/json',
2020-03-22 20:36:19 +00:00
'Authorization': authHeader
}
2021-12-29 21:55:09 +00:00
postResult = post_json(http_prefix, fromDomainFull,
session, newLikeJson, [], inboxUrl,
headers, 3, True)
2020-04-01 10:44:33 +00:00
if not postResult:
2021-03-11 11:40:20 +00:00
if debug:
2021-03-18 10:01:01 +00:00
print('WARN: POST like failed for c2s to ' + inboxUrl)
2020-04-01 10:44:33 +00:00
return 5
2019-07-17 18:33:41 +00:00
if debug:
print('DEBUG: c2s POST like success')
return newLikeJson
2019-07-17 19:04:00 +00:00
2020-04-01 10:44:33 +00:00
2021-12-29 21:55:09 +00:00
def send_undo_like_via_server(base_dir: str, session,
fromNickname: str, password: str,
fromDomain: str, fromPort: int,
http_prefix: str, likeUrl: str,
cached_webfingers: {}, person_cache: {},
debug: bool, project_version: str,
signing_priv_key_pem: str) -> {}:
2019-07-17 19:04:00 +00:00
"""Undo a like via c2s
"""
if not session:
2021-12-29 21:55:09 +00:00
print('WARN: No session for send_undo_like_via_server')
2019-07-17 19:04:00 +00:00
return 6
2021-12-26 12:45:03 +00:00
fromDomainFull = get_full_domain(fromDomain, fromPort)
2020-04-03 16:36:21 +00:00
2021-12-26 10:19:59 +00:00
actor = local_actor_url(http_prefix, fromNickname, fromDomainFull)
2019-07-17 19:04:00 +00:00
2020-04-01 10:44:33 +00:00
newUndoLikeJson = {
2019-08-18 11:07:06 +00:00
"@context": "https://www.w3.org/ns/activitystreams",
2019-07-17 19:04:00 +00:00
'type': 'Undo',
2020-04-03 16:36:21 +00:00
'actor': actor,
2019-07-17 19:04:00 +00:00
'object': {
'type': 'Like',
2020-04-03 16:36:21 +00:00
'actor': actor,
2019-08-18 16:58:50 +00:00
'object': likeUrl
2019-07-17 19:04:00 +00:00
}
}
2021-12-25 17:09:22 +00:00
handle = http_prefix + '://' + fromDomainFull + '/@' + fromNickname
2019-07-17 19:04:00 +00:00
# lookup the inbox for the To handle
2021-12-29 21:55:09 +00:00
wfRequest = webfinger_handle(session, handle, http_prefix,
cached_webfingers,
fromDomain, project_version, debug, False,
signing_priv_key_pem)
2019-07-17 19:04:00 +00:00
if not wfRequest:
if debug:
2021-03-18 10:01:01 +00:00
print('DEBUG: unlike webfinger failed for ' + handle)
2019-07-17 19:04:00 +00:00
return 1
2020-06-23 10:41:12 +00:00
if not isinstance(wfRequest, dict):
2021-03-11 11:41:14 +00:00
if debug:
2021-03-18 10:01:01 +00:00
print('WARN: unlike webfinger for ' + handle +
2021-03-11 11:41:14 +00:00
' did not return a dict. ' + str(wfRequest))
2020-06-23 10:41:12 +00:00
return 1
2019-07-17 19:04:00 +00:00
2020-04-01 10:44:33 +00:00
postToBox = 'outbox'
2019-07-17 19:04:00 +00:00
# get the actor inbox for the To handle
2021-09-15 14:05:08 +00:00
originDomain = fromDomain
(inboxUrl, pubKeyId, pubKey, fromPersonId, sharedInbox, avatarUrl,
2021-12-29 21:55:09 +00:00
displayName, _) = get_person_box(signing_priv_key_pem,
originDomain,
base_dir, session, wfRequest,
person_cache, project_version,
http_prefix, fromNickname,
fromDomain, postToBox,
72625)
2020-03-22 21:16:02 +00:00
2019-07-17 19:04:00 +00:00
if not inboxUrl:
if debug:
2021-03-18 10:01:01 +00:00
print('DEBUG: unlike no ' + postToBox + ' was found for ' + handle)
2019-07-17 19:04:00 +00:00
return 3
if not fromPersonId:
if debug:
2021-03-18 10:01:01 +00:00
print('DEBUG: unlike no actor was found for ' + handle)
2019-07-17 19:04:00 +00:00
return 4
2020-03-22 21:16:02 +00:00
2021-12-28 21:36:27 +00:00
authHeader = create_basic_auth_header(fromNickname, password)
2020-03-22 21:16:02 +00:00
2020-04-01 10:44:33 +00:00
headers = {
'host': fromDomain,
'Content-type': 'application/json',
2020-03-22 20:36:19 +00:00
'Authorization': authHeader
}
2021-12-29 21:55:09 +00:00
postResult = post_json(http_prefix, fromDomainFull,
session, newUndoLikeJson, [], inboxUrl,
headers, 3, True)
2020-04-01 10:44:33 +00:00
if not postResult:
2021-03-11 11:41:14 +00:00
if debug:
2021-03-18 10:01:01 +00:00
print('WARN: POST unlike failed for c2s to ' + inboxUrl)
2020-04-01 10:44:33 +00:00
return 5
2019-07-17 19:04:00 +00:00
if debug:
2021-03-18 10:01:01 +00:00
print('DEBUG: c2s POST unlike success')
2019-07-17 19:04:00 +00:00
return newUndoLikeJson
2019-07-17 19:31:52 +00:00
2020-04-01 10:44:33 +00:00
2021-12-29 21:55:09 +00:00
def outbox_like(recent_posts_cache: {},
base_dir: str, http_prefix: str,
nickname: str, domain: str, port: int,
message_json: {}, debug: bool) -> None:
2019-07-17 19:31:52 +00:00
""" When a like request is received by the outbox from c2s
"""
2021-12-25 23:51:19 +00:00
if not message_json.get('type'):
2019-07-17 19:31:52 +00:00
if debug:
print('DEBUG: like - no type')
return
2021-12-25 23:51:19 +00:00
if not message_json['type'] == 'Like':
2019-07-17 19:31:52 +00:00
if debug:
print('DEBUG: not a like')
return
2021-12-26 17:12:07 +00:00
if not has_object_string(message_json, debug):
2019-07-17 19:31:52 +00:00
return
if debug:
print('DEBUG: c2s like request arrived in outbox')
2021-12-27 11:20:57 +00:00
messageId = remove_id_ending(message_json['object'])
2021-12-26 18:17:37 +00:00
domain = remove_domain_port(domain)
2021-12-26 23:41:34 +00:00
post_filename = locate_post(base_dir, nickname, domain, messageId)
if not post_filename:
2019-07-17 19:31:52 +00:00
if debug:
print('DEBUG: c2s like post not found in inbox or outbox')
print(messageId)
return True
2021-12-29 21:55:09 +00:00
update_likes_collection(recent_posts_cache,
base_dir, post_filename, messageId,
message_json['actor'],
nickname, domain, debug, None)
2019-07-17 19:31:52 +00:00
if debug:
2021-12-26 23:41:34 +00:00
print('DEBUG: post liked via c2s - ' + post_filename)
2019-07-17 19:55:24 +00:00
2020-04-01 10:44:33 +00:00
2021-12-29 21:55:09 +00:00
def outbox_undo_like(recent_posts_cache: {},
base_dir: str, http_prefix: str,
nickname: str, domain: str, port: int,
message_json: {}, debug: bool) -> None:
2019-07-17 19:55:24 +00:00
""" When an undo like request is received by the outbox from c2s
"""
2021-12-25 23:51:19 +00:00
if not message_json.get('type'):
2019-07-17 19:55:24 +00:00
return
2021-12-25 23:51:19 +00:00
if not message_json['type'] == 'Undo':
2019-07-17 19:55:24 +00:00
return
2021-12-26 17:12:07 +00:00
if not has_object_stringType(message_json, debug):
2019-07-17 19:55:24 +00:00
return
2021-12-25 23:51:19 +00:00
if not message_json['object']['type'] == 'Like':
2019-07-17 19:55:24 +00:00
if debug:
print('DEBUG: not a undo like')
return
2021-12-26 15:54:46 +00:00
if not has_object_string_object(message_json, debug):
2019-07-17 19:55:24 +00:00
return
if debug:
print('DEBUG: c2s undo like request arrived in outbox')
2021-12-27 11:20:57 +00:00
messageId = remove_id_ending(message_json['object']['object'])
2021-12-26 18:17:37 +00:00
domain = remove_domain_port(domain)
2021-12-26 23:41:34 +00:00
post_filename = locate_post(base_dir, nickname, domain, messageId)
if not post_filename:
2019-07-17 19:55:24 +00:00
if debug:
print('DEBUG: c2s undo like post not found in inbox or outbox')
print(messageId)
return True
2021-12-27 23:23:07 +00:00
undo_likes_collection_entry(recent_posts_cache, base_dir, post_filename,
messageId, message_json['actor'],
domain, debug, None)
2019-07-17 19:55:24 +00:00
if debug:
2021-12-26 23:41:34 +00:00
print('DEBUG: post undo liked via c2s - ' + post_filename)
2021-09-03 12:00:23 +00:00
2021-12-29 21:55:09 +00:00
def update_likes_collection(recent_posts_cache: {},
base_dir: str, post_filename: str,
objectUrl: str, actor: str,
nickname: str, domain: str, debug: bool,
post_json_object: {}) -> None:
2021-09-03 12:00:23 +00:00
"""Updates the likes collection within a post
"""
2021-12-25 22:09:19 +00:00
if not post_json_object:
2021-12-26 23:41:34 +00:00
post_json_object = load_json(post_filename)
2021-12-25 22:09:19 +00:00
if not post_json_object:
2021-09-03 12:00:23 +00:00
return
2021-09-03 12:00:23 +00:00
# remove any cached version of this post so that the
# like icon is changed
2021-12-27 11:05:24 +00:00
remove_post_from_cache(post_json_object, recent_posts_cache)
2021-12-26 23:41:34 +00:00
cachedPostFilename = \
get_cached_post_filename(base_dir, nickname,
domain, post_json_object)
2021-09-03 12:00:23 +00:00
if cachedPostFilename:
if os.path.isfile(cachedPostFilename):
try:
os.remove(cachedPostFilename)
2021-11-25 18:42:38 +00:00
except OSError:
2021-12-29 21:55:09 +00:00
print('EX: update_likes_collection unable to delete ' +
2021-10-29 18:48:15 +00:00
cachedPostFilename)
2021-09-03 12:00:23 +00:00
2021-12-25 22:09:19 +00:00
obj = post_json_object
2021-12-26 10:57:03 +00:00
if has_object_dict(post_json_object):
2021-12-25 22:09:19 +00:00
obj = post_json_object['object']
2021-10-15 09:13:04 +00:00
2021-09-03 12:00:23 +00:00
if not objectUrl.endswith('/likes'):
objectUrl = objectUrl + '/likes'
2021-10-14 22:43:42 +00:00
if not obj.get('likes'):
2021-09-03 12:00:23 +00:00
if debug:
print('DEBUG: Adding initial like to ' + objectUrl)
likesJson = {
"@context": "https://www.w3.org/ns/activitystreams",
'id': objectUrl,
'type': 'Collection',
"totalItems": 1,
'items': [{
'type': 'Like',
'actor': actor
}]
}
2021-10-14 22:43:42 +00:00
obj['likes'] = likesJson
2021-09-03 12:00:23 +00:00
else:
2021-10-14 22:43:42 +00:00
if not obj['likes'].get('items'):
obj['likes']['items'] = []
for likeItem in obj['likes']['items']:
2021-09-03 12:00:23 +00:00
if likeItem.get('actor'):
if likeItem['actor'] == actor:
# already liked
return
newLike = {
'type': 'Like',
'actor': actor
}
2021-10-14 22:43:42 +00:00
obj['likes']['items'].append(newLike)
itlen = len(obj['likes']['items'])
obj['likes']['totalItems'] = itlen
2021-09-03 12:00:23 +00:00
if debug:
print('DEBUG: saving post with likes added')
2021-12-25 22:09:19 +00:00
pprint(post_json_object)
2021-12-26 23:41:34 +00:00
save_json(post_json_object, post_filename)