Conversations: Add mix task to 'import' old DMs.
[akkoma] / lib / pleroma / conversation.ex
index 6e26c5fd4b8bf3e5dda2d1b0918ef9087cf0da58..10c2403e8eef424eb77480084c8a0be052604a38 100644 (file)
@@ -72,4 +72,21 @@ defmodule Pleroma.Conversation do
       e -> {:error, e}
     end
   end
+
+  @doc """
+  This is only meant to be run by a mix task. It creates conversations/participations for all direct messages in the database.
+  """
+  def bump_for_all_activities() do
+    stream =
+      Pleroma.Web.ActivityPub.ActivityPub.fetch_direct_messages_query()
+      |> Repo.stream()
+
+    Repo.transaction(
+      fn ->
+        stream
+        |> Enum.each(&create_or_bump_for/1)
+      end,
+      timeout: :infinity
+    )
+  end
 end