Revert "Merge branch 'object-creation' into 'develop'"

This reverts merge request !802
This commit is contained in:
lambda 2019-02-11 08:07:39 +00:00
commit d53e36bf1e
4 changed files with 19 additions and 53 deletions

View file

@ -20,29 +20,9 @@ defmodule Pleroma.Object do
timestamps()
end
def insert_or_get(cng) do
{_, data} = fetch_field(cng, :data)
id = data["id"] || data[:id]
key = "object:#{id}"
fetcher = fn _ ->
with nil <- get_by_ap_id(id),
{:ok, object} <- Repo.insert(cng) do
{:commit, object}
else
%Object{} = object -> {:commit, object}
e -> {:ignore, e}
end
end
with {state, object} when state in [:commit, :ok] <- Cachex.fetch(:object_cache, key, fetcher) do
{:ok, object}
end
end
def create(data) do
Object.change(%Object{}, %{data: data})
|> insert_or_get()
|> Repo.insert()
end
def change(struct, params \\ %{}) do

View file

@ -142,8 +142,14 @@ defmodule Pleroma.Web.ActivityPub.Utils do
context = context || generate_id("contexts")
changeset = Object.context_mapping(context)
with {:ok, object} <- Object.insert_or_get(changeset) do
object
case Repo.insert(changeset) do
{:ok, object} ->
object
# This should be solved by an upsert, but it seems ecto
# has problems accessing the constraint inside the jsonb.
{:error, _} ->
Object.get_cached_by_ap_id(context)
end
end

View file

@ -310,8 +310,16 @@ defmodule Pleroma.Web.TwitterAPI.TwitterAPI do
else
_e ->
changeset = Object.context_mapping(context)
{:ok, object} = Object.insert_or_get(changeset)
object.id
case Repo.insert(changeset) do
{:ok, %{id: id}} ->
id
# This should be solved by an upsert, but it seems ecto
# has problems accessing the constraint inside the jsonb.
{:error, _} ->
Object.get_cached_by_ap_id(context).id
end
end
end