Work around upserting problems in context mapping.
authorRoger Braun <roger@rogerbraun.net>
Tue, 20 Jun 2017 07:50:22 +0000 (09:50 +0200)
committerRoger Braun <roger@rogerbraun.net>
Tue, 20 Jun 2017 07:50:22 +0000 (09:50 +0200)
lib/pleroma/object.ex
lib/pleroma/web/twitter_api/twitter_api.ex

index 72991fa1f028a3610867edc5cd5f8eec6d79c54d..5b51d6be340170e649c55b7e8c8d06083c9464a2 100644 (file)
@@ -43,6 +43,6 @@ defmodule Pleroma.Object do
   end
 
   def context_mapping(context) do
-    %Object{data: %{"id" => context}}
+    Object.change(%Object{}, %{data: %{"id" => context}})
   end
 end
index 8e36ba3f424e6b2b7491b2e6447ba5436f712c68..5881af95e61782c6eb78c0bfe8106b84eff9f293 100644 (file)
@@ -283,10 +283,14 @@ defmodule Pleroma.Web.TwitterAPI.TwitterAPI do
   def context_to_conversation_id(context) do
     with %Object{id: id} <- Object.get_cached_by_ap_id(context) do
       id
-    else _e ->
-      changeset = Object.context_mapping(context)
-      {:ok, %{id: id}} = Repo.insert(changeset)
-      id
+      else _e ->
+        changeset = Object.context_mapping(context)
+        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