forked from AkkomaGang/akkoma
Revert Activity tombstones, add ObjectTombstone struct
This commit is contained in:
parent
2bbec33c71
commit
f75f707f6c
9 changed files with 43 additions and 62 deletions
|
@ -1,7 +1,7 @@
|
|||
defmodule Pleroma.Activity do
|
||||
use Ecto.Schema
|
||||
alias Pleroma.{Repo, Activity, Notification}
|
||||
import Ecto.{Query, Changeset}
|
||||
import Ecto.Query
|
||||
|
||||
# https://github.com/tootsuite/mastodon/blob/master/app/models/notification.rb#L19
|
||||
@mastodon_notification_types %{
|
||||
|
@ -103,25 +103,4 @@ def mastodon_notification_type(%Activity{data: %{"type" => unquote(ap_type)}}),
|
|||
end
|
||||
|
||||
def mastodon_notification_type(%Activity{}), do: nil
|
||||
|
||||
def get_tombstone(%Activity{data: data}, deleted \\ DateTime.utc_now()) do
|
||||
%{
|
||||
id: data["id"],
|
||||
context: data["context"],
|
||||
type: "Tombstone",
|
||||
published: data["published"],
|
||||
deleted: deleted
|
||||
}
|
||||
end
|
||||
|
||||
def swap_data_with_tombstone(activity) do
|
||||
with tombstone = get_tombstone(activity),
|
||||
Notification.clear(activity),
|
||||
{:ok, changed_activity} =
|
||||
activity
|
||||
|> change(%{data: tombstone})
|
||||
|> Repo.update() do
|
||||
{:ok, changed_activity}
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
defmodule Pleroma.Object do
|
||||
use Ecto.Schema
|
||||
alias Pleroma.{Repo, Object, User, Activity}
|
||||
alias Pleroma.{Repo, Object, User, Activity, ObjectTombstone}
|
||||
import Ecto.{Query, Changeset}
|
||||
|
||||
schema "objects" do
|
||||
|
@ -62,16 +62,17 @@ def context_mapping(context) do
|
|||
Object.change(%Object{}, %{data: %{"id" => context}})
|
||||
end
|
||||
|
||||
def get_tombstone(%Object{data: data}, deleted \\ DateTime.utc_now()) do
|
||||
%{
|
||||
id: data["id"],
|
||||
type: "Tombstone",
|
||||
def make_tombstone(%Object{data: %{"id" => id, "type" => type}}, deleted \\ DateTime.utc_now()) do
|
||||
%ObjectTombstone{
|
||||
id: id,
|
||||
formerType: type,
|
||||
deleted: deleted
|
||||
}
|
||||
|> Map.from_struct()
|
||||
end
|
||||
|
||||
def swap_data_with_tombstone(object) do
|
||||
tombstone = get_tombstone(object)
|
||||
def swap_object_with_tombstone(object) do
|
||||
tombstone = make_tombstone(object)
|
||||
|
||||
object
|
||||
|> Object.change(%{data: tombstone})
|
||||
|
@ -79,10 +80,8 @@ def swap_data_with_tombstone(object) do
|
|||
end
|
||||
|
||||
def delete(%Object{data: %{"id" => id}} = object) do
|
||||
with swap_data_with_tombstone(object),
|
||||
Activity.all_non_create_by_object_ap_id_q(id)
|
||||
|> Repo.all()
|
||||
|> Enum.each(&Activity.swap_data_with_tombstone/1),
|
||||
with {:ok, _obj} = swap_object_with_tombstone(object),
|
||||
Repo.delete_all(Activity.all_non_create_by_object_ap_id_q(id)),
|
||||
{:ok, true} <- Cachex.del(:object_cache, "object:#{id}") do
|
||||
{:ok, object}
|
||||
end
|
||||
|
|
4
lib/pleroma/object_tombstone.ex
Normal file
4
lib/pleroma/object_tombstone.ex
Normal file
|
@ -0,0 +1,4 @@
|
|||
defmodule Pleroma.ObjectTombstone do
|
||||
@enforce_keys [:id, :formerType, :deleted]
|
||||
defstruct [:id, :formerType, :deleted, type: "Tombstone"]
|
||||
end
|
|
@ -25,28 +25,4 @@ test "returns the activity that created an object" do
|
|||
|
||||
assert activity == found_activity
|
||||
end
|
||||
|
||||
test "returns tombstone" do
|
||||
activity = insert(:note_activity)
|
||||
deleted = DateTime.utc_now()
|
||||
|
||||
assert Pleroma.Activity.get_tombstone(activity, deleted) == %{
|
||||
id: activity.data["id"],
|
||||
context: activity.data["context"],
|
||||
type: "Tombstone",
|
||||
published: activity.data["published"],
|
||||
deleted: deleted
|
||||
}
|
||||
end
|
||||
|
||||
test "swaps data with tombstone" do
|
||||
activity = insert(:note_activity)
|
||||
|
||||
{:ok, deleted} = Pleroma.Activity.swap_data_with_tombstone(activity)
|
||||
assert deleted.data.type == "Tombstone"
|
||||
|
||||
found_activity = Repo.get(Activity, activity.id)
|
||||
|
||||
assert deleted.data.type == found_activity.data["type"]
|
||||
end
|
||||
end
|
||||
|
|
|
@ -32,6 +32,8 @@ test "deletes an object" do
|
|||
found_object = Object.get_by_ap_id(object.data["id"])
|
||||
|
||||
refute object == found_object
|
||||
|
||||
assert found_object.data["type"] == "Tombstone"
|
||||
end
|
||||
|
||||
test "ensures cache is cleared for the object" do
|
||||
|
@ -47,6 +49,8 @@ test "ensures cache is cleared for the object" do
|
|||
cached_object = Object.get_cached_by_ap_id(object.data["id"])
|
||||
|
||||
refute object == cached_object
|
||||
|
||||
assert cached_object.data["type"] == "Tombstone"
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -625,7 +625,7 @@ test ".delete deactivates a user, all follow relationships and all create activi
|
|||
|
||||
# TODO: Remove favorites, repeats, delete activities.
|
||||
|
||||
assert Repo.get(Activity, activity.id).data["type"] == "Tombstone"
|
||||
refute Repo.get(Activity, activity.id)
|
||||
end
|
||||
|
||||
test "get_public_key_for_ap_id fetches a user that's not in the db" do
|
||||
|
|
|
@ -363,7 +363,7 @@ test "it works for incoming deletes" do
|
|||
|
||||
{:ok, %Activity{local: false}} = Transmogrifier.handle_incoming(data)
|
||||
|
||||
assert Repo.get(Activity, activity.id).data["type"] == "Tombstone"
|
||||
refute Repo.get(Activity, activity.id)
|
||||
end
|
||||
|
||||
test "it fails for incoming deletes with spoofed origin" do
|
||||
|
|
|
@ -292,7 +292,7 @@ test "when you created it", %{conn: conn} do
|
|||
|
||||
assert %{} = json_response(conn, 200)
|
||||
|
||||
assert Repo.get(Activity, activity.id).data["type"] == "Tombstone"
|
||||
refute Repo.get(Activity, activity.id)
|
||||
end
|
||||
|
||||
test "when you didn't create it", %{conn: conn} do
|
||||
|
@ -308,6 +308,25 @@ test "when you didn't create it", %{conn: conn} do
|
|||
|
||||
assert Repo.get(Activity, activity.id) == activity
|
||||
end
|
||||
|
||||
# test "404 when making an attempt to get it" do
|
||||
# activity = insert(:note_activity)
|
||||
# author = User.get_by_ap_id(activity.data["actor"])
|
||||
|
||||
# conn =
|
||||
# conn
|
||||
# |> assign(:user, author)
|
||||
# |> delete("/api/v1/statuses/#{activity.id}")
|
||||
|
||||
# assert %{} = json_response(conn, 200)
|
||||
|
||||
# conn =
|
||||
# build_conn()
|
||||
# |> assign(:user, author)
|
||||
# |> get("/api/v1/statuses/#{activity.id}")
|
||||
|
||||
# assert %{} = json_response(conn, 200)
|
||||
# end
|
||||
end
|
||||
|
||||
describe "filters" do
|
||||
|
|
|
@ -23,8 +23,8 @@ test "it removes the mentioned activity" do
|
|||
|
||||
{:ok, [delete]} = OStatus.handle_incoming(incoming)
|
||||
|
||||
assert Repo.get(Activity, note.id).data["type"] == "Tombstone"
|
||||
assert Repo.get(Activity, like.id).data["type"] == "Tombstone"
|
||||
refute Repo.get(Activity, note.id)
|
||||
refute Repo.get(Activity, like.id)
|
||||
assert Object.get_by_ap_id(note.data["object"]["id"]).data["type"] == "Tombstone"
|
||||
assert Repo.get(Activity, second_note.id)
|
||||
assert Object.get_by_ap_id(second_note.data["object"]["id"])
|
||||
|
|
Loading…
Reference in a new issue