Add make_unannounce_data helper function
authorFrancis Dinh <normandy@firemail.cc>
Tue, 17 Apr 2018 08:13:08 +0000 (04:13 -0400)
committerFrancis Dinh <normandy@firemail.cc>
Tue, 17 Apr 2018 08:13:08 +0000 (04:13 -0400)
lib/pleroma/web/activity_pub/utils.ex

index 6a36a6c10673a938bb7fa44ad0e07e975a6a29fd..a124bb8b6a07edc811ea389c45e9ad92c28e0b20 100644 (file)
@@ -237,7 +237,7 @@ defmodule Pleroma.Web.ActivityPub.Utils do
   #### Announce-related helpers
 
   @doc """
-  Retruns an existing announce activity if the notice has already been announced 
+  Retruns an existing announce activity if the notice has already been announced
   """
   def get_existing_announce(actor, %{data: %{"id" => id}}) do
     query =
@@ -278,6 +278,23 @@ defmodule Pleroma.Web.ActivityPub.Utils do
     if activity_id, do: Map.put(data, "id", activity_id), else: data
   end
 
+  @doc """
+  Make unannounce activity data for the given actor and object
+  """
+  def make_unannounce_data(
+        %User{ap_id: ap_id} = user,
+        %Object{data: %{"id" => id}} = object
+      ) do
+    %{
+      "type" => "Undo",
+      "actor" => ap_id,
+      "object" => id,
+      "to" => [user.follower_address, object.data["actor"]],
+      "cc" => ["https://www.w3.org/ns/activitystreams#Public"],
+      "context" => object.data["context"]
+    }
+  end
+
   def add_announce_to_object(%Activity{data: %{"actor" => actor}}, object) do
     with announcements <- [actor | object.data["announcements"] || []] |> Enum.uniq() do
       update_element_in_object("announcement", announcements, object)