Handle undos of missing posts

This commit is contained in:
Andrew Godwin 2022-12-16 20:17:19 -07:00
parent f262f582cb
commit a7d389020a

View file

@ -271,7 +271,7 @@ class PostInteraction(StatorModel):
type=type, type=type,
) )
else: else:
raise KeyError(f"No post with ID {data['id']}", data) raise cls.DoesNotExist(f"No interaction with ID {data['id']}", data)
return boost return boost
@classmethod @classmethod
@ -301,7 +301,11 @@ class PostInteraction(StatorModel):
""" """
with transaction.atomic(): with transaction.atomic():
# Find it # Find it
try:
interaction = cls.by_ap(data["object"]) interaction = cls.by_ap(data["object"])
except cls.DoesNotExist:
# Well I guess we don't need to undo it do we
return
# Verify the actor matches # Verify the actor matches
if data["actor"] != interaction.identity.actor_uri: if data["actor"] != interaction.identity.actor_uri:
raise ValueError("Actor mismatch on interaction undo") raise ValueError("Actor mismatch on interaction undo")