Move stuff around.
[akkoma] / lib / pleroma / activity.ex
index d7e31b6b4cdfe92a42ff59abe1ee30bf7b77888d..a8154859a7f81429eac2b293c2a32cd44f8a34f9 100644 (file)
@@ -6,7 +6,9 @@ defmodule Pleroma.Activity do
   schema "activities" do
     field :data, :map
     field :local, :boolean, default: true
-    has_many :notifications, Notification
+    field :actor, :string
+    field :recipients, {:array, :string}
+    has_many :notifications, Notification, on_delete: :delete_all
 
     timestamps()
   end
@@ -38,7 +40,7 @@ defmodule Pleroma.Activity do
 
   def get_create_activity_by_object_ap_id(ap_id) do
     Repo.one(from activity in Activity,
-      where: fragment("(?)->'object'->>'id' = ?", activity.data, ^to_string(ap_id))
-             and fragment("(?)->>'type' = 'Create'", activity.data))
+      where: fragment("coalesce((?)->'object'->>'id', (?)->>'object') = ?", activity.data, activity.data, ^to_string(ap_id)),
+      where: fragment("(?)->>'type' = 'Create'", activity.data))
   end
 end