2019-10-16 14:16:39 +00:00
|
|
|
defmodule Pleroma.Web.ActivityPub.SideEffects do
|
|
|
|
@moduledoc """
|
|
|
|
This module looks at an inserted object and executes the side effects that it
|
|
|
|
implies. For example, a `Like` activity will increase the like count on the
|
|
|
|
liked object, a `Follow` activity will add the user to the follower
|
|
|
|
collection, and so on.
|
|
|
|
"""
|
|
|
|
alias Pleroma.Notification
|
2019-10-23 10:18:05 +00:00
|
|
|
alias Pleroma.Object
|
2020-04-30 13:57:27 +00:00
|
|
|
alias Pleroma.User
|
2020-04-30 15:58:09 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.ActivityPub
|
2020-04-30 16:38:37 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.Utils
|
2019-10-16 14:16:39 +00:00
|
|
|
|
|
|
|
def handle(object, meta \\ [])
|
|
|
|
|
|
|
|
# Tasks this handles:
|
|
|
|
# - Add like to object
|
|
|
|
# - Set up notification
|
|
|
|
def handle(%{data: %{"type" => "Like"}} = object, meta) do
|
2020-04-22 19:21:21 +00:00
|
|
|
{:ok, result} =
|
|
|
|
Pleroma.Repo.transaction(fn ->
|
|
|
|
liked_object = Object.get_by_ap_id(object.data["object"])
|
|
|
|
Utils.add_like_to_object(object, liked_object)
|
2020-04-17 13:50:15 +00:00
|
|
|
|
2020-04-22 19:21:21 +00:00
|
|
|
Notification.create_notifications(object)
|
2020-04-17 13:50:15 +00:00
|
|
|
|
2020-04-22 19:21:21 +00:00
|
|
|
{:ok, object, meta}
|
|
|
|
end)
|
|
|
|
|
|
|
|
result
|
2019-10-16 14:16:39 +00:00
|
|
|
end
|
|
|
|
|
2020-04-30 13:26:23 +00:00
|
|
|
# Tasks this handles:
|
2020-04-30 14:15:38 +00:00
|
|
|
# - Delete and unpins the create activity
|
2020-04-30 13:26:23 +00:00
|
|
|
# - Replace object with Tombstone
|
|
|
|
# - Set up notification
|
2020-04-30 16:19:39 +00:00
|
|
|
# - Reduce the user note count
|
2020-04-30 17:53:30 +00:00
|
|
|
# - Reduce the reply count
|
2020-04-30 13:26:23 +00:00
|
|
|
def handle(%{data: %{"type" => "Delete", "object" => deleted_object}} = object, meta) do
|
2020-04-30 13:57:27 +00:00
|
|
|
deleted_object =
|
|
|
|
Object.normalize(deleted_object, false) || User.get_cached_by_ap_id(deleted_object)
|
|
|
|
|
|
|
|
result =
|
|
|
|
case deleted_object do
|
|
|
|
%Object{} ->
|
2020-04-30 15:58:09 +00:00
|
|
|
with {:ok, deleted_object, activity} <- Object.delete(deleted_object),
|
2020-04-30 14:15:38 +00:00
|
|
|
%User{} = user <- User.get_cached_by_ap_id(deleted_object.data["actor"]) do
|
|
|
|
User.remove_pinnned_activity(user, activity)
|
2020-04-30 15:58:09 +00:00
|
|
|
|
2020-04-30 16:19:39 +00:00
|
|
|
{:ok, user} = ActivityPub.decrease_note_count_if_public(user, deleted_object)
|
2020-04-30 17:47:13 +00:00
|
|
|
|
|
|
|
if in_reply_to = deleted_object.data["inReplyTo"] do
|
|
|
|
Object.decrease_replies_count(in_reply_to)
|
|
|
|
end
|
|
|
|
|
2020-04-30 15:58:09 +00:00
|
|
|
ActivityPub.stream_out(object)
|
|
|
|
ActivityPub.stream_out_participations(deleted_object, user)
|
2020-04-30 13:57:27 +00:00
|
|
|
:ok
|
|
|
|
end
|
|
|
|
|
|
|
|
%User{} ->
|
|
|
|
with {:ok, _} <- User.delete(deleted_object) do
|
|
|
|
:ok
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
if result == :ok do
|
2020-04-30 13:26:23 +00:00
|
|
|
Notification.create_notifications(object)
|
|
|
|
{:ok, object, meta}
|
2020-04-30 13:57:27 +00:00
|
|
|
else
|
|
|
|
{:error, result}
|
2020-04-30 13:26:23 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-10-16 14:16:39 +00:00
|
|
|
# Nothing to do
|
|
|
|
def handle(object, meta) do
|
|
|
|
{:ok, object, meta}
|
|
|
|
end
|
|
|
|
end
|