1 defmodule Pleroma.Web.ActivityPub.SideEffects do
3 This module looks at an inserted object and executes the side effects that it
4 implies. For example, a `Like` activity will increase the like count on the
5 liked object, a `Follow` activity will add the user to the follower
9 alias Pleroma.Notification
12 alias Pleroma.Web.ActivityPub.Utils
14 def handle(object, meta \\ [])
17 # - Add like to object
18 # - Set up notification
19 def handle(%{data: %{"type" => "Like"}} = object, meta) do
21 Pleroma.Repo.transaction(fn ->
22 liked_object = Object.get_by_ap_id(object.data["object"])
23 Utils.add_like_to_object(object, liked_object)
25 Notification.create_notifications(object)
33 def handle(%{data: %{"type" => "Create", "object" => object_id}} = activity, meta) do
34 object = Object.get_by_ap_id(object_id)
36 {:ok, _object} = handle_object_creation(object)
38 Notification.create_notifications(activity)
44 def handle(object, meta) do
48 def handle_object_creation(%{data: %{"type" => "ChatMessage"}} = object) do
49 actor = User.get_cached_by_ap_id(object.data["actor"])
50 recipient = User.get_cached_by_ap_id(hd(object.data["to"]))
52 [[actor, recipient], [recipient, actor]]
53 |> Enum.each(fn [user, other_user] ->
55 Chat.bump_or_create(user.id, other_user.ap_id)
63 def handle_object_creation(object) do