apf part 18: Undo / Delete requests

This commit is contained in:
freamon 2024-11-23 01:29:04 +00:00
parent 7dd8717aa7
commit e533603f4d
2 changed files with 59 additions and 56 deletions

View file

@ -819,6 +819,28 @@ def process_inbox_request(request_json, store_ap_json):
log_incoming_ap(request_json['id'], APLOG_UNDO_FOLLOW, APLOG_FAILURE, request_json if store_ap_json else None, 'Unfound target')
return
if request_json['object']['type'] == 'Delete': # Restore something previously deleted
if isinstance(request_json['object']['object'], str):
ap_id = request_json['object']['object'] # lemmy
else:
ap_id = request_json['object']['object']['id'] # kbin
if user.ap_profile_id == ap_id.lower():
# a user is undoing a self-delete
# will never get here, because find_actor_or_create() in shared_inbox() will return None if user.deleted
return
restorer = user
to_restore = find_liked_object(ap_id) # a user or a mod/admin is undoing the delete of a post or reply
if to_restore:
if not to_restore.deleted:
log_incoming_ap(request_json['id'], APLOG_UNDO_DELETE, APLOG_IGNORED, request_json if store_ap_json else None, 'Activity about local content which is already restored')
else:
restore_post_or_comment(restorer, to_restore, store_ap_json, request_json)
announce_activity_to_followers(to_restore.community, user, request_json)
else:
log_incoming_ap(request_json['id'], APLOG_UNDO_DELETE, APLOG_FAILURE, request_json if store_ap_json else None, 'Undo delete: cannot find ' + ap_id)
return
# -- below this point is code that will be incrementally replaced to use log_incoming_ap() instead --

View file

@ -1369,20 +1369,9 @@ def delete_post_or_comment(deletor, to_delete, store_ap_json, request_json):
log_incoming_ap(request_json['id'], APLOG_DELETE, APLOG_FAILURE, request_json if store_ap_json else None, 'Deletor did not have permisson')
def restore_post_or_comment(object_json, aplog_id):
restorer = find_actor_or_create(object_json['actor']) if 'actor' in object_json else None
to_restore = find_liked_object(object_json['object']) if 'object' in object_json else None
aplog = ActivityPubLog.query.get(aplog_id)
if to_restore and not to_restore.deleted:
if aplog:
aplog.result = 'ignored'
aplog.exception_message = 'Activity about local content which is already restored'
return
if restorer and to_restore:
def restore_post_or_comment(restorer, to_restore, store_ap_json, request_json):
community = to_restore.community
if to_restore.author.id == restorer.id or restorer.is_admin() or community.is_moderator(restorer) or community.is_instance_admin(restorer):
if to_restore.user_id == restorer.id or restorer.is_admin() or community.is_moderator(restorer) or community.is_instance_admin(restorer):
if isinstance(to_restore, Post):
to_restore.deleted = False
to_restore.deleted_by = None
@ -1416,17 +1405,9 @@ def restore_post_or_comment(object_json, aplog_id):
add_to_modlog_activitypub('restore_post_reply', restorer, community_id=community.id,
link_text=f'comment on {shorten_string(to_restore.post.title)}',
link=f'post/{to_restore.post_id}#comment_{to_restore.id}')
if aplog:
aplog.result = 'success'
log_incoming_ap(request_json['id'], APLOG_UNDO_DELETE, APLOG_SUCCESS, request_json if store_ap_json else None)
else:
if aplog:
aplog.result = 'failure'
aplog.exception_message = 'Restorer did not have permission'
else:
if aplog:
aplog.result = 'failure'
aplog.exception_message = 'Unable to resolve restorer or target'
log_incoming_ap(request_json['id'], APLOG_UNDO_DELETE, APLOG_FAILURE, request_json if store_ap_json else None, 'Restorer did not have permisson')
def site_ban_remove_data(blocker_id, blocked):