takahe/activities/models/fan_out.py

342 lines
13 KiB
Python
Raw Normal View History

2022-12-17 19:29:48 +00:00
import httpx
from asgiref.sync import async_to_sync
2022-11-12 06:04:43 +00:00
from django.db import models
from activities.models.timeline_event import TimelineEvent
from core.ld import canonicalise
from stator.models import State, StateField, StateGraph, StatorModel
2023-01-15 20:35:45 +00:00
from users.models import Block, FollowStates
2022-11-12 06:04:43 +00:00
class FanOutStates(StateGraph):
2022-12-20 06:23:50 +00:00
new = State(try_interval=600)
2023-01-08 20:51:30 +00:00
sent = State(delete_after=86400)
2023-01-15 20:35:45 +00:00
skipped = State(delete_after=86400)
failed = State(delete_after=86400)
2022-11-12 06:04:43 +00:00
new.transitions_to(sent)
2023-01-15 20:35:45 +00:00
new.transitions_to(skipped)
2022-12-20 06:23:50 +00:00
new.times_out_to(failed, seconds=86400 * 3)
2022-11-12 06:04:43 +00:00
@classmethod
def handle_new(cls, instance: "FanOut"):
2022-11-12 06:04:43 +00:00
"""
Sends the fan-out to the right inbox.
"""
2022-11-27 18:09:46 +00:00
2022-12-20 07:01:30 +00:00
# Don't try to fan out to identities that are not fetched yet
if not (instance.identity.local or instance.identity.inbox_uri):
2022-12-20 07:01:30 +00:00
return
match (instance.type, instance.identity.local):
2022-11-27 18:09:46 +00:00
# Handle creating/updating local posts
2022-11-27 19:09:08 +00:00
case ((FanOut.Types.post | FanOut.Types.post_edited), True):
post = instance.subject_post
2023-01-15 20:35:45 +00:00
# If the author of the post is blocked or muted, skip out
if (
Block.objects.active()
.filter(source=instance.identity, target=post.author)
.exists()
2023-01-15 20:35:45 +00:00
):
return cls.skipped
2022-11-14 01:42:47 +00:00
# Make a timeline event directly
# If it's a reply, we only add it if we follow at least one
2022-12-20 14:20:11 +00:00
# of the people mentioned AND the author, or we're mentioned,
# or it's a reply to us or the author
add = True
mentioned = {identity.id for identity in post.mentions.all()}
if post.in_reply_to:
followed = set(
instance.identity.outbound_follows.filter(
2023-01-08 21:24:27 +00:00
state__in=FollowStates.group_active()
).values_list("target_id", flat=True)
)
2022-12-20 14:20:11 +00:00
interested_in = followed.union(
{post.author_id, instance.identity_id}
2022-12-20 14:20:11 +00:00
)
add = (post.author_id in followed) and (
bool(mentioned.intersection(interested_in))
2022-11-27 19:20:58 +00:00
)
if add:
TimelineEvent.add_post(
identity=instance.identity,
post=post,
)
# We might have been mentioned
if (
instance.identity.id in mentioned
and instance.identity_id != post.author_id
):
TimelineEvent.add_mentioned(
identity=instance.identity,
post=post,
)
2022-11-27 18:09:46 +00:00
# Handle sending remote posts create
2022-11-27 19:09:08 +00:00
case (FanOut.Types.post, False):
post = instance.subject_post
2022-11-14 01:42:47 +00:00
# Sign it and send it
2022-12-17 19:29:48 +00:00
try:
async_to_sync(post.author.signed_request)(
2022-12-17 19:29:48 +00:00
method="post",
2023-01-08 20:46:40 +00:00
uri=(
instance.identity.shared_inbox_uri
or instance.identity.inbox_uri
2023-01-08 20:46:40 +00:00
),
2022-12-17 19:29:48 +00:00
body=canonicalise(post.to_create_ap()),
)
except httpx.RequestError:
return
2022-11-27 18:09:46 +00:00
# Handle sending remote posts update
2022-11-27 19:09:08 +00:00
case (FanOut.Types.post_edited, False):
post = instance.subject_post
2022-11-27 18:09:46 +00:00
# Sign it and send it
2022-12-17 19:29:48 +00:00
try:
async_to_sync(post.author.signed_request)(
2022-12-17 19:29:48 +00:00
method="post",
2023-01-08 20:46:40 +00:00
uri=(
instance.identity.shared_inbox_uri
or instance.identity.inbox_uri
2023-01-08 20:46:40 +00:00
),
2022-12-17 19:29:48 +00:00
body=canonicalise(post.to_update_ap()),
)
except httpx.RequestError:
return
2022-11-27 18:09:46 +00:00
# Handle deleting local posts
2022-11-27 19:09:08 +00:00
case (FanOut.Types.post_deleted, True):
post = instance.subject_post
if instance.identity.local:
2022-11-27 18:09:46 +00:00
# Remove all timeline events mentioning it
TimelineEvent.objects.filter(
identity=instance.identity,
2022-11-27 18:09:46 +00:00
subject_post=post,
).delete()
2022-11-27 18:09:46 +00:00
# Handle sending remote post deletes
2022-11-27 19:09:08 +00:00
case (FanOut.Types.post_deleted, False):
post = instance.subject_post
# Send it to the remote inbox
2022-12-17 19:29:48 +00:00
try:
async_to_sync(post.author.signed_request)(
2022-12-17 19:29:48 +00:00
method="post",
2023-01-08 20:46:40 +00:00
uri=(
instance.identity.shared_inbox_uri
or instance.identity.inbox_uri
2023-01-08 20:46:40 +00:00
),
2022-12-17 19:29:48 +00:00
body=canonicalise(post.to_delete_ap()),
)
except httpx.RequestError:
return
2022-11-27 18:09:46 +00:00
# Handle local boosts/likes
2022-11-27 19:09:08 +00:00
case (FanOut.Types.interaction, True):
interaction = instance.subject_post_interaction
2023-01-15 20:35:45 +00:00
# If the author of the interaction is blocked or their notifications
# are muted, skip out
if (
Block.objects.active()
2023-01-15 20:35:45 +00:00
.filter(
models.Q(mute=False) | models.Q(include_notifications=True),
source=instance.identity,
2023-01-15 20:35:45 +00:00
target=interaction.identity,
)
.exists()
2023-01-15 20:35:45 +00:00
):
return cls.skipped
# If blocked/muted the underlying post author, skip out
if (
Block.objects.active()
2023-01-15 20:35:45 +00:00
.filter(
source=instance.identity,
2023-01-15 20:35:45 +00:00
target_id=interaction.post.author_id,
)
.exists()
2023-01-15 20:35:45 +00:00
):
return cls.skipped
# Make a timeline event directly
TimelineEvent.add_post_interaction(
identity=instance.identity,
interaction=interaction,
)
2022-11-27 18:09:46 +00:00
2023-05-13 16:01:27 +00:00
# Handle sending remote boosts/likes/votes/pins
2022-11-27 19:09:08 +00:00
case (FanOut.Types.interaction, False):
interaction = instance.subject_post_interaction
# Send it to the remote inbox
2022-12-17 19:29:48 +00:00
try:
2023-05-13 16:01:27 +00:00
if interaction.type == interaction.Types.vote:
body = interaction.to_ap()
elif interaction.type == interaction.Types.pin:
body = interaction.to_add_ap()
else:
body = interaction.to_create_ap()
async_to_sync(interaction.identity.signed_request)(
2022-12-17 19:29:48 +00:00
method="post",
2023-01-08 20:46:40 +00:00
uri=(
instance.identity.shared_inbox_uri
or instance.identity.inbox_uri
2023-01-08 20:46:40 +00:00
),
2023-05-13 16:01:27 +00:00
body=canonicalise(body),
2022-12-17 19:29:48 +00:00
)
except httpx.RequestError:
return
2022-11-27 18:09:46 +00:00
# Handle undoing local boosts/likes
2022-11-27 19:09:08 +00:00
case (FanOut.Types.undo_interaction, True): # noqa:F841
interaction = instance.subject_post_interaction
2022-11-27 18:09:46 +00:00
# Delete any local timeline events
TimelineEvent.delete_post_interaction(
identity=instance.identity,
interaction=interaction,
)
2022-11-27 18:09:46 +00:00
2023-05-13 16:01:27 +00:00
# Handle sending remote undoing boosts/likes/pins
2022-11-27 19:09:08 +00:00
case (FanOut.Types.undo_interaction, False): # noqa:F841
interaction = instance.subject_post_interaction
# Send an undo to the remote inbox
2022-12-17 19:29:48 +00:00
try:
2023-05-13 16:01:27 +00:00
if interaction.type == interaction.Types.pin:
body = interaction.to_remove_ap()
else:
body = interaction.to_undo_ap()
async_to_sync(interaction.identity.signed_request)(
2022-12-17 19:29:48 +00:00
method="post",
2023-01-08 20:46:40 +00:00
uri=(
instance.identity.shared_inbox_uri
or instance.identity.inbox_uri
2023-01-08 20:46:40 +00:00
),
2023-05-13 16:01:27 +00:00
body=canonicalise(body),
2022-12-17 19:29:48 +00:00
)
except httpx.RequestError:
return
2022-11-27 18:09:46 +00:00
2022-12-21 17:13:39 +00:00
# Handle sending identity edited to remote
case (FanOut.Types.identity_edited, False):
identity = instance.subject_identity
2022-12-21 17:13:39 +00:00
try:
async_to_sync(identity.signed_request)(
2022-12-21 17:13:39 +00:00
method="post",
2023-01-08 20:46:40 +00:00
uri=(
instance.identity.shared_inbox_uri
or instance.identity.inbox_uri
2023-01-28 18:13:06 +00:00
),
body=canonicalise(instance.subject_identity.to_update_ap()),
2022-12-21 17:13:39 +00:00
)
except httpx.RequestError:
return
# Handle sending identity deleted to remote
case (FanOut.Types.identity_deleted, False):
identity = instance.subject_identity
2022-12-21 17:13:39 +00:00
try:
async_to_sync(identity.signed_request)(
2022-12-21 17:13:39 +00:00
method="post",
2023-01-08 20:46:40 +00:00
uri=(
instance.identity.shared_inbox_uri
or instance.identity.inbox_uri
2023-01-08 20:46:40 +00:00
),
body=canonicalise(instance.subject_identity.to_delete_ap()),
2022-12-21 17:13:39 +00:00
)
except httpx.RequestError:
return
# Sending identity edited/deleted to local is a no-op
case (FanOut.Types.identity_edited, True):
pass
case (FanOut.Types.identity_deleted, True):
pass
# Created identities make a timeline event
case (FanOut.Types.identity_created, True):
TimelineEvent.add_identity_created(
identity=instance.identity,
new_identity=instance.subject_identity,
)
2022-11-27 18:09:46 +00:00
case _:
raise ValueError(
f"Cannot fan out with type {instance.type} local={instance.identity.local}"
2022-11-27 18:09:46 +00:00
)
2022-11-18 01:52:00 +00:00
return cls.sent
2022-11-12 06:04:43 +00:00
class FanOut(StatorModel):
"""
An activity that needs to get to an inbox somewhere.
"""
class Types(models.TextChoices):
post = "post"
post_edited = "post_edited"
post_deleted = "post_deleted"
2022-11-14 01:42:47 +00:00
interaction = "interaction"
undo_interaction = "undo_interaction"
2022-12-21 17:13:39 +00:00
identity_edited = "identity_edited"
identity_deleted = "identity_deleted"
identity_created = "identity_created"
2022-11-12 06:04:43 +00:00
state = StateField(FanOutStates)
# The user this event is targeted at
2023-01-08 20:46:40 +00:00
# We always need this, but if there is a shared inbox URL on the user
# we'll deliver to that and won't have fanouts for anyone else with the
# same one.
2022-11-12 06:04:43 +00:00
identity = models.ForeignKey(
"users.Identity",
on_delete=models.CASCADE,
related_name="fan_outs",
)
# What type of activity it is
type = models.CharField(max_length=100, choices=Types.choices)
# Links to the appropriate objects
subject_post = models.ForeignKey(
"activities.Post",
on_delete=models.CASCADE,
blank=True,
null=True,
related_name="fan_outs",
)
2022-11-14 01:42:47 +00:00
subject_post_interaction = models.ForeignKey(
"activities.PostInteraction",
on_delete=models.CASCADE,
blank=True,
null=True,
related_name="fan_outs",
)
2022-12-21 17:13:39 +00:00
subject_identity = models.ForeignKey(
"users.Identity",
on_delete=models.CASCADE,
blank=True,
null=True,
related_name="subject_fan_outs",
)
2022-11-12 06:04:43 +00:00
created = models.DateTimeField(auto_now_add=True)
updated = models.DateTimeField(auto_now=True)
### Async helpers ###
async def afetch_full(self):
"""
Returns a version of the object with all relations pre-loaded
"""
2022-12-15 07:50:54 +00:00
return (
await FanOut.objects.select_related(
"identity",
"subject_post",
"subject_post_interaction",
2022-12-21 17:13:39 +00:00
"subject_identity",
"subject_identity__domain",
2022-12-15 07:50:54 +00:00
)
.prefetch_related(
"subject_post__emojis",
)
.aget(pk=self.pk)
)